File tree 4 files changed +15
-2
lines changed
4 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- adiwg-mdtranslator (2.20.0.pre.beta.10 )
4
+ adiwg-mdtranslator (2.21.0 )
5
5
adiwg-mdcodes (= 2.10.1 )
6
6
adiwg-mdjson_schemas (= 2.10.1 )
7
7
builder (~> 3.2 )
Original file line number Diff line number Diff line change 109
109
module ADIWG
110
110
module Mdtranslator
111
111
# current mdtranslator version
112
- VERSION = "2.21.0-beta.1 "
112
+ VERSION = "2.21.0"
113
113
end
114
114
end
115
115
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # This script builds the gem and runs tests.
4
+ bundle install && bundle exec rake test && gem build adiwg-mdtranslator.gemspec
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # Verify that the gemspec file is provided as an argument
4
+ if [ -z " $1 " ]; then
5
+ echo " Usage: $0 <gemspec-file>"
6
+ exit 1
7
+ fi
8
+
9
+ gem push " $1 "
You can’t perform that action at this time.
0 commit comments