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 CHANGED
@@ -1 +1 @@
1
- 0.2.3
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, MIGRATIONS_DIR, version)
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.3"
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"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 3
9
- version: 0.2.3
8
+ - 4
9
+ version: 0.2.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Todd Huss