activeadmin-reform 0.5.0 → 0.6.0

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: 20aac74c3b069849ab30b8a6d86dac61eced4bc3
4
- data.tar.gz: 658f0480a2294b5377de8cd8e7eae1e9d0bc5c4a
3
+ metadata.gz: cf2905c75fe58d4d71a55c5714e9cff57f552ab5
4
+ data.tar.gz: c64470b91cc8cff396615411200c71564a8f9937
5
5
  SHA512:
6
- metadata.gz: c44d4a98f4eed68d61fe62551979c81494263fbc0aaf6fcb6362acc1d03747adffe7482205c4a0c6fc5f93dd02e6a75c7ac8dc6e4227d943a03e1f9b21db9365
7
- data.tar.gz: 91ccfaff245d43740bbeff0c4044f2d63357f87217b40d76aa5f3a4569469327e39c5dfbd728b8e2d224af25de1ed8b1f81a0096a4cae41c860726ae513b9918
6
+ metadata.gz: '0378cfd493e49cf65c363501677fe04b109dd36cfefc16b5b1a31ec85f79177469b135ffef15a4c41ddbd649bfbd77997fb83e79f220451083e1cc36a654d971'
7
+ data.tar.gz: ea853d83b47b5c4229a4b1e07bb8dede8762646a562da74bb7656a29d2ab3ccde0771e45f172054edae05ef57a7969355d398b54a7d3484e4845486b12a8cd98
@@ -0,0 +1 @@
1
+ 2.2.2
@@ -2,15 +2,25 @@
2
2
  language: ruby
3
3
  rvm:
4
4
  - 2.2.2
5
+ - 2.4.1
5
6
  before_script:
6
7
  - "./bin/setup"
7
8
  script:
8
9
  - bundle exec rake spec
9
10
  - bundle exec rubocop --fail-level C
10
11
  gemfile:
11
- - gemfiles/rails_4.2.10_activeadmin_1.2.1_reform_2.3.0.rc1_reform_rails_0.2.0.rc2.gemfile
12
+ - gemfiles/rails_5.2.0_activeadmin___github___activeadmin___reform_2.3.0.rc1_reform_rails_0.2.0.rc2_bootsnap_1.3.1.gemfile
13
+ - gemfiles/rails_4.2.10_activeadmin___github___activeadmin___reform_2.3.0.rc1_reform_rails_0.2.0.rc2.gemfile
12
14
  - gemfiles/rails_4.2.10_activeadmin_1.2.1_reform_2.2.4_reform_rails_0.1.7.gemfile
13
15
  - gemfiles/rails_3.2.22.5_activeadmin_1.0.0.pre5_reform_2.2.4_reform_rails_0.1.7.gemfile
16
+ matrix:
17
+ exclude:
18
+ - rvm: 2.2.2
19
+ gemfile: gemfiles/rails_5.2.0_activeadmin___github___activeadmin___reform_2.3.0.rc1_reform_rails_0.2.0.rc2_bootsnap_1.3.1.gemfile
20
+ - rvm: 2.2.2
21
+ gemfile: gemfiles/rails_4.2.10_activeadmin___github___activeadmin___reform_2.3.0.rc1_reform_rails_0.2.0.rc2.gemfile
22
+ - rvm: 2.4.1
23
+ gemfile: gemfiles/rails_3.2.22.5_activeadmin_1.0.0.pre5_reform_2.2.4_reform_rails_0.1.7.gemfile
14
24
  addons:
15
25
  code_climate:
16
26
  repo_token: c326cca5984d0e32d2c6b5d9b985756ee9312f63fc6a9480fc9cfa55c454d68a
data/Appraisals CHANGED
@@ -1,18 +1,19 @@
1
1
  require 'yaml'
2
2
 
3
- ruby_versions = %w(2.2.2)
3
+ ruby_versions = %w(2.2.2 2.4.1)
4
4
 
5
5
  [
6
6
  { rails: '3.2.22.5', activeadmin: '1.0.0.pre5', reform: '2.2.4', 'reform-rails': '0.1.7' },
7
7
  { rails: '4.2.10', activeadmin: '1.2.1', reform: '2.2.4', 'reform-rails': '0.1.7' },
8
- { rails: '4.2.10', activeadmin: '1.2.1', reform: '2.3.0.rc1', 'reform-rails': '0.2.0.rc2' },
9
- # { rails: '5.1.4', activeadmin: '1.2.1', reform: '2.3.0.rc1', 'reform-rails': '0.2.0.rc2' },
8
+ { rails: '4.2.10', activeadmin: { github: 'activeadmin' }, reform: '2.3.0.rc1', 'reform-rails': '0.2.0.rc2' },
9
+ { rails: '5.2.0', activeadmin: { github: 'activeadmin' }, reform: '2.3.0.rc1', 'reform-rails': '0.2.0.rc2', bootsnap: '1.3.1' },
10
10
  ].each do |deps|
11
11
  appraise deps.map { |name, requirement| "#{name}-#{requirement}" }.join('_') do
12
12
  deps.each { |name, requirement| gem name, requirement }
13
13
  end
14
14
  end
15
15
 
16
+ gemfiles = Dir.glob('gemfiles/*.gemfile')
16
17
  travis = ::YAML.dump(
17
18
  'language' => 'ruby',
18
19
  'rvm' => ruby_versions,
@@ -23,7 +24,16 @@ travis = ::YAML.dump(
23
24
  'bundle exec rake spec',
24
25
  'bundle exec rubocop --fail-level C'
25
26
  ],
26
- 'gemfile' => Dir.glob('gemfiles/*.gemfile'),
27
+ 'gemfile' => gemfiles,
28
+ 'matrix' => {
29
+ 'exclude' =>
30
+ gemfiles
31
+ .select { |gemfile| gemfile.include?('activeadmin___github___activeadmin') }
32
+ .map { |gemfile| { 'rvm' => '2.2.2', 'gemfile' => gemfile } } +
33
+ gemfiles
34
+ .select { |gemfile| gemfile.include?('rails_3.2.22.5') }
35
+ .map { |gemfile| { 'rvm' => '2.4.1', 'gemfile' => gemfile } },
36
+ },
27
37
  'addons' => {
28
38
  'code_climate' => {
29
39
  'repo_token' => 'c326cca5984d0e32d2c6b5d9b985756ee9312f63fc6a9480fc9cfa55c454d68a'
@@ -1,3 +1,7 @@
1
+ # 0.6.0
2
+
3
+ * Support Rails 5
4
+
1
5
  # 0.5.0
2
6
 
3
7
  * Support Reform s2.3.0.rc1
@@ -4,22 +4,22 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'activeadmin-reform'
7
- spec.version = '0.5.0'
7
+ spec.version = '0.6.0'
8
8
  spec.authors = ['Artyom Bolshakov']
9
- spec.email = ['abolshakov@spbtv.com']
9
+ spec.email = ['either.free@gmail.com']
10
10
 
11
11
  spec.summary = 'Integrates ActiveAdmin with Reform'
12
12
  spec.description = 'Provides ability to use form object in your ActiveAdmin application'
13
13
  spec.homepage = 'https://github.com/bolshakov/activeadmin-reform'
14
14
  spec.license = 'MIT'
15
15
 
16
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|gemfiles)/}) }
17
17
  spec.bindir = 'exe'
