standalone_migrations 4.0.4 → 4.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/standalone_migrations/configurator.rb +1 -1
- data/lib/standalone_migrations/tasks.rb +1 -1
- data/spec/standalone_migrations_spec.rb +21 -0
- data/standalone_migrations.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d3258d9b559502848532e889935b9718f7f1c5f
|
4
|
+
data.tar.gz: f266df133af123b561fdec6fda819d9ec75029ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2770df6a06b86997bb9ad3a540d769cdf33463ce59be857a20ea12163791452b64efca27185fb9adf1df7d33c1c3c042796f1f5a6a8701be24fef06bf44c35df
|
7
|
+
data.tar.gz: 139c1b29f128c627c54b2f82f1721bc3a8d1fd1c150f018951a433845362403021dc241fb47f5bb3ee3eec0c1b67cf4dc75ab3efef5f90f0854840e12e954ac2
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
4.0.
|
1
|
+
4.0.5
|
@@ -21,7 +21,7 @@ module StandaloneMigrations
|
|
21
21
|
|
22
22
|
class Configurator
|
23
23
|
def self.load_configurations
|
24
|
-
|
24
|
+
self.new
|
25
25
|
@env_config ||= Rails.application.config.database_configuration
|
26
26
|
ActiveRecord::Base.configurations = @env_config
|
27
27
|
@env_config
|
@@ -7,7 +7,7 @@ module StandaloneMigrations
|
|
7
7
|
paths = Rails.application.config.paths
|
8
8
|
paths.add "config/database", :with => configurator.config
|
9
9
|
paths.add "db/migrate", :with => configurator.migrate_dir
|
10
|
-
paths.add "db/seeds", :with => configurator.seeds
|
10
|
+
paths.add "db/seeds.rb", :with => configurator.seeds
|
11
11
|
end
|
12
12
|
|
13
13
|
def load_tasks
|
@@ -303,6 +303,27 @@ test:
|
|
303
303
|
run("rake db:seed").should =~ /LOADEDDD/
|
304
304
|
end
|
305
305
|
|
306
|
+
describe 'with non-default seed file' do
|
307
|
+
let(:yaml_hash) do
|
308
|
+
{
|
309
|
+
"db" => {
|
310
|
+
"seeds" => "db/seeds2.rb",
|
311
|
+
}
|
312
|
+
}
|
313
|
+
end
|
314
|
+
|
315
|
+
before do
|
316
|
+
write(".standalone_migrations", yaml_hash.to_yaml)
|
317
|
+
end
|
318
|
+
|
319
|
+
|
320
|
+
it "loads" do
|
321
|
+
write("db/seeds2.rb", "puts 'LOADEDDD'")
|
322
|
+
run("rake db:seed").should =~ /LOADEDDD/
|
323
|
+
end
|
324
|
+
end
|
325
|
+
|
326
|
+
|
306
327
|
it "does nothing without seeds" do
|
307
328
|
run("rake db:seed").length.should == 0
|
308
329
|
end
|
@@ -2,16 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: standalone_migrations 4.0.
|
5
|
+
# stub: standalone_migrations 4.0.5 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "standalone_migrations"
|
9
|
-
s.version = "4.0.
|
9
|
+
s.version = "4.0.5"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|
13
13
|
s.authors = ["Todd Huss", "Michael Grosser"]
|
14
|
-
s.date = "2016-
|
14
|
+
s.date = "2016-08-05"
|
15
15
|
s.email = "thuss@gabrito.com"
|
16
16
|
s.extra_rdoc_files = [
|
17
17
|
"LICENSE",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: standalone_migrations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Todd Huss
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-
|
12
|
+
date: 2016-08-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|