Skip to content

Commit

Permalink
v0.1.8, fix broken gemspec, closes #13
Browse files Browse the repository at this point in the history
  • Loading branch information
jenseng committed May 1, 2014
1 parent 9169983 commit 5d0f061
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## 0.1.7
## 0.1.8

* Fix gemspec issue (fixes #13)

## ~~0.1.7 broken~~

* Rails 4.1 HABTM fix (fixes #10)

Expand Down
4 changes: 2 additions & 2 deletions immigrant.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = 'immigrant'
s.version = '0.1.7'
s.version = '0.1.8'
s.summary = 'Migration generator for Foreigner'
s.description = 'Adds a generator for creating a foreign key migration based on your current model associations'

Expand All @@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.email = '[email protected]'
s.homepage = 'http://github.com/jenseng/immigrant'

s.files = %w(LICENSE.txt Rakefile README.md lib/generators/USAGE) + Dir['lib/**/*.rb'] + Dir['test/**/*.rb']
s.files = %w(LICENSE.txt Rakefile README.md lib/generators/USAGE) + Dir['lib/**/*rb'] + Dir['test/**/*.rb']
s.add_dependency('activerecord', '>= 3.0')
s.add_dependency('foreigner', '>= 1.2.1')
end

0 comments on commit 5d0f061

Please sign in to comment.