18
18
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
19
  spec.require_paths = ['lib']
20
20
 
21
- spec.add_dependency 'rails', ['>= 3.2.22.5', '<= 4.2.10']
22
- spec.add_dependency 'activeadmin', ['>= 1.0.0.pre5', '<= 1.2.1']
21
+ spec.add_dependency 'rails', ['>= 3.2.22.5', '< 5.3']
22
+ spec.add_dependency 'activeadmin', ['>= 1.0.0.pre5', '<= 2.0.0.alpha']
23
23
  spec.add_dependency 'disposable', '>= 0.2.0'
24
24
  spec.add_dependency 'reform', '<= 2.3.0.rc1'
25
25
  spec.add_dependency 'reform-rails', '<= 0.2.0.rc2'
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
27
27
  spec.add_development_dependency 'bundler', '~> 1.10'
28
28
  spec.add_development_dependency 'capybara', '2.17.0'
29
29
  spec.add_development_dependency 'codeclimate-test-reporter', '~> 0.4.8'
30
- spec.add_development_dependency 'database_cleaner', '~> 1.5.1'
30
+ spec.add_development_dependency 'database_cleaner'
31
31
  spec.add_development_dependency 'launchy', '~> 2.4.3'
32
32
  spec.add_development_dependency 'poltergeist'
33
33
  spec.add_development_dependency 'rake', '~> 10.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeadmin-reform
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artyom Bolshakov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-06-15 00:00:00.000000000 Z
11
+ date: 2018-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -17,9 +17,9 @@ dependencies:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 3.2.22.5
20
- - - "<="
20
+ - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: 4.2.10
22
+ version: '5.3'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -27,9 +27,9 @@ dependencies:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
29
  version: 3.2.22.5
30
- - - "<="
30
+ - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: 4.2.10
32
+ version: '5.3'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: activeadmin
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -39,7 +39,7 @@ dependencies:
39
39
  version: 1.0.0.pre5
40
40
  - - "<="
41
41
  - !ruby/object:Gem::Version
42
- version: 1.2.1
42
+ version: 2.0.0.alpha
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
@@ -49,7 +49,7 @@ dependencies:
49
49
  version: 1.0.0.pre5
50
50
  - - "<="
51
51
  - !ruby/object:Gem::Version
52
- version: 1.2.1
52
+ version: 2.0.0.alpha
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: disposable
55
55
  requirement: !ruby/object:Gem::Requirement
@@ -152,16 +152,16 @@ dependencies:
152
152
  name: database_cleaner
153
153
  requirement: !ruby/object:Gem::Requirement
154
154
  requirements:
155
- - - "~>"
155
+ - - ">="
156
156
  - !ruby/object:Gem::Version
157
- version: 1.5.1
157
+ version: '0'
158
158
  type: :development
159
159
  prerelease: false
160
160
  version_requirements: !ruby/object:Gem::Requirement
161
161
  requirements:
162
- - - "~>"
162
+ - - ">="
163
163
  - !ruby/object:Gem::Version
164
- version: 1.5.1
164
+ version: '0'
165
165
  - !ruby/object:Gem::Dependency
166
166
  name: launchy
167
167
  requirement: !ruby/object:Gem::Requirement
@@ -276,7 +276,7 @@ dependencies:
276
276
  version: '3.0'
277
277
  description: Provides ability to use form object in your ActiveAdmin application
278
278
  email:
279
- - abolshakov@spbtv.com
279
+ - either.free@gmail.com
280
280
  executables: []
281
281
  extensions: []
282
282
  extra_rdoc_files: []
@@ -288,6 +288,7 @@ files:
288
288
  - ".hound.yml"
289
289
  - ".rspec"
290
290
  - ".rubocop.yml"
291
+ - ".ruby-version"
291
292
  - ".travis.yml"
292
293
  - Appraisals
293
294
  - CHANGELOG.md
@@ -300,12 +301,6 @@ files:
300
301
  - activeadmin-reform.gemspec
301
302
  - bin/console
302
303
  - bin/setup
303
- - gemfiles/rails_3.2.22.5_activeadmin_1.0.0.pre5_reform_2.2.4_reform_rails_0.1.7.gemfile
304
- - gemfiles/rails_3.2.22.5_activeadmin_1.0.0.pre5_reform_2.2.4_reform_rails_0.1.7.gemfile.lock
305
- - gemfiles/rails_4.2.10_activeadmin_1.2.1_reform_2.2.4_reform_rails_0.1.7.gemfile
306
- - gemfiles/rails_4.2.10_activeadmin_1.2.1_reform_2.2.4_reform_rails_0.1.7.gemfile.lock
307
- - gemfiles/rails_4.2.10_activeadmin_1.2.1_reform_2.3.0.rc1_reform_rails_0.2.0.rc2.gemfile
308
- - gemfiles/rails_4.2.10_activeadmin_1.2.1_reform_2.3.0.rc1_reform_rails_0.2.0.rc2.gemfile.lock
309
304
  - lib/active_admin/reform.rb
310
305
  - lib/active_admin/reform/active_record.rb
311
306
  - lib/active_admin/reform/dsl.rb
@@ -340,4 +335,3 @@ signing_key:
340
335
  specification_version: 4
341
336
  summary: Integrates ActiveAdmin with Reform
342
337
  test_files: []
