forked from ilyakatz/data-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add rails dependency to spec and read me; bump version to 1.0.0
- Loading branch information
Andrew J Vargo
committed
May 2, 2011
1 parent
d69777f
commit 1325264
Showing
4 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
grequire 'bundler' | ||
require 'bundler' | ||
Bundler::GemHelper.install_tasks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,14 @@ Gem::Specification.new do |s| | |
s.platform = Gem::Platform::RUBY | ||
s.authors = ["Andrew J Vargo"] | ||
s.email = ["[email protected]"] | ||
s.homepage = "" | ||
s.homepage = "http://ajvargo.com" | ||
s.summary = %q{Rake tasks to migrate data alongside schema changes.} | ||
s.description = %q{Rake tasks to migrate data alongside schema changes.} | ||
|
||
s.rubyforge_project = "data_migrate" | ||
|
||
s.add_dependency('rails', '>= 3.0.0', '<= 3.0.7') | ||
|
||
s.files = `git ls-files`.split("\n") | ||
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") | ||
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module DataMigrate | ||
VERSION = "0.0.1" | ||
VERSION = "1.0.0" | ||
end |