Skip to content

Commit

Permalink
Merge pull request #97 from deraru/specify-test-unit-gem-version
Browse files Browse the repository at this point in the history
Specify test-unit gem version
  • Loading branch information
maxlapshin committed May 22, 2017
2 parents 2ec92a2 + 08a0636 commit 7dd8975
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ platforms :mri do
gem 'pg', '~> 0.18'
end

gem 'test-unit'
gem 'test-unit', '~> 2.1'

group :test do
gem 'jeweler', '~> 2.0'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ git clone https://github.com/maxlapshin/mysql2postgres.git
cd mysql2postgres
bundle install
gem build mysqltopostgres.gemspec
sudo gem install mysqltopostgres-0.3.0.gem
sudo gem install mysqltopostgres-0.3.1.gem
```

## Sample Configuration
Expand Down
4 changes: 2 additions & 2 deletions lib/mysql2psql/version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Mysql2psql
module Version
MAJOR = 0
MINOR = 2
PATCH = 20
MINOR = 3
PATCH = 1

STRING = [MAJOR, MINOR, PATCH].compact.join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion mysqltopostgres.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Gem::Specification.new do |s|
s.name = 'mysqltopostgres'
s.version = '0.3.0'
s.version = '0.3.1'
s.licenses = ['MIT']

s.authors = [
Expand Down

0 comments on commit 7dd8975

Please sign in to comment.