active_record_migrations 4.1.0.0.beta1 → 4.1.0.1.beta1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fa9ba8013d863ade9f6bc632e4b492892dfac96e
|
|
4
|
+
data.tar.gz: af5255a4658f0e0b5d35ef3ae1c0492ed59b967b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 40255bd218123095daf48c56dc7587259d271b9f1aa1dd4c148677ee1ff0f9212e1613537280f0573f5f41c2a7eb3590794031b900faf9e670202f00ef1a8bc7
|
|
7
|
+
data.tar.gz: 3fd7c691162afb566a356cc406c7ea317573f4f80a1c474b0ee1cec7e6af30437cf15b021be4c9624fc1c651eba90ab24e7fae58017d2f0d190ac712c341ff31
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
require 'singleton'
|
|
2
2
|
require 'yaml'
|
|
3
|
+
require 'erb'
|
|
3
4
|
|
|
4
5
|
module ActiveRecordMigrations
|
|
5
6
|
class Configurations
|
|
@@ -19,7 +20,7 @@ module ActiveRecordMigrations
|
|
|
19
20
|
alias configure instance_eval
|
|
20
21
|
|
|
21
22
|
def database_configuration
|
|
22
|
-
@database_configuration ||= YAML.load(File.read @yaml_config)
|
|
23
|
+
@database_configuration ||= YAML.load(ERB.new(File.read @yaml_config).result)
|
|
23
24
|
end
|
|
24
25
|
end
|
|
25
26
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_record_migrations
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.1.0.
|
|
4
|
+
version: 4.1.0.1.beta1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rodrigo Rosenfeld Rosas
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-01-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -104,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
104
104
|
version: 1.3.1
|
|
105
105
|
requirements: []
|
|
106
106
|
rubyforge_project:
|
|
107
|
-
rubygems_version: 2.
|
|
107
|
+
rubygems_version: 2.0.14
|
|
108
108
|
signing_key:
|
|
109
109
|
specification_version: 4
|
|
110
110
|
summary: Use AR migrations from outside of a Rails project
|