slodd 0.1.3 → 0.1.4
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/.rubocop.yml +3 -0
- data/.travis.yml +3 -1
- data/lib/slodd/config.rb +1 -1
- data/lib/slodd/version.rb +1 -1
- data/slodd.gemspec +1 -2
- data/spec/lib/config_spec.rb +0 -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: b09fc067ca2f8b6c6b0bc69b6f121adbe304d8d8
|
|
4
|
+
data.tar.gz: 6bbeb82d980eca14c7c3a46ce034cd072ee9f351
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd624e4a62fa8113e4d6fb98046a92c34ec1be2275f03c166f3218234462093d60dd0294b11d1313b11a664341346c99851694c64559485087b975e2cdf3fa3f
|
|
7
|
+
data.tar.gz: 365f745d39f29e41342bd175559d2a749b9c8da84386b14556c1187d183296b1cd99324d1ba3c2615d693b84a3a808720a97bc03fbf4183c1a344b511af63270
|
data/.rubocop.yml
CHANGED
data/.travis.yml
CHANGED
data/lib/slodd/config.rb
CHANGED
data/lib/slodd/version.rb
CHANGED
data/slodd.gemspec
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
lib = File.expand_path("../lib", __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
require "slodd/version"
|
|
5
|
-
require "english"
|
|
6
5
|
|
|
7
6
|
Gem::Specification.new do |gem|
|
|
8
7
|
gem.name = "slodd"
|
|
@@ -13,7 +12,7 @@ Gem::Specification.new do |gem|
|
|
|
13
12
|
gem.summary = "Schema Loading On Dependent Databases"
|
|
14
13
|
gem.homepage = "https://github.com/errm/slodd"
|
|
15
14
|
|
|
16
|
-
gem.files = `git ls-files`.split(
|
|
15
|
+
gem.files = `git ls-files`.split($/)
|
|
17
16
|
gem.executables = gem.files.grep(/^bin\//).map { |f| File.basename(f) }
|
|
18
17
|
gem.test_files = gem.files.grep(/^(test|spec|features)\//)
|
|
19
18
|
gem.require_paths = ["lib"]
|
data/spec/lib/config_spec.rb
CHANGED
|
@@ -131,7 +131,6 @@ describe Slodd::Config do
|
|
|
131
131
|
expect(subject.attributes).to eq attrs
|
|
132
132
|
end
|
|
133
133
|
end
|
|
134
|
-
|
|
135
134
|
end
|
|
136
135
|
|
|
137
136
|
describe ".databases" do
|
|
@@ -152,7 +151,6 @@ describe Slodd::Config do
|
|
|
152
151
|
|
|
153
152
|
describe ".database_settings" do
|
|
154
153
|
context "without a password" do
|
|
155
|
-
|
|
156
154
|
it "returns the settings" do
|
|
157
155
|
settings = {
|
|
158
156
|
adapter: "mysql2",
|
|
@@ -161,7 +159,6 @@ describe Slodd::Config do
|
|
|
161
159
|
}
|
|
162
160
|
expect(subject.database_settings).to eq settings
|
|
163
161
|
end
|
|
164
|
-
|
|
165
162
|
end
|
|
166
163
|
|
|
167
164
|
context "with a password" do
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: slodd
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ed Robinson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-01-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|