343
- has_rdoc:
@@ -1,10 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rails", "3.2.22.5"
6
- gem "activeadmin", "1.0.0.pre5"
7
- gem "reform", "2.2.4"
8
- gem "reform-rails", "0.1.7"
9
-
10
- gemspec path: "../"
@@ -1,294 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- activeadmin-reform (0.4.0)
5
- activeadmin (>= 1.0.0.pre5, <= 1.2.1)
6
- disposable (>= 0.2.0)
7
- rails (>= 3.2.22.5, <= 4.2.10)
8
- reform (<= 2.3.0.rc1)
9
- reform-rails (<= 0.2.0.rc2)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- actionmailer (3.2.22.5)
15
- actionpack (= 3.2.22.5)
16
- mail (~> 2.5.4)
17
- actionpack (3.2.22.5)
18
- activemodel (= 3.2.22.5)
19
- activesupport (= 3.2.22.5)
20
- builder (~> 3.0.0)
21
- erubis (~> 2.7.0)
22
- journey (~> 1.0.4)
23
- rack (~> 1.4.5)
24
- rack-cache (~> 1.2)
25
- rack-test (~> 0.6.1)
26
- sprockets (~> 2.2.1)
27
- activeadmin (1.0.0.pre5)
28
- arbre (~> 1.0, >= 1.0.2)
29
- bourbon
30
- coffee-rails
31
- formtastic (~> 3.1)
32
- formtastic_i18n
33
- inherited_resources (~> 1.6)
34
- jquery-rails
35
- jquery-ui-rails
36
- kaminari (>= 0.15, < 2.0)
37
- railties (>= 3.2, < 5.1)
38
- ransack (~> 1.3)
39
- sass-rails
40
- sprockets (< 4.1)
41
- activemodel (3.2.22.5)
42
- activesupport (= 3.2.22.5)
43
- builder (~> 3.0.0)
44
- activerecord (3.2.22.5)
45
- activemodel (= 3.2.22.5)
46
- activesupport (= 3.2.22.5)
47
- arel (~> 3.0.2)
48
- tzinfo (~> 0.3.29)
49
- activeresource (3.2.22.5)
50
- activemodel (= 3.2.22.5)
51
- activesupport (= 3.2.22.5)
52
- activesupport (3.2.22.5)
53
- i18n (~> 0.6, >= 0.6.4)
54
- multi_json (~> 1.0)
55
- addressable (2.5.2)
56
- public_suffix (>= 2.0.2, < 4.0)
57
- appraisal (2.2.0)
58
- bundler
59
- rake
60
- thor (>= 0.14.0)
61
- arbre (1.1.1)
62
- activesupport (>= 3.0.0)
63
- arel (3.0.3)
64
- ast (2.3.0)
65
- bourbon (5.0.0)
66
- sass (~> 3.4)
67
- thor (~> 0.19)
68
- builder (3.0.4)
69
- capybara (2.17.0)
70
- addressable
71
- mini_mime (>= 0.1.3)
72
- nokogiri (>= 1.3.3)
73
- rack (>= 1.0.0)
74
- rack-test (>= 0.5.4)
75
- xpath (>= 2.0, < 4.0)
76
- cliver (0.3.2)
77
- codeclimate-test-reporter (0.4.8)
78
- simplecov (>= 0.7.1, < 1.0.0)
79
- coffee-rails (3.2.2)
80
- coffee-script (>= 2.2.0)
81
- railties (~> 3.2.0)
82
- coffee-script (2.4.1)
83
- coffee-script-source
84
- execjs
85
- coffee-script-source (1.12.2)
86
- concurrent-ruby (1.0.5)
87
- database_cleaner (1.5.3)
88
- declarative (0.0.10)
89
- declarative-builder (0.1.0)
90
- declarative-option (< 0.2.0)
91
- declarative-option (0.1.0)
92
- diff-lcs (1.3)
93
- disposable (0.4.3)
94
- declarative (>= 0.0.9, < 1.0.0)
95
- declarative-builder (< 0.2.0)
96
- declarative-option (< 0.2.0)
97
- representable (>= 2.4.0, <= 3.1.0)
98
- uber (< 0.2.0)
99
- docile (1.1.5)
100
- erubis (2.7.0)
101
- execjs (2.7.0)
102
- ffi (1.9.18)
103
- formtastic (3.1.5)
104
- actionpack (>= 3.2.13)
105
- formtastic_i18n (0.6.0)
106
- has_scope (0.6.0)
107
- actionpack (>= 3.2, < 5)
108
- activesupport (>= 3.2, < 5)
109
- hike (1.2.3)
110
- i18n (0.9.1)
111
- concurrent-ruby (~> 1.0)
112
- inherited_resources (1.7.2)
113
- actionpack (>= 3.2, < 5.2.x)
114
- has_scope (~> 0.6)
115
- railties (>= 3.2, < 5.2.x)
116
- responders
117
- journey (1.0.4)
118
- jquery-rails (3.1.4)
119
- railties (>= 3.0, < 5.0)
120
- thor (>= 0.14, < 2.0)
121
- jquery-ui-rails (6.0.1)
122
- railties (>= 3.2.16)
123
- json (1.8.6)
124
- kaminari (0.17.0)
125
- actionpack (>= 3.0.0)
126
- activesupport (>= 3.0.0)
127
- launchy (2.4.3)
128
- addressable (~> 2.3)
129
- mail (2.5.5)
130
- mime-types (~> 1.16)
131
- treetop (~> 1.4.8)
132
- mime-types (1.25.1)
133
- mini_mime (1.0.0)
134
- mini_portile2 (2.3.0)
135
- multi_json (1.13.1)
136
- nokogiri (1.8.1)
137
- mini_portile2 (~> 2.3.0)
138
- parser (2.4.0.2)
139
- ast (~> 2.3)
140
- poltergeist (1.17.0)
141
- capybara (~> 2.1)
142
- cliver (~> 0.3.1)
143
- websocket-driver (>= 0.2.0)
144
- polyamorous (1.3.2)
145
- activerecord (>= 3.0)
146
- polyglot (0.3.5)
147
- power_assert (1.1.1)
148
- powerpack (0.1.1)
149
- public_suffix (3.0.1)
150
- rack (1.4.7)
151
- rack-cache (1.7.1)
152
- rack (>= 0.4)
153
- rack-ssl (1.3.4)
154
- rack
155
- rack-test (0.6.3)
156
- rack (>= 1.0)
157
- rails (3.2.22.5)
158
- actionmailer (= 3.2.22.5)
159
- actionpack (= 3.2.22.5)
160
- activerecord (= 3.2.22.5)
161
- activeresource (= 3.2.22.5)
162
- activesupport (= 3.2.22.5)
163
- bundler (~> 1.0)
164
- railties (= 3.2.22.5)
165
- railties (3.2.22.5)
166
- actionpack (= 3.2.22.5)
167
- activesupport (= 3.2.22.5)
168
- rack-ssl (~> 1.3.2)
169
- rake (>= 0.8.7)
170
- rdoc (~> 3.4)
171
- thor (>= 0.14.6, < 2.0)
172
- rainbow (2.2.2)
173
- rake
174
- rake (10.5.0)
175
- ransack (1.8.4)
176
- actionpack (>= 3.0)
177
- activerecord (>= 3.0)
178
- activesupport (>= 3.0)
179
- i18n
180
- polyamorous (~> 1.3)
181
- rb-fsevent (0.10.2)
182
- rb-inotify (0.9.10)
183
- ffi (>= 0.5.0, < 2)
184
- rdoc (3.12.2)
185
- json (~> 1.4)
186
- reform (2.2.4)
187
- disposable (>= 0.4.1)
188
- representable (>= 2.4.0, < 3.1.0)
189
- reform-rails (0.1.7)
190
- activemodel (>= 3.2)
191
- reform (>= 2.2.0)
192
- representable (3.0.4)
193
- declarative (< 0.1.0)
194
- declarative-option (< 0.2.0)
195
- uber (< 0.2.0)
196
- responders (1.1.2)
197
- railties (>= 3.2, < 4.2)
198
- rspec (3.7.0)
199
- rspec-core (~> 3.7.0)
200
- rspec-expectations (~> 3.7.0)
201
- rspec-mocks (~> 3.7.0)
202
- rspec-core (3.7.1)
203
- rspec-support (~> 3.7.0)
204
- rspec-expectations (3.7.0)
205
- diff-lcs (>= 1.2.0, < 2.0)
206
- rspec-support (~> 3.7.0)
207
- rspec-mocks (3.7.0)
208
- diff-lcs (>= 1.2.0, < 2.0)
209
- rspec-support (~> 3.7.0)
210
- rspec-rails (3.7.2)
211
- actionpack (>= 3.0)
212
- activesupport (>= 3.0)
213
- railties (>= 3.0)
214
- rspec-core (~> 3.7.0)
215
- rspec-expectations (~> 3.7.0)
216
- rspec-mocks (~> 3.7.0)
217
- rspec-support (~> 3.7.0)
218
- rspec-support (3.7.0)
219
- rspec_junit_formatter (0.3.0)
220
- rspec-core (>= 2, < 4, != 2.12.0)
221
- rubocop (0.40.0)
222
- parser (>= 2.3.1.0, < 3.0)
223
- powerpack (~> 0.1)
224
- rainbow (>= 1.99.1, < 3.0)
225
- ruby-progressbar (~> 1.7)
226
- unicode-display_width (~> 1.0, >= 1.0.1)
227
- rubocop-checkstyle_formatter (0.4.0)
228
- rubocop (>= 0.35.1)
229
- ruby-progressbar (1.9.0)
230
- sass (3.5.5)
231
- sass-listen (~> 4.0.0)
232
- sass-listen (4.0.0)
233
- rb-fsevent (~> 0.9, >= 0.9.4)
234
- rb-inotify (~> 0.9, >= 0.9.7)
235
- sass-rails (3.2.6)
236
- railties (~> 3.2.0)
237
- sass (>= 3.1.10)
238
- tilt (~> 1.3)
239
- simplecov (0.15.1)
240
- docile (~> 1.1.0)
241
- json (>= 1.8, < 3)
242
- simplecov-html (~> 0.10.0)
243
- simplecov-html (0.10.2)
244
- spbtv_code_style (1.4.1)
245
- rspec_junit_formatter
246
- rubocop (= 0.40.0)
247
- rubocop-checkstyle_formatter
248
- sprockets (2.2.3)
249
- hike (~> 1.2)
250
- multi_json (~> 1.0)
251
- rack (~> 1.0)
252
- tilt (~> 1.1, != 1.3.0)
253
- sqlite3 (1.3.13)
254
- test-unit (3.2.7)
255
- power_assert
256
- thor (0.20.0)
257
- tilt (1.4.1)
258
- treetop (1.4.15)
259
- polyglot
260
- polyglot (>= 0.3.1)
261
- tzinfo (0.3.53)
262
- uber (0.1.0)
263
- unicode-display_width (1.3.0)
264
- websocket-driver (0.7.0)
265
- websocket-extensions (>= 0.1.0)
266
- websocket-extensions (0.1.3)
267
- xpath (3.0.0)
268
- nokogiri (~> 1.8)
269
-
270
- PLATFORMS
271
- ruby
272
-
273
- DEPENDENCIES
274
- activeadmin (= 1.0.0.pre5)
275
- activeadmin-reform!
276
- appraisal (= 2.2.0)
277
- bundler (~> 1.10)
278
- capybara (= 2.17.0)
279
- codeclimate-test-reporter (~> 0.4.8)
280
- database_cleaner (~> 1.5.1)
281
- launchy (~> 2.4.3)
282
- poltergeist
283
- rails (= 3.2.22.5)
284
- rake (~> 10.0)
285
- reform (= 2.2.4)
286
- reform-rails (= 0.1.7)
287
- rspec (~> 3.4)
288
- rspec-rails
289
- spbtv_code_style (~> 1.4.1)
290
- sqlite3 (~> 1.3.11)
291
- test-unit (~> 3.0)
292
-
293
- BUNDLED WITH
294
- 1.16.1
@@ -1,10 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rails", "4.2.10"
6
- gem "activeadmin", "1.2.1"
7
- gem "reform", "2.2.4"
8
- gem "reform-rails", "0.1.7"
9
-
10
- gemspec path: "../"
@@ -1,305 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- activeadmin-reform (0.4.0)
5
- activeadmin (>= 1.0.0.pre5, <= 1.2.1)
6
- disposable (>= 0.2.0)
7
- rails (>= 3.2.22.5, <= 4.2.10)
8
- reform (<= 2.3.0.rc1)
9
- reform-rails (<= 0.2.0.rc2)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- actionmailer (4.2.10)
15
- actionpack (= 4.2.10)
16
- actionview (= 4.2.10)
17
- activejob (= 4.2.10)
18
- mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 1.0, >= 1.0.5)
20
- actionpack (4.2.10)
21
- actionview (= 4.2.10)
22
- activesupport (= 4.2.10)
23
- rack (~> 1.6)
24
- rack-test (~> 0.6.2)
25
- rails-dom-testing (~> 1.0, >= 1.0.5)
26
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (4.2.10)
28
- activesupport (= 4.2.10)
29
- builder (~> 3.1)
30
- erubis (~> 2.7.0)
31
- rails-dom-testing (~> 1.0, >= 1.0.5)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activeadmin (1.2.1)
34
- arbre (>= 1.1.1)
35
- coffee-rails
36
- formtastic (~> 3.1)
37
- formtastic_i18n
38
- inherited_resources (~> 1.7)
39
- jquery-rails (>= 4.2.0)
40
- kaminari (>= 0.15, < 2.0)
41
- railties (>= 4.2, < 5.2)
42
- ransack (~> 1.3)
43
- sass (~> 3.1)
44
- sprockets (< 4.1)
45
- activejob (4.2.10)
46
- activesupport (= 4.2.10)
47
- globalid (>= 0.3.0)
48
- activemodel (4.2.10)
49
- activesupport (= 4.2.10)
50
- builder (~> 3.1)
51
- activerecord (4.2.10)
52
- activemodel (= 4.2.10)
53
- activesupport (= 4.2.10)
54
- arel (~> 6.0)
55
- activesupport (4.2.10)
56
- i18n (~> 0.7)
57
- minitest (~> 5.1)
58
- thread_safe (~> 0.3, >= 0.3.4)
59
- tzinfo (~> 1.1)
60
- addressable (2.5.2)
61
- public_suffix (>= 2.0.2, < 4.0)
62
- appraisal (2.2.0)
63
- bundler
64
- rake
65
- thor (>= 0.14.0)
66
- arbre (1.1.1)
67
- activesupport (>= 3.0.0)
68
- arel (6.0.4)
69
- ast (2.3.0)
70
- builder (3.2.3)
71
- capybara (2.17.0)
72
- addressable
73
- mini_mime (>= 0.1.3)
74
- nokogiri (>= 1.3.3)
75
- rack (>= 1.0.0)
76
- rack-test (>= 0.5.4)
77
- xpath (>= 2.0, < 4.0)
78
- cliver (0.3.2)
79
- codeclimate-test-reporter (0.4.8)
80
- simplecov (>= 0.7.1, < 1.0.0)
81
- coffee-rails (4.2.2)
82
- coffee-script (>= 2.2.0)
83
- railties (>= 4.0.0)
84
- coffee-script (2.4.1)
85
- coffee-script-source
86
- execjs
87
- coffee-script-source (1.12.2)
88
- concurrent-ruby (1.0.5)
89
- crass (1.0.3)
90
- database_cleaner (1.5.3)
91
- declarative (0.0.10)
92
- declarative-builder (0.1.0)
93
- declarative-option (< 0.2.0)
94
- declarative-option (0.1.0)
95
- diff-lcs (1.3)
96
- disposable (0.4.3)
97
- declarative (>= 0.0.9, < 1.0.0)
98
- declarative-builder (< 0.2.0)
99
- declarative-option (< 0.2.0)
100
- representable (>= 2.4.0, <= 3.1.0)
101
- uber (< 0.2.0)
102
- docile (1.1.5)
103
- erubis (2.7.0)
104
- execjs (2.7.0)
105
- ffi (1.9.18)
106
- formtastic (3.1.5)
107
- actionpack (>= 3.2.13)
108
- formtastic_i18n (0.6.0)
109
- globalid (0.4.1)
110
- activesupport (>= 4.2.0)
111
- has_scope (0.7.1)
112
- actionpack (>= 4.1, < 5.2)
113
- activesupport (>= 4.1, < 5.2)
114
- i18n (0.9.1)
115
- concurrent-ruby (~> 1.0)
116
- inherited_resources (1.8.0)
117
- actionpack (>= 4.2, <= 5.2)
118
- has_scope (~> 0.6)
119
- railties (>= 4.2, <= 5.2)
120
- responders
121
- jquery-rails (4.3.1)
122
- rails-dom-testing (>= 1, < 3)
123
- railties (>= 4.2.0)
124
- thor (>= 0.14, < 2.0)
125
- json (2.1.0)
126
- kaminari (1.1.1)
127
- activesupport (>= 4.1.0)
128
- kaminari-actionview (= 1.1.1)
129
- kaminari-activerecord (= 1.1.1)
130
- kaminari-core (= 1.1.1)
131
- kaminari-actionview (1.1.1)
132
- actionview
133
- kaminari-core (= 1.1.1)
134
- kaminari-activerecord (1.1.1)
135
- activerecord
136
- kaminari-core (= 1.1.1)
137
- kaminari-core (1.1.1)
138
- launchy (2.4.3)
139
- addressable (~> 2.3)
140
- loofah (2.1.1)
141
- crass (~> 1.0.2)
142
- nokogiri (>= 1.5.9)
143
- mail (2.7.0)
144
- mini_mime (>= 0.1.1)
145
- mini_mime (1.0.0)
146
- mini_portile2 (2.3.0)
147
- minitest (5.11.1)
148
- nokogiri (1.8.1)
149
- mini_portile2 (~> 2.3.0)
150
- parser (2.4.0.2)
151
- ast (~> 2.3)
152
- poltergeist (1.17.0)
153
- capybara (~> 2.1)
154
- cliver (~> 0.3.1)
155
- websocket-driver (>= 0.2.0)
156
- polyamorous (1.3.2)
157
- activerecord (>= 3.0)
158
- power_assert (1.1.1)
159
- powerpack (0.1.1)
160
- public_suffix (3.0.1)
161
- rack (1.6.8)
162
- rack-test (0.6.3)
163
- rack (>= 1.0)
164
- rails (4.2.10)
165
- actionmailer (= 4.2.10)
166
- actionpack (= 4.2.10)
167
- actionview (= 4.2.10)
168
- activejob (= 4.2.10)
169
- activemodel (= 4.2.10)
170
- activerecord (= 4.2.10)
171
- activesupport (= 4.2.10)
172
- bundler (>= 1.3.0, < 2.0)
173
- railties (= 4.2.10)
174
- sprockets-rails
175
- rails-deprecated_sanitizer (1.0.3)
176
- activesupport (>= 4.2.0.alpha)
177
- rails-dom-testing (1.0.9)
178
- activesupport (>= 4.2.0, < 5.0)
179
- nokogiri (~> 1.6)
180
- rails-deprecated_sanitizer (>= 1.0.1)
181
- rails-html-sanitizer (1.0.3)
182
- loofah (~> 2.0)
183
- railties (4.2.10)
184
- actionpack (= 4.2.10)
185
- activesupport (= 4.2.10)
186
- rake (>= 0.8.7)
187
- thor (>= 0.18.1, < 2.0)
188
- rainbow (2.2.2)
189
- rake
190
- rake (10.5.0)
191
- ransack (1.8.4)
192
- actionpack (>= 3.0)
193
- activerecord (>= 3.0)
194
- activesupport (>= 3.0)
195
- i18n
196
- polyamorous (~> 1.3)
197
- rb-fsevent (0.10.2)
198
- rb-inotify (0.9.10)
199
- ffi (>= 0.5.0, < 2)
200
- reform (2.2.4)
201
- disposable (>= 0.4.1)
202
- representable (>= 2.4.0, < 3.1.0)
203
- reform-rails (0.1.7)
204
- activemodel (>= 3.2)
205
- reform (>= 2.2.0)
206
- representable (3.0.4)
207
- declarative (< 0.1.0)
208
- declarative-option (< 0.2.0)
209
- uber (< 0.2.0)
210
- responders (2.4.0)
211
- actionpack (>= 4.2.0, < 5.3)
212
- railties (>= 4.2.0, < 5.3)
213
- rspec (3.7.0)
214
- rspec-core (~> 3.7.0)
215
- rspec-expectations (~> 3.7.0)
216
- rspec-mocks (~> 3.7.0)
217
- rspec-core (3.7.1)
218
- rspec-support (~> 3.7.0)
219
- rspec-expectations (3.7.0)
220
- diff-lcs (>= 1.2.0, < 2.0)
221
- rspec-support (~> 3.7.0)
222
- rspec-mocks (3.7.0)
223
- diff-lcs (>= 1.2.0, < 2.0)
224
- rspec-support (~> 3.7.0)
225
- rspec-rails (3.7.2)
226
- actionpack (>= 3.0)
227
- activesupport (>= 3.0)
228
- railties (>= 3.0)
229
- rspec-core (~> 3.7.0)
230
- rspec-expectations (~> 3.7.0)
231
- rspec-mocks (~> 3.7.0)
232
- rspec-support (~> 3.7.0)
233
- rspec-support (3.7.0)
234
- rspec_junit_formatter (0.3.0)
235
- rspec-core (>= 2, < 4, != 2.12.0)
236
- rubocop (0.40.0)
237
- parser (>= 2.3.1.0, < 3.0)
238
- powerpack (~> 0.1)
239
- rainbow (>= 1.99.1, < 3.0)
240
- ruby-progressbar (~> 1.7)
241
- unicode-display_width (~> 1.0, >= 1.0.1)
242
- rubocop-checkstyle_formatter (0.4.0)
243
- rubocop (>= 0.35.1)
244
- ruby-progressbar (1.9.0)
245
- sass (3.5.5)
246
- sass-listen (~> 4.0.0)
247
- sass-listen (4.0.0)
248
- rb-fsevent (~> 0.9, >= 0.9.4)
249
- rb-inotify (~> 0.9, >= 0.9.7)
250
- simplecov (0.15.1)
251
- docile (~> 1.1.0)
252
- json (>= 1.8, < 3)
253
- simplecov-html (~> 0.10.0)
254
- simplecov-html (0.10.2)
255
- spbtv_code_style (1.4.1)
256
- rspec_junit_formatter
257
- rubocop (= 0.40.0)
258
- rubocop-checkstyle_formatter
259
- sprockets (3.7.1)
260
- concurrent-ruby (~> 1.0)
261
- rack (> 1, < 3)
262
- sprockets-rails (3.2.1)
263
- actionpack (>= 4.0)
264
- activesupport (>= 4.0)
265
- sprockets (>= 3.0.0)
266
- sqlite3 (1.3.13)
267
- test-unit (3.2.7)
268
- power_assert
269
- thor (0.20.0)
270
- thread_safe (0.3.6)
271
- tzinfo (1.2.4)
272
- thread_safe (~> 0.1)
273
- uber (0.1.0)
274
- unicode-display_width (1.3.0)
275
- websocket-driver (0.7.0)
276
- websocket-extensions (>= 0.1.0)
277
- websocket-extensions (0.1.3)
278
- xpath (3.0.0)
279
- nokogiri (~> 1.8)
280
-
281
- PLATFORMS
282
- ruby
283
-
284
- DEPENDENCIES
285
- activeadmin (= 1.2.1)
286
- activeadmin-reform!
287
- appraisal (= 2.2.0)
288
- bundler (~> 1.10)
289
- capybara (= 2.17.0)
290
- codeclimate-test-reporter (~> 0.4.8)
291
- database_cleaner (~> 1.5.1)
292
- launchy (~> 2.4.3)
293
- poltergeist
294
- rails (= 4.2.10)
295
- rake (~> 10.0)
296
- reform (= 2.2.4)
297
- reform-rails (= 0.1.7)
298
- rspec (~> 3.4)
299
- rspec-rails
300
- spbtv_code_style (~> 1.4.1)
301
- sqlite3 (~> 1.3.11)
302
- test-unit (~> 3.0)
303
-
304
- BUNDLED WITH
305
- 1.16.1
@@ -1,10 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rails", "4.2.10"
6
- gem "activeadmin", "1.2.1"
7
- gem "reform", "2.3.0.rc1"
8
- gem "reform-rails", "0.2.0.rc2"
9
-
10
- gemspec path: "../"
@@ -1,306 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- activeadmin-reform (0.4.0)
5
- activeadmin (>= 1.0.0.pre5, <= 1.2.1)
6
- disposable (>= 0.2.0)
7
- rails (>= 3.2.22.5, <= 4.2.10)
8
- reform (<= 2.3.0.rc1)
9
- reform-rails (<= 0.2.0.rc2)
10
-
11
- GEM
12
- remote: https://rubygems.org/
13
- specs:
14
- actionmailer (4.2.10)
15
- actionpack (= 4.2.10)
16
- actionview (= 4.2.10)
17
- activejob (= 4.2.10)
18
- mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 1.0, >= 1.0.5)
20
- actionpack (4.2.10)
21
- actionview (= 4.2.10)
22
- activesupport (= 4.2.10)
23
- rack (~> 1.6)
24
- rack-test (~> 0.6.2)
25
- rails-dom-testing (~> 1.0, >= 1.0.5)
26
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (4.2.10)
28
- activesupport (= 4.2.10)
29
- builder (~> 3.1)
30
- erubis (~> 2.7.0)
31
- rails-dom-testing (~> 1.0, >= 1.0.5)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activeadmin (1.2.1)
34
- arbre (>= 1.1.1)
35
- coffee-rails
36
- formtastic (~> 3.1)
37
- formtastic_i18n
38
- inherited_resources (~> 1.7)
39
- jquery-rails (>= 4.2.0)
40
- kaminari (>= 0.15, < 2.0)
41
- railties (>= 4.2, < 5.2)
42
- ransack (~> 1.3)
43
- sass (~> 3.1)
44
- sprockets (< 4.1)
45
- activejob (4.2.10)
46
- activesupport (= 4.2.10)
47
- globalid (>= 0.3.0)
48
- activemodel (4.2.10)
49
- activesupport (= 4.2.10)
50
- builder (~> 3.1)
51
- activerecord (4.2.10)
52
- activemodel (= 4.2.10)
53
- activesupport (= 4.2.10)
54
- arel (~> 6.0)
55
- activesupport (4.2.10)
56
- i18n (~> 0.7)
57
- minitest (~> 5.1)
58
- thread_safe (~> 0.3, >= 0.3.4)
59
- tzinfo (~> 1.1)
60
- addressable (2.5.2)
61
- public_suffix (>= 2.0.2, < 4.0)
62
- appraisal (2.2.0)
63
- bundler
64
- rake
65
- thor (>= 0.14.0)
66
- arbre (1.1.1)
67
- activesupport (>= 3.0.0)
68
- arel (6.0.4)
69
- ast (2.3.0)
70
- builder (3.2.3)
71
- capybara (2.17.0)
72
- addressable
73
- mini_mime (>= 0.1.3)
74
- nokogiri (>= 1.3.3)
75
- rack (>= 1.0.0)
76
- rack-test (>= 0.5.4)
77
- xpath (>= 2.0, < 4.0)
78
- cliver (0.3.2)
79
- codeclimate-test-reporter (0.4.8)
80
- simplecov (>= 0.7.1, < 1.0.0)
81
- coffee-rails (4.2.2)
82
- coffee-script (>= 2.2.0)
83
- railties (>= 4.0.0)
84
- coffee-script (2.4.1)
85
- coffee-script-source
86
- execjs
87
- coffee-script-source (1.12.2)
88
- concurrent-ruby (1.0.5)
89
- crass (1.0.3)
90
- database_cleaner (1.5.3)
91
- declarative (0.0.10)
92
- declarative-builder (0.1.0)
93
- declarative-option (< 0.2.0)
94
- declarative-option (0.1.0)
95
- diff-lcs (1.3)
96
- disposable (0.4.3)
97
- declarative (>= 0.0.9, < 1.0.0)
98
- declarative-builder (< 0.2.0)
99
- declarative-option (< 0.2.0)
100
- representable (>= 2.4.0, <= 3.1.0)
101
- uber (< 0.2.0)
102
- docile (1.1.5)
103
- erubis (2.7.0)
104
- execjs (2.7.0)
105
- ffi (1.9.18)
106
- formtastic (3.1.5)
107
- actionpack (>= 3.2.13)
108
- formtastic_i18n (0.6.0)
109
- globalid (0.4.1)
110
- activesupport (>= 4.2.0)
111
- has_scope (0.7.1)
112
- actionpack (>= 4.1, < 5.2)
113
- activesupport (>= 4.1, < 5.2)
114
- i18n (0.9.1)
115
- concurrent-ruby (~> 1.0)
116
- inherited_resources (1.8.0)
117
- actionpack (>= 4.2, <= 5.2)
118
- has_scope (~> 0.6)
119
- railties (>= 4.2, <= 5.2)
120
- responders
121
- jquery-rails (4.3.1)
122
- rails-dom-testing (>= 1, < 3)
123
- railties (>= 4.2.0)
124
- thor (>= 0.14, < 2.0)
125
- json (2.1.0)
126
- kaminari (1.1.1)
127
- activesupport (>= 4.1.0)
128
- kaminari-actionview (= 1.1.1)
129
- kaminari-activerecord (= 1.1.1)
130
- kaminari-core (= 1.1.1)
131
- kaminari-actionview (1.1.1)
132
- actionview
133
- kaminari-core (= 1.1.1)
134
- kaminari-activerecord (1.1.1)
135
- activerecord
136
- kaminari-core (= 1.1.1)
137
- kaminari-core (1.1.1)
138
- launchy (2.4.3)
139
- addressable (~> 2.3)
140
- loofah (2.1.1)
141
- crass (~> 1.0.2)
142
- nokogiri (>= 1.5.9)
143
- mail (2.7.0)
144
- mini_mime (>= 0.1.1)
145
- mini_mime (1.0.0)
146
- mini_portile2 (2.3.0)
147
- minitest (5.11.1)
148
- nokogiri (1.8.1)
149
- mini_portile2 (~> 2.3.0)
150
- parser (2.4.0.2)
151
- ast (~> 2.3)
152
- poltergeist (1.17.0)
153
- capybara (~> 2.1)
154
- cliver (~> 0.3.1)
155
- websocket-driver (>= 0.2.0)
156
- polyamorous (1.3.2)
157
- activerecord (>= 3.0)
158
- power_assert (1.1.1)
159
- powerpack (0.1.1)
160
- public_suffix (3.0.1)
161
- rack (1.6.8)
162
- rack-test (0.6.3)
163
- rack (>= 1.0)
164
- rails (4.2.10)
165
- actionmailer (= 4.2.10)
166
- actionpack (= 4.2.10)
167
- actionview (= 4.2.10)
168
- activejob (= 4.2.10)
169
- activemodel (= 4.2.10)
170
- activerecord (= 4.2.10)
171
- activesupport (= 4.2.10)
172
- bundler (>= 1.3.0, < 2.0)
173
- railties (= 4.2.10)
174
- sprockets-rails
175
- rails-deprecated_sanitizer (1.0.3)
176
- activesupport (>= 4.2.0.alpha)
177
- rails-dom-testing (1.0.9)
178
- activesupport (>= 4.2.0, < 5.0)
179
- nokogiri (~> 1.6)
180
- rails-deprecated_sanitizer (>= 1.0.1)
181
- rails-html-sanitizer (1.0.3)
182
- loofah (~> 2.0)
183
- railties (4.2.10)
184
- actionpack (= 4.2.10)
185
- activesupport (= 4.2.10)
186
- rake (>= 0.8.7)
187
- thor (>= 0.18.1, < 2.0)
188
- rainbow (2.2.2)
189
- rake
190
- rake (10.5.0)
191
- ransack (1.8.4)
192
- actionpack (>= 3.0)
193
- activerecord (>= 3.0)
194
- activesupport (>= 3.0)
195
- i18n
196
- polyamorous (~> 1.3)
197
- rb-fsevent (0.10.2)
198
- rb-inotify (0.9.10)
199
- ffi (>= 0.5.0, < 2)
200
- reform (2.3.0.rc1)
201
- disposable (>= 0.4.2, < 0.5.0)
202
- representable (>= 2.4.0, < 3.1.0)
203
- uber (< 0.2.0)
204
- reform-rails (0.2.0.rc2)
205
- activemodel (>= 3.2)
206
- reform (>= 2.3.0.rc1, < 3.0.0)
207
- representable (3.0.4)
208
- declarative (< 0.1.0)
209
- declarative-option (< 0.2.0)
210
- uber (< 0.2.0)
211
- responders (2.4.0)
212
- actionpack (>= 4.2.0, < 5.3)
213
- railties (>= 4.2.0, < 5.3)
214
- rspec (3.7.0)
215
- rspec-core (~> 3.7.0)
216
- rspec-expectations (~> 3.7.0)
217
- rspec-mocks (~> 3.7.0)
218
- rspec-core (3.7.1)
219
- rspec-support (~> 3.7.0)
220
- rspec-expectations (3.7.0)
221
- diff-lcs (>= 1.2.0, < 2.0)
222
- rspec-support (~> 3.7.0)
223
- rspec-mocks (3.7.0)
224
- diff-lcs (>= 1.2.0, < 2.0)
225
- rspec-support (~> 3.7.0)
226
- rspec-rails (3.7.2)
227
- actionpack (>= 3.0)
228
- activesupport (>= 3.0)
229
- railties (>= 3.0)
230
- rspec-core (~> 3.7.0)
231
- rspec-expectations (~> 3.7.0)
232
- rspec-mocks (~> 3.7.0)
233
- rspec-support (~> 3.7.0)
234
- rspec-support (3.7.0)
235
- rspec_junit_formatter (0.3.0)
236
- rspec-core (>= 2, < 4, != 2.12.0)
237
- rubocop (0.40.0)
238
- parser (>= 2.3.1.0, < 3.0)
239
- powerpack (~> 0.1)
240
- rainbow (>= 1.99.1, < 3.0)
241
- ruby-progressbar (~> 1.7)
242
- unicode-display_width (~> 1.0, >= 1.0.1)
243
- rubocop-checkstyle_formatter (0.4.0)
244
- rubocop (>= 0.35.1)
245
- ruby-progressbar (1.9.0)
246
- sass (3.5.5)
247
- sass-listen (~> 4.0.0)
248
- sass-listen (4.0.0)
249
- rb-fsevent (~> 0.9, >= 0.9.4)
250
- rb-inotify (~> 0.9, >= 0.9.7)
251
- simplecov (0.15.1)
252
- docile (~> 1.1.0)
253
- json (>= 1.8, < 3)
254
- simplecov-html (~> 0.10.0)
255
- simplecov-html (0.10.2)
256
- spbtv_code_style (1.4.1)
257
- rspec_junit_formatter
258
- rubocop (= 0.40.0)
259
- rubocop-checkstyle_formatter
260
- sprockets (3.7.1)
261
- concurrent-ruby (~> 1.0)
262
- rack (> 1, < 3)
263
- sprockets-rails (3.2.1)
264
- actionpack (>= 4.0)
265
- activesupport (>= 4.0)
266
- sprockets (>= 3.0.0)
267
- sqlite3 (1.3.13)
268
- test-unit (3.2.7)
269
- power_assert
270
- thor (0.20.0)
271
- thread_safe (0.3.6)
272
- tzinfo (1.2.4)
273
- thread_safe (~> 0.1)
274
- uber (0.1.0)
275
- unicode-display_width (1.3.0)
276
- websocket-driver (0.7.0)
277
- websocket-extensions (>= 0.1.0)
278
- websocket-extensions (0.1.3)
279
- xpath (3.0.0)
280
- nokogiri (~> 1.8)
281
-
282
- PLATFORMS
283
- ruby
284
-
285
- DEPENDENCIES
286
- activeadmin (= 1.2.1)
287
- activeadmin-reform!
288
- appraisal (= 2.2.0)
289
- bundler (~> 1.10)
290
- capybara (= 2.17.0)
291
- codeclimate-test-reporter (~> 0.4.8)
292
- database_cleaner (~> 1.5.1)
293
- launchy (~> 2.4.3)
294
- poltergeist
295
- rails (= 4.2.10)
296
- rake (~> 10.0)
297
- reform (= 2.3.0.rc1)
298
- reform-rails (= 0.2.0.rc2)
299
- rspec (~> 3.4)
300
- rspec-rails
301
- spbtv_code_style (~> 1.4.1)
302
- sqlite3 (~> 1.3.11)
303
- test-unit (~> 3.0)
304
-
305
- BUNDLED WITH
306
- 1.16.1