slodd 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 972b123e01e797c443cffaff480a90f90415196c
4
- data.tar.gz: 64811c0dc9e88dbf2b82319916385268f9ed0517
3
+ metadata.gz: b09fc067ca2f8b6c6b0bc69b6f121adbe304d8d8
4
+ data.tar.gz: 6bbeb82d980eca14c7c3a46ce034cd072ee9f351
5
5
  SHA512:
6
- metadata.gz: 7e89ee99dd39964198122ae314181d768a6e296c9ac4f31cc1c2eebb98a02beba4acf25b4c52fbde81290d0923645734472747f0e846dd8e1f71dc3b2cdec14c
7
- data.tar.gz: 5031641b783134bdf492b205d6204cfbe22d8cb2864e70178fe62929865f16323287667ebc2b7cfe2a77ccbeb2a63a30484f1db2fb2f1839a9e5076bc4122bba
6
+ metadata.gz: cd624e4a62fa8113e4d6fb98046a92c34ec1be2275f03c166f3218234462093d60dd0294b11d1313b11a664341346c99851694c64559485087b975e2cdf3fa3f
7
+ data.tar.gz: 365f745d39f29e41342bd175559d2a749b9c8da84386b14556c1187d183296b1cd99324d1ba3c2615d693b84a3a808720a97bc03fbf4183c1a344b511af63270
@@ -1,3 +1,6 @@
1
+ AllCops:
2
+ Exclude:
3
+ - '*.gemspec'
1
4
  StringLiterals:
2
5
  EnforcedStyle: "double_quotes"
3
6
  Documentation:
@@ -2,4 +2,6 @@ language: ruby
2
2
  rvm:
3
3
  - 1.9.3
4
4
  - 2.0.0
5
- - 2.1.0
5
+ - 2.1.5
6
+ - 2.2.0
7
+ sudo: false
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
- require "active_support/core_ext"
2
+ require "active_support/core_ext/module/attribute_accessors"
3
3
 
4
4
  module Slodd
5
5
  module Config
@@ -1,4 +1,4 @@
1
1
  # encoding: utf-8
2
2
  module Slodd
3
- VERSION = "0.1.3"
3
+ VERSION = "0.1.4"
4
4
  end
@@ -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($INPUT_RECORD_SEPARATOR)
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"]
@@ -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.3
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: 2014-12-03 00:00:00.000000000 Z
11
+ date: 2015-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord