activerecord-shard_for 0.2.0 → 0.2.1

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: 511906085a601bbdbaf769215dbd7e471480ee8c
4
- data.tar.gz: de31a223085a86f97315a259b32ed0e3a12e9f18
3
+ metadata.gz: a1c8657de406db02ed5d126692643d464da6a34b
4
+ data.tar.gz: 660d22116ad1eb9fe35c086b3057a14e4a646295
5
5
  SHA512:
6
- metadata.gz: 691b4787767101d7d36cf3227b93635fa6a340f6628a7a63376e2f94a5fa1f282d3882bc2a3945238d27ab5ca34a2323ad2f713741330f3161778f252fc67f91
7
- data.tar.gz: e11f634a244d6e04bcf01541d37facde6d85026e4df76ce9490a08f68b1e6c7b1ba2d70e249551d93ac226aea4510a96dc1dedb98b83bfbb5b95792826ff9bc2
6
+ metadata.gz: 33b47bc95f2f8f500ebbeca490977c4d593aa9282260ee087af352a1916e9b03a2ef3348749019087d74fd029c30edbf46d4c98bdd33f3693d42fa866c8e8b3d
7
+ data.tar.gz: da451ed4f81e438206e8bf45f6c431caad8750e753d9c9eef361893537b43829f0b5affd98c107147b0aa957490691ba7b9ec169c23e7b9c10316437bd2e717e
data/.gitignore CHANGED
@@ -8,3 +8,4 @@
8
8
  /spec/reports/
9
9
  /tmp/
10
10
  /*.sqlite3
11
+ /gemfiles/*.lock
data/.travis.yml CHANGED
@@ -3,6 +3,9 @@ sudo: false
3
3
  rvm:
4
4
  - 2.2.4
5
5
  - 2.3.1
6
+ branches:
7
+ only:
8
+ - master
6
9
  before_install: gem install bundler -v 1.12.5
7
10
  cache: bundler
8
11
  script:
@@ -27,5 +30,5 @@ matrix:
27
30
  notifications:
28
31
  slack:
29
32
  secure: S1W/Lw+dH3wb8FfkMIWPZmr6M4Q6S2WMkSlanpKva1HM7K5QL7hXdmUl2yBUxJE26BHSsb1ScozMEzadyda2+i/W34UvZ7LXgKeHkUKEdjy/AmsSJPK1ZjMfgnv10tVgbEIusNb4bF/sSuChdZKK3ILwOlqIPDlQNdMwF1xRA2xt5J7tb26UgyIzoCI4P3bJYMULWsEkk+UwHiJH0YO9ulkTZI/j0N+hLXQLJTZPjmKtMk/tE0NbBmFVL4md89hUcR5gKTGGrNzEMJ58K+zqeDG/DubkcIbA5ZuqKv+oE5m0pDODZExxnC+oeENTvq/VfYwOfD0pTDrBNYjj+Bm3YiyGDzQAgov9XPDG8g/fKEs/LNAT79UZXkZlFO99Yn/vrYH9o5DKpOE9smENUXylb55MgLTUiYe17CTp7pB3trbJl3wwIbLjSmTjAdSUNgPv8qDP4uk3K4U32mknXCDDkU9EI7f6F731ocdoxsGarEBcPcgjs73Y84iwDteQp847Gigtgo4Y4TCWH657uzLolR2O8NSw+vWT0VNI9qtR5PZD7iVYtSp1qHtPAKowCztodewY2Nu+Ds9Z95udf4GPUkFg/SNEJPTPrQFLiiJZ8UYP8NJEuA+IP1tc2zG3zU/ADrjenRC1ZiupQG7OMH82y11408U6PcHFSlF+7NuDkac=
30
- on_success: never
31
- on_failure: change
33
+ on_success: change
34
+ on_failure: always
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # CHANGELOG for activerecord-shard_for
2
2
 
3
+ ## 0.2.1
4
+
5
+ - Fix raise MissingDistkeyAttribute before callback. [#6](https://github.com/yuemori/activerecord-shard_for/pull/6)
6
+ - Fix rake tasks not load in rails. [#3](https://github.com/yuemori/activerecord-shard_for/pull/3)
7
+ - Modify raise KeyError when not registered connection_key call [#7](https://github.com/yuemori/activerecord-shard_for/pull/7)
8
+
3
9
  ## 0.2.0
4
10
 
5
11
  - Enable Range support for cluster key
@@ -11,7 +11,7 @@ module ActiveRecord
11
11
 
12
12
  # @param [Object] key sharding key object for connection
13
13
  # @param [Symbol] connection_name
14
- # @raise [RuntimeError] when duplicate entry of key
14
+ # @raise [RuntimeError] when duplicate entry of key
15
15
  def register(key, connection_name)
16
16
  raise RuntimeError.new, "#{key} is registered" if connection_registry.key?(key)
17
17
  connection_registry[key] = connection_name
@@ -24,13 +24,16 @@ module ActiveRecord
24
24
 
25
25
  # @param [Object] key
26
26
  # @return [Symbol] registered connection name
27
+ # @raise [KeyError] when key is not registered
27
28
  def fetch(key)
28
- connection_registry.find do |connection_key, _connection|
29
+ connection_registry.each do |connection_key, connection|
29
30
  case connection_key
30
- when Range then connection_key.include?(key)
31
- else connection_key == key
31
+ when Range then return connection if connection_key.include?(key)
32
+ else return connection if connection_key == key
32
33
  end
33
- end.second
34
+ end
35
+
36
+ raise KeyError.new, "#{key} is not registerd connection"
34
37
  end
35
38
  end
36
39
  end
@@ -40,10 +40,11 @@ module ActiveRecord
40
40
  # @raise [ActiveRecord::ShardFor::MissingDistkeyAttribute]
41
41
  def put!(attributes)
42
42
  raise '`distkey` is not defined. Use `def_distkey`.' unless distkey
43
- key = attributes[distkey]
44
- raise ActiveRecord::ShardFor::MissingDistkeyAttribute unless key || attributes[distkey.to_s]
45
43
 
46
44
  @before_put_callback.call(attributes) if defined?(@before_put_callback) && @before_put_callback
45
+ key = attributes[distkey]
46
+
47
+ raise ActiveRecord::ShardFor::MissingDistkeyAttribute unless key || attributes[distkey.to_s]
47
48
 
48
49
  shard_for(key).create!(attributes)
49
50
  end
@@ -1,5 +1,5 @@
1
1
  module ActiveRecord
2
2
  module ShardFor
3
- VERSION = '0.2.0'.freeze
3
+ VERSION = '0.2.1'.freeze
4
4
  end
5
5
  end
@@ -12,7 +12,7 @@ require 'activerecord/shard_for/database_tasks'
12
12
  require 'activerecord/shard_for/shard_repogitory'
13
13
  require 'activerecord/shard_for/all_shards_in_parallel'
14
14
  require 'activerecord/shard_for/replication_mapping'
15
- require 'activerecord/railtie' if defined?(Rails5)
15
+ require 'activerecord/shard_for/railtie' if defined?(Rails)
16
16
 
17
17
  module ActiveRecord
18
18
  module ShardFor
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-shard_for
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - yuemori
@@ -285,17 +285,11 @@ files:
285
285
  - bin/setup
286
286
  - gemfiles/.bundle/config
287
287
  - gemfiles/ar_4.1.0.gemfile
288
- - gemfiles/ar_4.1.0.gemfile.lock
289
288
  - gemfiles/ar_4.1.7.gemfile
290
- - gemfiles/ar_4.1.7.gemfile.lock
291
289
  - gemfiles/ar_4.1.8.gemfile
292
- - gemfiles/ar_4.1.8.gemfile.lock
293
290
  - gemfiles/ar_4.2.gemfile
294
- - gemfiles/ar_4.2.gemfile.lock
295
291
  - gemfiles/ar_5.0.gemfile
296
- - gemfiles/ar_5.0.gemfile.lock
297
292
  - gemfiles/rails_edge.gemfile
298
- - gemfiles/rails_edge.gemfile.lock
299
293
  - lib/activerecord/shard_for.rb
300
294
  - lib/activerecord/shard_for/all_shards_in_parallel.rb
301
295
  - lib/activerecord/shard_for/cluster_config.rb
@@ -1,195 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- activerecord-shard_for (0.1.2)
5
- activerecord (>= 4.1.0)
6
- activesupport (>= 4.1.0)
7
- expeditor (>= 0.1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- abstract_type (0.0.7)
13
- activemodel (4.1.0)
14
- activesupport (= 4.1.0)
15
- builder (~> 3.1)
16
- activerecord (4.1.0)
17
- activemodel (= 4.1.0)
18
- activesupport (= 4.1.0)
19
- arel (~> 5.0.0)
20
- activesupport (4.1.0)
21
- i18n (~> 0.6, >= 0.6.9)
22
- json (~> 1.7, >= 1.7.7)
23
- minitest (~> 5.1)
24
- thread_safe (~> 0.1)
25
- tzinfo (~> 1.1)
26
- adamantium (0.2.0)
27
- ice_nine (~> 0.11.0)
28
- memoizable (~> 0.4.0)
29
- appraisal (2.1.0)
30
- bundler
31
- rake
32
- thor (>= 0.14.0)
33
- arel (5.0.1.20140414130214)
34
- ast (2.3.0)
35
- binding_of_caller (0.7.2)
36
- debug_inspector (>= 0.0.1)
37
- builder (3.2.2)
38
- codeclimate-test-reporter (0.6.0)
39
- simplecov (>= 0.7.1, < 1.0.0)
40
- coderay (1.1.1)
41
- concord (0.1.5)
42
- adamantium (~> 0.2.0)
43
- equalizer (~> 0.0.9)
44
- concurrent-ruby (1.0.2)
45
- concurrent-ruby-ext (1.0.2)
46
- concurrent-ruby (~> 1.0.2)
47
- debug_inspector (0.0.2)
48
- diff-lcs (1.2.5)
49
- docile (1.1.5)
50
- equalizer (0.0.11)
51
- expeditor (0.4.0)
52
- concurrent-ruby (~> 1.0.0)
53
- concurrent-ruby-ext (~> 1.0.0)
54
- retryable (> 1.0)
55
- ffi (1.9.14)
56
- formatador (0.2.5)
57
- guard (2.14.0)
58
- formatador (>= 0.2.4)
59
- listen (>= 2.7, < 4.0)
60
- lumberjack (~> 1.0)
61
- nenv (~> 0.1)
62
- notiffany (~> 0.0)
63
- pry (>= 0.9.12)
64
- shellany (~> 0.0)
65
- thor (>= 0.18.1)
66
- guard-compat (1.2.1)
67
- guard-rspec (4.7.3)
68
- guard (~> 2.1)
69
- guard-compat (~> 1.1)
70
- rspec (>= 2.99.0, < 4.0)
71
- guard-rubocop (1.2.0)
72
- guard (~> 2.0)
73
- rubocop (~> 0.20)
74
- i18n (0.7.0)
75
- ice_nine (0.11.2)
76
- interception (0.5)
77
- json (1.8.3)
78
- listen (3.1.5)
79
- rb-fsevent (~> 0.9, >= 0.9.4)
80
- rb-inotify (~> 0.9, >= 0.9.7)
81
- ruby_dep (~> 1.2)
82
- lumberjack (1.0.10)
83
- memoizable (0.4.2)
84
- thread_safe (~> 0.3, >= 0.3.1)
85
- method_source (0.8.2)
86
- minitest (5.9.0)
87
- nenv (0.3.0)
88
- notiffany (0.1.1)
89
- nenv (~> 0.1)
90
- shellany (~> 0.0)
91
- parser (2.3.1.2)
92
- ast (~> 2.2)
93
- powerpack (0.1.1)
94
- proc_to_ast (0.1.0)
95
- coderay
96
- parser
97
- unparser
98
- procto (0.0.3)
99
- pry (0.10.4)
100
- coderay (~> 1.1.0)
101
- method_source (~> 0.8.1)
102
- slop (~> 3.4)
103
- pry-doc (0.9.0)
104
- pry (~> 0.9)
105
- yard (~> 0.8)
106
- pry-inline (1.0.2)
107
- pry (~> 0.10.0)
108
- unicode (~> 0.4.4)
109
- pry-rescue (1.4.4)
110
- interception (>= 0.5)
111
- pry
112
- pry-stack_explorer (0.4.9.2)
113
- binding_of_caller (>= 0.7)
114
- pry (>= 0.9.11)
115
- rainbow (2.1.0)
116
- rake (10.5.0)
117
- rb-fsevent (0.9.7)
118
- rb-inotify (0.9.7)
119
- ffi (>= 0.5.0)
120
- retryable (2.0.4)
121
- rspec (3.5.0)
122
- rspec-core (~> 3.5.0)
123
- rspec-expectations (~> 3.5.0)
124
- rspec-mocks (~> 3.5.0)
125
- rspec-core (3.5.2)
126
- rspec-support (~> 3.5.0)
127
- rspec-expectations (3.5.0)
128
- diff-lcs (>= 1.2.0, < 2.0)
129
- rspec-support (~> 3.5.0)
130
- rspec-mocks (3.5.0)
131
- diff-lcs (>= 1.2.0, < 2.0)
132
- rspec-support (~> 3.5.0)
133
- rspec-parameterized (0.3.0)
134
- binding_of_caller
135
- parser
136
- proc_to_ast
137
- rspec (>= 2.13, < 4)
138
- unparser
139
- rspec-support (3.5.0)
140
- rubocop (0.42.0)
141
- parser (>= 2.3.1.1, < 3.0)
142
- powerpack (~> 0.1)
143
- rainbow (>= 1.99.1, < 3.0)
144
- ruby-progressbar (~> 1.7)
145
- unicode-display_width (~> 1.0, >= 1.0.1)
146
- ruby-progressbar (1.8.1)
147
- ruby_dep (1.3.1)
148
- shellany (0.0.1)
149
- simplecov (0.12.0)
150
- docile (~> 1.1.0)
151
- json (>= 1.8, < 3)
152
- simplecov-html (~> 0.10.0)
153
- simplecov-html (0.10.0)
154
- slop (3.6.0)
155
- sqlite3 (1.3.11)
156
- thor (0.19.1)
157
- thread_safe (0.3.5)
158
- tzinfo (1.2.2)
159
- thread_safe (~> 0.1)
160
- unicode (0.4.4.2)
161
- unicode-display_width (1.1.0)
162
- unparser (0.2.5)
163
- abstract_type (~> 0.0.7)
164
- adamantium (~> 0.2.0)
165
- concord (~> 0.1.5)
166
- diff-lcs (~> 1.2.5)
167
- equalizer (~> 0.0.9)
168
- parser (~> 2.3.0)
169
- procto (~> 0.0.2)
170
- yard (0.9.5)
171
-
172
- PLATFORMS
173
- ruby
174
-
175
- DEPENDENCIES
176
- activerecord (= 4.1.0)
177
- activerecord-shard_for!
178
- appraisal
179
- bundler (~> 1.11)
180
- codeclimate-test-reporter
181
- guard-rspec
182
- guard-rubocop
183
- pry
184
- pry-doc
185
- pry-inline
186
- pry-rescue
187
- pry-stack_explorer
188
- rake (~> 10.0)
189
- rspec (~> 3.0)
190
- rspec-parameterized
191
- rubocop
192
- sqlite3
193
-
194
- BUNDLED WITH
195
- 1.12.5
@@ -1,195 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- activerecord-shard_for (0.1.2)
5
- activerecord (>= 4.1.0)
6
- activesupport (>= 4.1.0)
7
- expeditor (>= 0.1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- abstract_type (0.0.7)
13
- activemodel (4.1.7)
14
- activesupport (= 4.1.7)
15
- builder (~> 3.1)
16
- activerecord (4.1.7)
17
- activemodel (= 4.1.7)
18
- activesupport (= 4.1.7)
19
- arel (~> 5.0.0)
20
- activesupport (4.1.7)
21
- i18n (~> 0.6, >= 0.6.9)
22
- json (~> 1.7, >= 1.7.7)
23
- minitest (~> 5.1)
24
- thread_safe (~> 0.1)
25
- tzinfo (~> 1.1)
26
- adamantium (0.2.0)
27
- ice_nine (~> 0.11.0)
28
- memoizable (~> 0.4.0)
29
- appraisal (2.1.0)
30
- bundler
31
- rake
32
- thor (>= 0.14.0)
33
- arel (5.0.1.20140414130214)
34
- ast (2.3.0)
35
- binding_of_caller (0.7.2)
36
- debug_inspector (>= 0.0.1)
37
- builder (3.2.2)
38
- codeclimate-test-reporter (0.6.0)
39
- simplecov (>= 0.7.1, < 1.0.0)
40
- coderay (1.1.1)
41
- concord (0.1.5)
42
- adamantium (~> 0.2.0)
43
- equalizer (~> 0.0.9)
44
- concurrent-ruby (1.0.2)
45
- concurrent-ruby-ext (1.0.2)
46
- concurrent-ruby (~> 1.0.2)
47
- debug_inspector (0.0.2)
48
- diff-lcs (1.2.5)
49
- docile (1.1.5)
50
- equalizer (0.0.11)
51
- expeditor (0.4.0)
52
- concurrent-ruby (~> 1.0.0)
53
- concurrent-ruby-ext (~> 1.0.0)
54
- retryable (> 1.0)
55
- ffi (1.9.14)
56
- formatador (0.2.5)
57
- guard (2.14.0)
58
- formatador (>= 0.2.4)
59
- listen (>= 2.7, < 4.0)
60
- lumberjack (~> 1.0)
61
- nenv (~> 0.1)
62
- notiffany (~> 0.0)
63
- pry (>= 0.9.12)
64
- shellany (~> 0.0)
65
- thor (>= 0.18.1)
66
- guard-compat (1.2.1)
67
- guard-rspec (4.7.3)
68
- guard (~> 2.1)
69
- guard-compat (~> 1.1)
70
- rspec (>= 2.99.0, < 4.0)
71
- guard-rubocop (1.2.0)
72
- guard (~> 2.0)
73
- rubocop (~> 0.20)
74
- i18n (0.7.0)
75
- ice_nine (0.11.2)
76
- interception (0.5)
77
- json (1.8.3)
78
- listen (3.1.5)
79
- rb-fsevent (~> 0.9, >= 0.9.4)
80
- rb-inotify (~> 0.9, >= 0.9.7)
81
- ruby_dep (~> 1.2)
82
- lumberjack (1.0.10)
83
- memoizable (0.4.2)
84
- thread_safe (~> 0.3, >= 0.3.1)
85
- method_source (0.8.2)
86
- minitest (5.9.0)
87
- nenv (0.3.0)
88
- notiffany (0.1.1)
89
- nenv (~> 0.1)
90
- shellany (~> 0.0)
91
- parser (2.3.1.2)
92
- ast (~> 2.2)
93
- powerpack (0.1.1)
94
- proc_to_ast (0.1.0)
95
- coderay
96
- parser
97
- unparser
98
- procto (0.0.3)
99
- pry (0.10.4)
100
- coderay (~> 1.1.0)
101
- method_source (~> 0.8.1)
102
- slop (~> 3.4)
103
- pry-doc (0.9.0)
104
- pry (~> 0.9)
105
- yard (~> 0.8)
106
- pry-inline (1.0.2)
107
- pry (~> 0.10.0)
108
- unicode (~> 0.4.4)
109
- pry-rescue (1.4.4)
110
- interception (>= 0.5)
111
- pry
112
- pry-stack_explorer (0.4.9.2)
113
- binding_of_caller (>= 0.7)
114
- pry (>= 0.9.11)
115
- rainbow (2.1.0)
116
- rake (10.5.0)
117
- rb-fsevent (0.9.7)
118
- rb-inotify (0.9.7)
119
- ffi (>= 0.5.0)
120
- retryable (2.0.4)
121
- rspec (3.5.0)
122
- rspec-core (~> 3.5.0)
123
- rspec-expectations (~> 3.5.0)
124
- rspec-mocks (~> 3.5.0)
125
- rspec-core (3.5.2)
126
- rspec-support (~> 3.5.0)
127
- rspec-expectations (3.5.0)
128
- diff-lcs (>= 1.2.0, < 2.0)
129
- rspec-support (~> 3.5.0)
130
- rspec-mocks (3.5.0)
131
- diff-lcs (>= 1.2.0, < 2.0)
132
- rspec-support (~> 3.5.0)
133
- rspec-parameterized (0.3.0)
134
- binding_of_caller
135
- parser
136
- proc_to_ast
137
- rspec (>= 2.13, < 4)
138
- unparser
139
- rspec-support (3.5.0)
140
- rubocop (0.42.0)
141
- parser (>= 2.3.1.1, < 3.0)
142
- powerpack (~> 0.1)
143
- rainbow (>= 1.99.1, < 3.0)
144
- ruby-progressbar (~> 1.7)
145
- unicode-display_width (~> 1.0, >= 1.0.1)
146
- ruby-progressbar (1.8.1)
147
- ruby_dep (1.3.1)
148
- shellany (0.0.1)
149
- simplecov (0.12.0)
150
- docile (~> 1.1.0)
151
- json (>= 1.8, < 3)
152
- simplecov-html (~> 0.10.0)
153
- simplecov-html (0.10.0)
154
- slop (3.6.0)
155
- sqlite3 (1.3.11)
156
- thor (0.19.1)
157
- thread_safe (0.3.5)
158
- tzinfo (1.2.2)
159
- thread_safe (~> 0.1)
160
- unicode (0.4.4.2)
161
- unicode-display_width (1.1.0)
162
- unparser (0.2.5)
163
- abstract_type (~> 0.0.7)
164
- adamantium (~> 0.2.0)
165
- concord (~> 0.1.5)
166
- diff-lcs (~> 1.2.5)
167
- equalizer (~> 0.0.9)
168
- parser (~> 2.3.0)
169
- procto (~> 0.0.2)
170
- yard (0.9.5)
171
-
172
- PLATFORMS
173
- ruby
174
-
175
- DEPENDENCIES
176
- activerecord (= 4.1.7)
177
- activerecord-shard_for!
178
- appraisal
179
- bundler (~> 1.11)
180
- codeclimate-test-reporter
181
- guard-rspec
182
- guard-rubocop
183
- pry
184
- pry-doc
185
- pry-inline
186
- pry-rescue
187
- pry-stack_explorer
188
- rake (~> 10.0)
189
- rspec (~> 3.0)
190
- rspec-parameterized
191
- rubocop
192
- sqlite3
193
-
194
- BUNDLED WITH
195
- 1.12.5
@@ -1,195 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- activerecord-shard_for (0.1.2)
5
- activerecord (>= 4.1.0)
6
- activesupport (>= 4.1.0)
7
- expeditor (>= 0.1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- abstract_type (0.0.7)
13
- activemodel (4.1.8)
14
- activesupport (= 4.1.8)
15
- builder (~> 3.1)
16
- activerecord (4.1.8)
17
- activemodel (= 4.1.8)
18
- activesupport (= 4.1.8)
19
- arel (~> 5.0.0)
20
- activesupport (4.1.8)
21
- i18n (~> 0.6, >= 0.6.9)
22
- json (~> 1.7, >= 1.7.7)
23
- minitest (~> 5.1)
24
- thread_safe (~> 0.1)
25
- tzinfo (~> 1.1)
26
- adamantium (0.2.0)
27
- ice_nine (~> 0.11.0)
28
- memoizable (~> 0.4.0)
29
- appraisal (2.1.0)
30
- bundler
31
- rake
32
- thor (>= 0.14.0)
33
- arel (5.0.1.20140414130214)
34
- ast (2.3.0)
35
- binding_of_caller (0.7.2)
36
- debug_inspector (>= 0.0.1)
37
- builder (3.2.2)
38
- codeclimate-test-reporter (0.6.0)
39
- simplecov (>= 0.7.1, < 1.0.0)
40
- coderay (1.1.1)
41
- concord (0.1.5)
42
- adamantium (~> 0.2.0)
43
- equalizer (~> 0.0.9)
44
- concurrent-ruby (1.0.2)
45
- concurrent-ruby-ext (1.0.2)
46
- concurrent-ruby (~> 1.0.2)
47
- debug_inspector (0.0.2)
48
- diff-lcs (1.2.5)
49
- docile (1.1.5)
50
- equalizer (0.0.11)
51
- expeditor (0.4.0)
52
- concurrent-ruby (~> 1.0.0)
53
- concurrent-ruby-ext (~> 1.0.0)
54
- retryable (> 1.0)
55
- ffi (1.9.14)
56
- formatador (0.2.5)
57
- guard (2.14.0)
58
- formatador (>= 0.2.4)
59
- listen (>= 2.7, < 4.0)
60
- lumberjack (~> 1.0)
61
- nenv (~> 0.1)
62
- notiffany (~> 0.0)
63
- pry (>= 0.9.12)
64
- shellany (~> 0.0)
65
- thor (>= 0.18.1)
66
- guard-compat (1.2.1)
67
- guard-rspec (4.7.3)
68
- guard (~> 2.1)
69
- guard-compat (~> 1.1)
70
- rspec (>= 2.99.0, < 4.0)
71
- guard-rubocop (1.2.0)
72
- guard (~> 2.0)
73
- rubocop (~> 0.20)
74
- i18n (0.7.0)
75
- ice_nine (0.11.2)
76
- interception (0.5)
77
- json (1.8.3)
78
- listen (3.1.5)
79
- rb-fsevent (~> 0.9, >= 0.9.4)
80
- rb-inotify (~> 0.9, >= 0.9.7)
81
- ruby_dep (~> 1.2)
82
- lumberjack (1.0.10)
83
- memoizable (0.4.2)
84
- thread_safe (~> 0.3, >= 0.3.1)
85
- method_source (0.8.2)
86
- minitest (5.9.0)
87
- nenv (0.3.0)
88
- notiffany (0.1.1)
89
- nenv (~> 0.1)
90
- shellany (~> 0.0)
91
- parser (2.3.1.2)
92
- ast (~> 2.2)
93
- powerpack (0.1.1)
94
- proc_to_ast (0.1.0)
95
- coderay
96
- parser
97
- unparser
98
- procto (0.0.3)
99
- pry (0.10.4)
100
- coderay (~> 1.1.0)
101
- method_source (~> 0.8.1)
102
- slop (~> 3.4)
103
- pry-doc (0.9.0)
104
- pry (~> 0.9)
105
- yard (~> 0.8)
106
- pry-inline (1.0.2)
107
- pry (~> 0.10.0)
108
- unicode (~> 0.4.4)
109
- pry-rescue (1.4.4)
110
- interception (>= 0.5)
111
- pry
112
- pry-stack_explorer (0.4.9.2)
113
- binding_of_caller (>= 0.7)
114
- pry (>= 0.9.11)
115
- rainbow (2.1.0)
116
- rake (10.5.0)
117
- rb-fsevent (0.9.7)
118
- rb-inotify (0.9.7)
119
- ffi (>= 0.5.0)
120
- retryable (2.0.4)
121
- rspec (3.5.0)
122
- rspec-core (~> 3.5.0)
123
- rspec-expectations (~> 3.5.0)
124
- rspec-mocks (~> 3.5.0)
125
- rspec-core (3.5.2)
126
- rspec-support (~> 3.5.0)
127
- rspec-expectations (3.5.0)
128
- diff-lcs (>= 1.2.0, < 2.0)
129
- rspec-support (~> 3.5.0)
130
- rspec-mocks (3.5.0)
131
- diff-lcs (>= 1.2.0, < 2.0)
132
- rspec-support (~> 3.5.0)
133
- rspec-parameterized (0.3.0)
134
- binding_of_caller
135
- parser
136
- proc_to_ast
137
- rspec (>= 2.13, < 4)
138
- unparser
139
- rspec-support (3.5.0)
140
- rubocop (0.42.0)
141
- parser (>= 2.3.1.1, < 3.0)
142
- powerpack (~> 0.1)
143
- rainbow (>= 1.99.1, < 3.0)
144
- ruby-progressbar (~> 1.7)
145
- unicode-display_width (~> 1.0, >= 1.0.1)
146
- ruby-progressbar (1.8.1)
147
- ruby_dep (1.3.1)
148
- shellany (0.0.1)
149
- simplecov (0.12.0)
150
- docile (~> 1.1.0)
151
- json (>= 1.8, < 3)
152
- simplecov-html (~> 0.10.0)
153
- simplecov-html (0.10.0)
154
- slop (3.6.0)
155
- sqlite3 (1.3.11)
156
- thor (0.19.1)
157
- thread_safe (0.3.5)
158
- tzinfo (1.2.2)
159
- thread_safe (~> 0.1)
160
- unicode (0.4.4.2)
161
- unicode-display_width (1.1.0)
162
- unparser (0.2.5)
163
- abstract_type (~> 0.0.7)
164
- adamantium (~> 0.2.0)
165
- concord (~> 0.1.5)
166
- diff-lcs (~> 1.2.5)
167
- equalizer (~> 0.0.9)
168
- parser (~> 2.3.0)
169
- procto (~> 0.0.2)
170
- yard (0.9.5)
171
-
172
- PLATFORMS
173
- ruby
174
-
175
- DEPENDENCIES
176
- activerecord (= 4.1.8)
177
- activerecord-shard_for!
178
- appraisal
179
- bundler (~> 1.11)
180
- codeclimate-test-reporter
181
- guard-rspec
182
- guard-rubocop
183
- pry
184
- pry-doc
185
- pry-inline
186
- pry-rescue
187
- pry-stack_explorer
188
- rake (~> 10.0)
189
- rspec (~> 3.0)
190
- rspec-parameterized
191
- rubocop
192
- sqlite3
193
-
194
- BUNDLED WITH
195
- 1.12.5
@@ -1,195 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- activerecord-shard_for (0.1.2)
5
- activerecord (>= 4.1.0)
6
- activesupport (>= 4.1.0)
7
- expeditor (>= 0.1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- abstract_type (0.0.7)
13
- activemodel (4.2.7)
14
- activesupport (= 4.2.7)
15
- builder (~> 3.1)
16
- activerecord (4.2.7)
17
- activemodel (= 4.2.7)
18
- activesupport (= 4.2.7)
19
- arel (~> 6.0)
20
- activesupport (4.2.7)
21
- i18n (~> 0.7)
22
- json (~> 1.7, >= 1.7.7)
23
- minitest (~> 5.1)
24
- thread_safe (~> 0.3, >= 0.3.4)
25
- tzinfo (~> 1.1)
26
- adamantium (0.2.0)
27
- ice_nine (~> 0.11.0)
28
- memoizable (~> 0.4.0)
29
- appraisal (2.1.0)
30
- bundler
31
- rake
32
- thor (>= 0.14.0)
33
- arel (6.0.3)
34
- ast (2.3.0)
35
- binding_of_caller (0.7.2)
36
- debug_inspector (>= 0.0.1)
37
- builder (3.2.2)
38
- codeclimate-test-reporter (0.6.0)
39
- simplecov (>= 0.7.1, < 1.0.0)
40
- coderay (1.1.1)
41
- concord (0.1.5)
42
- adamantium (~> 0.2.0)
43
- equalizer (~> 0.0.9)
44
- concurrent-ruby (1.0.2)
45
- concurrent-ruby-ext (1.0.2)
46
- concurrent-ruby (~> 1.0.2)
47
- debug_inspector (0.0.2)
48
- diff-lcs (1.2.5)
49
- docile (1.1.5)
50
- equalizer (0.0.11)
51
- expeditor (0.4.0)
52
- concurrent-ruby (~> 1.0.0)
53
- concurrent-ruby-ext (~> 1.0.0)
54
- retryable (> 1.0)
55
- ffi (1.9.14)
56
- formatador (0.2.5)
57
- guard (2.14.0)
58
- formatador (>= 0.2.4)
59
- listen (>= 2.7, < 4.0)
60
- lumberjack (~> 1.0)
61
- nenv (~> 0.1)
62
- notiffany (~> 0.0)
63
- pry (>= 0.9.12)
64
- shellany (~> 0.0)
65
- thor (>= 0.18.1)
66
- guard-compat (1.2.1)
67
- guard-rspec (4.7.3)
68
- guard (~> 2.1)
69
- guard-compat (~> 1.1)
70
- rspec (>= 2.99.0, < 4.0)
71
- guard-rubocop (1.2.0)
72
- guard (~> 2.0)
73
- rubocop (~> 0.20)
74
- i18n (0.7.0)
75
- ice_nine (0.11.2)
76
- interception (0.5)
77
- json (1.8.3)
78
- listen (3.1.5)
79
- rb-fsevent (~> 0.9, >= 0.9.4)
80
- rb-inotify (~> 0.9, >= 0.9.7)
81
- ruby_dep (~> 1.2)
82
- lumberjack (1.0.10)
83
- memoizable (0.4.2)
84
- thread_safe (~> 0.3, >= 0.3.1)
85
- method_source (0.8.2)
86
- minitest (5.9.0)
87
- nenv (0.3.0)
88
- notiffany (0.1.1)
89
- nenv (~> 0.1)
90
- shellany (~> 0.0)
91
- parser (2.3.1.2)
92
- ast (~> 2.2)
93
- powerpack (0.1.1)
94
- proc_to_ast (0.1.0)
95
- coderay
96
- parser
97
- unparser
98
- procto (0.0.3)
99
- pry (0.10.4)
100
- coderay (~> 1.1.0)
101
- method_source (~> 0.8.1)
102
- slop (~> 3.4)
103
- pry-doc (0.9.0)
104
- pry (~> 0.9)
105
- yard (~> 0.8)
106
- pry-inline (1.0.2)
107
- pry (~> 0.10.0)
108
- unicode (~> 0.4.4)
109
- pry-rescue (1.4.4)
110
- interception (>= 0.5)
111
- pry
112
- pry-stack_explorer (0.4.9.2)
113
- binding_of_caller (>= 0.7)
114
- pry (>= 0.9.11)
115
- rainbow (2.1.0)
116
- rake (10.5.0)
117
- rb-fsevent (0.9.7)
118
- rb-inotify (0.9.7)
119
- ffi (>= 0.5.0)
120
- retryable (2.0.4)
121
- rspec (3.5.0)
122
- rspec-core (~> 3.5.0)
123
- rspec-expectations (~> 3.5.0)
124
- rspec-mocks (~> 3.5.0)
125
- rspec-core (3.5.2)
126
- rspec-support (~> 3.5.0)
127
- rspec-expectations (3.5.0)
128
- diff-lcs (>= 1.2.0, < 2.0)
129
- rspec-support (~> 3.5.0)
130
- rspec-mocks (3.5.0)
131
- diff-lcs (>= 1.2.0, < 2.0)
132
- rspec-support (~> 3.5.0)
133
- rspec-parameterized (0.3.0)
134
- binding_of_caller
135
- parser
136
- proc_to_ast
137
- rspec (>= 2.13, < 4)
138
- unparser
139
- rspec-support (3.5.0)
140
- rubocop (0.42.0)
141
- parser (>= 2.3.1.1, < 3.0)
142
- powerpack (~> 0.1)
143
- rainbow (>= 1.99.1, < 3.0)
144
- ruby-progressbar (~> 1.7)
145
- unicode-display_width (~> 1.0, >= 1.0.1)
146
- ruby-progressbar (1.8.1)
147
- ruby_dep (1.3.1)
148
- shellany (0.0.1)
149
- simplecov (0.12.0)
150
- docile (~> 1.1.0)
151
- json (>= 1.8, < 3)
152
- simplecov-html (~> 0.10.0)
153
- simplecov-html (0.10.0)
154
- slop (3.6.0)
155
- sqlite3 (1.3.11)
156
- thor (0.19.1)
157
- thread_safe (0.3.5)
158
- tzinfo (1.2.2)
159
- thread_safe (~> 0.1)
160
- unicode (0.4.4.2)
161
- unicode-display_width (1.1.0)
162
- unparser (0.2.5)
163
- abstract_type (~> 0.0.7)
164
- adamantium (~> 0.2.0)
165
- concord (~> 0.1.5)
166
- diff-lcs (~> 1.2.5)
167
- equalizer (~> 0.0.9)
168
- parser (~> 2.3.0)
169
- procto (~> 0.0.2)
170
- yard (0.9.5)
171
-
172
- PLATFORMS
173
- ruby
174
-
175
- DEPENDENCIES
176
- activerecord (~> 4.2)
177
- activerecord-shard_for!
178
- appraisal
179
- bundler (~> 1.11)
180
- codeclimate-test-reporter
181
- guard-rspec
182
- guard-rubocop
183
- pry
184
- pry-doc
185
- pry-inline
186
- pry-rescue
187
- pry-stack_explorer
188
- rake (~> 10.0)
189
- rspec (~> 3.0)
190
- rspec-parameterized
191
- rubocop
192
- sqlite3
193
-
194
- BUNDLED WITH
195
- 1.12.5
@@ -1,192 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- activerecord-shard_for (0.1.2)
5
- activerecord (>= 4.1.0)
6
- activesupport (>= 4.1.0)
7
- expeditor (>= 0.1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- abstract_type (0.0.7)
13
- activemodel (5.0.0)
14
- activesupport (= 5.0.0)
15
- activerecord (5.0.0)
16
- activemodel (= 5.0.0)
17
- activesupport (= 5.0.0)
18
- arel (~> 7.0)
19
- activesupport (5.0.0)
20
- concurrent-ruby (~> 1.0, >= 1.0.2)
21
- i18n (~> 0.7)
22
- minitest (~> 5.1)
23
- tzinfo (~> 1.1)
24
- adamantium (0.2.0)
25
- ice_nine (~> 0.11.0)
26
- memoizable (~> 0.4.0)
27
- appraisal (2.1.0)
28
- bundler
29
- rake
30
- thor (>= 0.14.0)
31
- arel (7.1.1)
32
- ast (2.3.0)
33
- binding_of_caller (0.7.2)
34
- debug_inspector (>= 0.0.1)
35
- codeclimate-test-reporter (0.6.0)
36
- simplecov (>= 0.7.1, < 1.0.0)
37
- coderay (1.1.1)
38
- concord (0.1.5)
39
- adamantium (~> 0.2.0)
40
- equalizer (~> 0.0.9)
41
- concurrent-ruby (1.0.2)
42
- concurrent-ruby-ext (1.0.2)
43
- concurrent-ruby (~> 1.0.2)
44
- debug_inspector (0.0.2)
45
- diff-lcs (1.2.5)
46
- docile (1.1.5)
47
- equalizer (0.0.11)
48
- expeditor (0.4.0)
49
- concurrent-ruby (~> 1.0.0)
50
- concurrent-ruby-ext (~> 1.0.0)
51
- retryable (> 1.0)
52
- ffi (1.9.14)
53
- formatador (0.2.5)
54
- guard (2.14.0)
55
- formatador (>= 0.2.4)
56
- listen (>= 2.7, < 4.0)
57
- lumberjack (~> 1.0)
58
- nenv (~> 0.1)
59
- notiffany (~> 0.0)
60
- pry (>= 0.9.12)
61
- shellany (~> 0.0)
62
- thor (>= 0.18.1)
63
- guard-compat (1.2.1)
64
- guard-rspec (4.7.3)
65
- guard (~> 2.1)
66
- guard-compat (~> 1.1)
67
- rspec (>= 2.99.0, < 4.0)
68
- guard-rubocop (1.2.0)
69
- guard (~> 2.0)
70
- rubocop (~> 0.20)
71
- i18n (0.7.0)
72
- ice_nine (0.11.2)
73
- interception (0.5)
74
- json (2.0.2)
75
- listen (3.1.5)
76
- rb-fsevent (~> 0.9, >= 0.9.4)
77
- rb-inotify (~> 0.9, >= 0.9.7)
78
- ruby_dep (~> 1.2)
79
- lumberjack (1.0.10)
80
- memoizable (0.4.2)
81
- thread_safe (~> 0.3, >= 0.3.1)
82
- method_source (0.8.2)
83
- minitest (5.9.0)
84
- nenv (0.3.0)
85
- notiffany (0.1.1)
86
- nenv (~> 0.1)
87
- shellany (~> 0.0)
88
- parser (2.3.1.2)
89
- ast (~> 2.2)
90
- powerpack (0.1.1)
91
- proc_to_ast (0.1.0)
92
- coderay
93
- parser
94
- unparser
95
- procto (0.0.3)
96
- pry (0.10.4)
97
- coderay (~> 1.1.0)
98
- method_source (~> 0.8.1)
99
- slop (~> 3.4)
100
- pry-doc (0.9.0)
101
- pry (~> 0.9)
102
- yard (~> 0.8)
103
- pry-inline (1.0.2)
104
- pry (~> 0.10.0)
105
- unicode (~> 0.4.4)
106
- pry-rescue (1.4.4)
107
- interception (>= 0.5)
108
- pry
109
- pry-stack_explorer (0.4.9.2)
110
- binding_of_caller (>= 0.7)
111
- pry (>= 0.9.11)
112
- rainbow (2.1.0)
113
- rake (10.5.0)
114
- rb-fsevent (0.9.7)
115
- rb-inotify (0.9.7)
116
- ffi (>= 0.5.0)
117
- retryable (2.0.4)
118
- rspec (3.5.0)
119
- rspec-core (~> 3.5.0)
120
- rspec-expectations (~> 3.5.0)
121
- rspec-mocks (~> 3.5.0)
122
- rspec-core (3.5.2)
123
- rspec-support (~> 3.5.0)
124
- rspec-expectations (3.5.0)
125
- diff-lcs (>= 1.2.0, < 2.0)
126
- rspec-support (~> 3.5.0)
127
- rspec-mocks (3.5.0)
128
- diff-lcs (>= 1.2.0, < 2.0)
129
- rspec-support (~> 3.5.0)
130
- rspec-parameterized (0.3.0)
131
- binding_of_caller
132
- parser
133
- proc_to_ast
134
- rspec (>= 2.13, < 4)
135
- unparser
136
- rspec-support (3.5.0)
137
- rubocop (0.42.0)
138
- parser (>= 2.3.1.1, < 3.0)
139
- powerpack (~> 0.1)
140
- rainbow (>= 1.99.1, < 3.0)
141
- ruby-progressbar (~> 1.7)
142
- unicode-display_width (~> 1.0, >= 1.0.1)
143
- ruby-progressbar (1.8.1)
144
- ruby_dep (1.3.1)
145
- shellany (0.0.1)
146
- simplecov (0.12.0)
147
- docile (~> 1.1.0)
148
- json (>= 1.8, < 3)
149
- simplecov-html (~> 0.10.0)
150
- simplecov-html (0.10.0)
151
- slop (3.6.0)
152
- sqlite3 (1.3.11)
153
- thor (0.19.1)
154
- thread_safe (0.3.5)
155
- tzinfo (1.2.2)
156
- thread_safe (~> 0.1)
157
- unicode (0.4.4.2)
158
- unicode-display_width (1.1.0)
159
- unparser (0.2.5)
160
- abstract_type (~> 0.0.7)
161
- adamantium (~> 0.2.0)
162
- concord (~> 0.1.5)
163
- diff-lcs (~> 1.2.5)
164
- equalizer (~> 0.0.9)
165
- parser (~> 2.3.0)
166
- procto (~> 0.0.2)
167
- yard (0.9.5)
168
-
169
- PLATFORMS
170
- ruby
171
-
172
- DEPENDENCIES
173
- activerecord (~> 5.0.0)
174
- activerecord-shard_for!
175
- appraisal
176
- bundler (~> 1.11)
177
- codeclimate-test-reporter
178
- guard-rspec
179
- guard-rubocop
180
- pry
181
- pry-doc
182
- pry-inline
183
- pry-rescue
184
- pry-stack_explorer
185
- rake (~> 10.0)
186
- rspec (~> 3.0)
187
- rspec-parameterized
188
- rubocop
189
- sqlite3
190
-
191
- BUNDLED WITH
192
- 1.12.5
@@ -1,203 +0,0 @@
1
- GIT
2
- remote: git://github.com/rails/arel.git
3
- revision: 09827f361d4bc73e6ff157d9feb74a465e4e4cdd
4
- specs:
5
- arel (7.1.1)
6
-
7
- GIT
8
- remote: git://github.com/rails/rails.git
9
- revision: 815b730b1b79158511f9f4c8465c476b9fe9b7e0
10
- specs:
11
- activemodel (5.1.0.alpha)
12
- activesupport (= 5.1.0.alpha)
13
- activerecord (5.1.0.alpha)
14
- activemodel (= 5.1.0.alpha)
15
- activesupport (= 5.1.0.alpha)
16
- arel (~> 7.0)
17
- activesupport (5.1.0.alpha)
18
- concurrent-ruby (~> 1.0, >= 1.0.2)
19
- i18n (~> 0.7)
20
- minitest (~> 5.1)
21
- tzinfo (~> 1.1)
22
-
23
- PATH
24
- remote: ../
25
- specs:
26
- activerecord-shard_for (0.1.2)
27
- activerecord (>= 4.1.0)
28
- activesupport (>= 4.1.0)
29
- expeditor (>= 0.1.0)
30
-
31
- GEM
32
- remote: https://rubygems.org/
33
- specs:
34
- abstract_type (0.0.7)
35
- adamantium (0.2.0)
36
- ice_nine (~> 0.11.0)
37
- memoizable (~> 0.4.0)
38
- appraisal (2.1.0)
39
- bundler
40
- rake
41
- thor (>= 0.14.0)
42
- ast (2.3.0)
43
- binding_of_caller (0.7.2)
44
- debug_inspector (>= 0.0.1)
45
- codeclimate-test-reporter (0.6.0)
46
- simplecov (>= 0.7.1, < 1.0.0)
47
- coderay (1.1.1)
48
- concord (0.1.5)
49
- adamantium (~> 0.2.0)
50
- equalizer (~> 0.0.9)
51
- concurrent-ruby (1.0.2)
52
- concurrent-ruby-ext (1.0.2)
53
- concurrent-ruby (~> 1.0.2)
54
- debug_inspector (0.0.2)
55
- diff-lcs (1.2.5)
56
- docile (1.1.5)
57
- equalizer (0.0.11)
58
- expeditor (0.4.0)
59
- concurrent-ruby (~> 1.0.0)
60
- concurrent-ruby-ext (~> 1.0.0)
61
- retryable (> 1.0)
62
- ffi (1.9.14)
63
- formatador (0.2.5)
64
- guard (2.14.0)
65
- formatador (>= 0.2.4)
66
- listen (>= 2.7, < 4.0)
67
- lumberjack (~> 1.0)
68
- nenv (~> 0.1)
69
- notiffany (~> 0.0)
70
- pry (>= 0.9.12)
71
- shellany (~> 0.0)
72
- thor (>= 0.18.1)
73
- guard-compat (1.2.1)
74
- guard-rspec (4.7.3)
75
- guard (~> 2.1)
76
- guard-compat (~> 1.1)
77
- rspec (>= 2.99.0, < 4.0)
78
- guard-rubocop (1.2.0)
79
- guard (~> 2.0)
80
- rubocop (~> 0.20)
81
- i18n (0.7.0)
82
- ice_nine (0.11.2)
83
- interception (0.5)
84
- json (2.0.2)
85
- listen (3.1.5)
86
- rb-fsevent (~> 0.9, >= 0.9.4)
87
- rb-inotify (~> 0.9, >= 0.9.7)
88
- ruby_dep (~> 1.2)
89
- lumberjack (1.0.10)
90
- memoizable (0.4.2)
91
- thread_safe (~> 0.3, >= 0.3.1)
92
- method_source (0.8.2)
93
- minitest (5.9.0)
94
- nenv (0.3.0)
95
- notiffany (0.1.1)
96
- nenv (~> 0.1)
97
- shellany (~> 0.0)
98
- parser (2.3.1.2)
99
- ast (~> 2.2)
100
- powerpack (0.1.1)
101
- proc_to_ast (0.1.0)
102
- coderay
103
- parser
104
- unparser
105
- procto (0.0.3)
106
- pry (0.10.4)
107
- coderay (~> 1.1.0)
108
- method_source (~> 0.8.1)
109
- slop (~> 3.4)
110
- pry-doc (0.9.0)
111
- pry (~> 0.9)
112
- yard (~> 0.8)
113
- pry-inline (1.0.2)
114
- pry (~> 0.10.0)
115
- unicode (~> 0.4.4)
116
- pry-rescue (1.4.4)
117
- interception (>= 0.5)
118
- pry
119
- pry-stack_explorer (0.4.9.2)
120
- binding_of_caller (>= 0.7)
121
- pry (>= 0.9.11)
122
- rainbow (2.1.0)
123
- rake (10.5.0)
124
- rb-fsevent (0.9.7)
125
- rb-inotify (0.9.7)
126
- ffi (>= 0.5.0)
127
- retryable (2.0.4)
128
- rspec (3.5.0)
129
- rspec-core (~> 3.5.0)
130
- rspec-expectations (~> 3.5.0)
131
- rspec-mocks (~> 3.5.0)
132
- rspec-core (3.5.2)
133
- rspec-support (~> 3.5.0)
134
- rspec-expectations (3.5.0)
135
- diff-lcs (>= 1.2.0, < 2.0)
136
- rspec-support (~> 3.5.0)
137
- rspec-mocks (3.5.0)
138
- diff-lcs (>= 1.2.0, < 2.0)
139
- rspec-support (~> 3.5.0)
140
- rspec-parameterized (0.3.0)
141
- binding_of_caller
142
- parser
143
- proc_to_ast
144
- rspec (>= 2.13, < 4)
145
- unparser
146
- rspec-support (3.5.0)
147
- rubocop (0.42.0)
148
- parser (>= 2.3.1.1, < 3.0)
149
- powerpack (~> 0.1)
150
- rainbow (>= 1.99.1, < 3.0)
151
- ruby-progressbar (~> 1.7)
152
- unicode-display_width (~> 1.0, >= 1.0.1)
153
- ruby-progressbar (1.8.1)
154
- ruby_dep (1.3.1)
155
- shellany (0.0.1)
156
- simplecov (0.12.0)
157
- docile (~> 1.1.0)
158
- json (>= 1.8, < 3)
159
- simplecov-html (~> 0.10.0)
160
- simplecov-html (0.10.0)
161
- slop (3.6.0)
162
- sqlite3 (1.3.11)
163
- thor (0.19.1)
164
- thread_safe (0.3.5)
165
- tzinfo (1.2.2)
166
- thread_safe (~> 0.1)
167
- unicode (0.4.4.2)
168
- unicode-display_width (1.1.0)
169
- unparser (0.2.5)
170
- abstract_type (~> 0.0.7)
171
- adamantium (~> 0.2.0)
172
- concord (~> 0.1.5)
173
- diff-lcs (~> 1.2.5)
174
- equalizer (~> 0.0.9)
175
- parser (~> 2.3.0)
176
- procto (~> 0.0.2)
177
- yard (0.9.5)
178
-
179
- PLATFORMS
180
- ruby
181
-
182
- DEPENDENCIES
183
- activerecord!
184
- activerecord-shard_for!
185
- appraisal
186
- arel!
187
- bundler (~> 1.11)
188
- codeclimate-test-reporter
189
- guard-rspec
190
- guard-rubocop
191
- pry
192
- pry-doc
193
- pry-inline
194
- pry-rescue
195
- pry-stack_explorer
196
- rake (~> 10.0)
197
- rspec (~> 3.0)
198
- rspec-parameterized
199
- rubocop
200
- sqlite3
201
-
202
- BUNDLED WITH
203
- 1.12.5