ebisu_connection 2.0.0 → 2.1.0
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/.travis.yml +2 -6
- data/Appraisals +1 -1
- data/README.md +2 -2
- data/Rakefile +1 -2
- data/ebisu_connection.gemspec +1 -1
- data/gemfiles/rails50.gemfile +1 -1
- data/lib/ebisu_connection/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be7c948789feb8b27786362a9ec16606a56cb1e4
|
|
4
|
+
data.tar.gz: 2d25e7a53fe628e30d079347878d905b6e78a6ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2eed1752e2176e1ab95f2afdba8b7f52c18e0e5bcdadaf791c998e0637b7fac31e3af349eb28d7353085e8a4ba9d4324792de0226e394dc250c4acda66e2bcd3
|
|
7
|
+
data.tar.gz: f8460c2f7042b367b1d1c0b6d7465a8930985c20f4c3453e8d7e88d0a80af6ffcea12622406dc24fd60183ba0d0ad1892a867935ea32965df69307b82b1e10ac
|
data/.travis.yml
CHANGED
|
@@ -7,9 +7,8 @@ services:
|
|
|
7
7
|
before_script:
|
|
8
8
|
- bundle update
|
|
9
9
|
- cp test/config/database_postgresql.yml.travis test/config/database_postgresql.yml
|
|
10
|
-
- psql -c 'create database
|
|
11
|
-
- psql -c 'create database
|
|
12
|
-
- psql -c 'create database fresh_connection_test_slave2;' -U postgres
|
|
10
|
+
- psql -c 'create database ebisu_connection_test_master;' -U postgres
|
|
11
|
+
- psql -c 'create database ebisu_connection_test_slave;' -U postgres
|
|
13
12
|
cache: bundler
|
|
14
13
|
rvm:
|
|
15
14
|
- 2.0.0
|
|
@@ -36,7 +35,4 @@ matrix:
|
|
|
36
35
|
- rvm: ruby-head
|
|
37
36
|
- gemfile: gemfiles/rails50.gemfile
|
|
38
37
|
fast_finish: true
|
|
39
|
-
notifications:
|
|
40
|
-
emails:
|
|
41
|
-
- tsukasa.oishi@gmail.com
|
|
42
38
|
bundler_args: --jobs 3 --retry 3
|
data/Appraisals
CHANGED
data/README.md
CHANGED
|
@@ -49,8 +49,8 @@ article.save
|
|
|
49
49
|
article.destory
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
-
## Support
|
|
53
|
-
EbisuConnection supports
|
|
52
|
+
## Support ActiveRecord version
|
|
53
|
+
EbisuConnection supports ActiveRecord version 4.0 or later.
|
|
54
54
|
If you are using Rails 3.2, could use EbisuConnection version 1.0.0 or before.
|
|
55
55
|
|
|
56
56
|
## Support DB
|
data/Rakefile
CHANGED
data/ebisu_connection.gemspec
CHANGED
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
|
|
22
22
|
spec.required_ruby_version = '>= 2.0'
|
|
23
23
|
|
|
24
|
-
spec.add_dependency 'fresh_connection', '~> 2.
|
|
24
|
+
spec.add_dependency 'fresh_connection', '~> 2.1.0'
|
|
25
25
|
spec.add_dependency 'concurrent-ruby', '~> 1.0.0'
|
|
26
26
|
|
|
27
27
|
spec.add_development_dependency 'mysql2', '>= 0.3.13', '< 0.5'
|
data/gemfiles/rails50.gemfile
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ebisu_connection
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- tsukasaoishi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-07-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fresh_connection
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 2.
|
|
19
|
+
version: 2.1.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 2.
|
|
26
|
+
version: 2.1.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: concurrent-ruby
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|