standalone_migrations 0.2.3 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/tasks/standalone_migrations.rb +1 -1
- data/standalone_migrations.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.4
|
@@ -41,7 +41,7 @@ namespace :db do
|
|
41
41
|
task direction => :ar_init do
|
42
42
|
version = (ENV["VERSION"] ? ENV["VERSION"].to_i : nil)
|
43
43
|
raise "VERSION is required" unless version
|
44
|
-
ActiveRecord::Migrator.run(direction,
|
44
|
+
ActiveRecord::Migrator.run(direction, options[:migrations], version)
|
45
45
|
Rake::Task["db:schema:dump"].execute
|
46
46
|
end
|
47
47
|
end
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{standalone_migrations}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.4"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Todd Huss", "Michael Grosser"]
|