axlsx_rails 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/Gemfile +7 -4
- data/Gemfile.lock +129 -121
- data/Gemfile.lock.4.2 +255 -0
- data/Gemfile.lock.5.0 +261 -0
- data/Gemfile.lock.5.1 +261 -0
- data/README.md +145 -11
- data/lib/axlsx_rails.rb +2 -3
- data/lib/axlsx_rails/action_controller.rb +21 -16
- data/lib/axlsx_rails/railtie.rb +16 -0
- data/lib/axlsx_rails/template_handler.rb +19 -15
- data/lib/axlsx_rails/version.rb +3 -1
- data/spec/axlsx_builder_spec.rb +3 -2
- data/spec/axlsx_renderer_spec.rb +1 -0
- data/spec/axlsx_request_spec.rb +12 -0
- data/spec/dummy_4/app/views/layouts/users.html.erb +12 -0
- data/spec/dummy_4/app/views/users/export.xlsx.axlsx +8 -0
- data/spec/dummy_4/config/routes.rb +1 -0
- data/spec/dummy_4/log/test.log +3143 -0
- data/spec/dummy_5/app/controllers/users_controller.rb +10 -0
- data/spec/dummy_5/app/views/layouts/users.html.erb +12 -0
- data/spec/dummy_5/app/views/users/export.xlsx.axlsx +8 -0
- data/spec/dummy_5/config/routes.rb +1 -0
- data/spec/dummy_5/db/schema.rb +6 -6
- data/spec/dummy_5/db/test.sqlite3 +0 -0
- data/spec/dummy_5/log/test.log +3640 -0
- data/spec/reset_gems.sh +2 -0
- data/spec/test_5.1.sh +16 -0
- metadata +21 -6
- data/Gemfile.lock.4.0 +0 -224
- data/spec/dummy_4/db/test.sqlite3 +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fa5dc2305c594c34599d3cd8336b60e1c1471f22
|
4
|
+
data.tar.gz: 573bdc6234a061c56699b364dd1f55ac41fb167a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2029466470883c1daf81aea2ace4d8e61c4cacca54a90caeff65b27f0b0d24130b657caa2278a059709bd02155cb979ab872abb6df3292c0b9fc916f46fe8b9d
|
7
|
+
data.tar.gz: ee497dd0ce1b534a237235e7091e201ba2d76292501669073a59022193fac67907303dcf6f373d934d8e9e09e9c3db7ade2caf49a461eaf3d44a16d82c9c9410
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Change log
|
2
2
|
|
3
|
+
**May 1st, 2018**: 0.5.2 release
|
4
|
+
|
5
|
+
- Improved Rails 5 compatibility re MIME type
|
6
|
+
|
7
|
+
**March 29th, 2017**: 0.5.1 release
|
8
|
+
|
9
|
+
- Fix stack trace line numbers
|
10
|
+
- Thanks to [BenoitHiller](https://github.com/BenoitHiller)
|
11
|
+
|
3
12
|
**July 26st, 2016**: 0.5.0 release
|
4
13
|
|
5
14
|
- Support for Rails 5
|
data/Gemfile
CHANGED
@@ -8,16 +8,19 @@ gemspec
|
|
8
8
|
ENV["RAILS_VERSION"] ||= '4.2'
|
9
9
|
|
10
10
|
case ENV['RAILS_VERSION']
|
11
|
+
when '5.1'
|
12
|
+
gem 'rails', "~> 5.1.0"
|
13
|
+
gem 'responders', '~> 2.0'
|
11
14
|
when '5.0'
|
12
15
|
gem 'rails', "~> 5.0.0"
|
13
16
|
gem 'responders', '~> 2.0'
|
14
17
|
when '4.2'
|
15
18
|
gem 'rails', "~> 4.2.0"
|
16
19
|
gem 'responders', '~> 2.0'
|
17
|
-
when '4.1'
|
18
|
-
gem 'rails', "~> 4.1.0"
|
19
|
-
when '4.0'
|
20
|
-
gem 'rails', "~> 4.0.0"
|
20
|
+
# when '4.1'
|
21
|
+
# gem 'rails', "~> 4.1.0"
|
22
|
+
# when '4.0'
|
23
|
+
# gem 'rails', "~> 4.0.0"
|
21
24
|
when '3.1', '3.2'
|
22
25
|
gem 'rails', "~> #{ENV['RAILS_VERSION']}.0"
|
23
26
|
end
|
data/Gemfile.lock
CHANGED
@@ -10,84 +10,88 @@ GIT
|
|
10
10
|
PATH
|
11
11
|
remote: .
|
12
12
|
specs:
|
13
|
-
axlsx_rails (0.5.
|
13
|
+
axlsx_rails (0.5.2)
|
14
14
|
actionpack (>= 3.1)
|
15
15
|
axlsx (>= 2.0.1)
|
16
16
|
|
17
17
|
GEM
|
18
18
|
remote: http://rubygems.org/
|
19
19
|
specs:
|
20
|
-
|
21
|
-
actionpack (=
|
22
|
-
|
23
|
-
|
20
|
+
actioncable (5.1.6)
|
21
|
+
actionpack (= 5.1.6)
|
22
|
+
nio4r (~> 2.0)
|
23
|
+
websocket-driver (~> 0.6.1)
|
24
|
+
actionmailer (5.1.6)
|
25
|
+
actionpack (= 5.1.6)
|
26
|
+
actionview (= 5.1.6)
|
27
|
+
activejob (= 5.1.6)
|
24
28
|
mail (~> 2.5, >= 2.5.4)
|
25
|
-
rails-dom-testing (~>
|
26
|
-
actionpack (
|
27
|
-
actionview (=
|
28
|
-
activesupport (=
|
29
|
-
rack (~>
|
30
|
-
rack-test (
|
31
|
-
rails-dom-testing (~>
|
29
|
+
rails-dom-testing (~> 2.0)
|
30
|
+
actionpack (5.1.6)
|
31
|
+
actionview (= 5.1.6)
|
32
|
+
activesupport (= 5.1.6)
|
33
|
+
rack (~> 2.0)
|
34
|
+
rack-test (>= 0.6.3)
|
35
|
+
rails-dom-testing (~> 2.0)
|
32
36
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
33
|
-
actionview (
|
34
|
-
activesupport (=
|
37
|
+
actionview (5.1.6)
|
38
|
+
activesupport (= 5.1.6)
|
35
39
|
builder (~> 3.1)
|
36
|
-
|
37
|
-
rails-dom-testing (~>
|
40
|
+
erubi (~> 1.4)
|
41
|
+
rails-dom-testing (~> 2.0)
|
38
42
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
39
|
-
activejob (
|
40
|
-
activesupport (=
|
41
|
-
globalid (>= 0.3.
|
42
|
-
activemodel (
|
43
|
-
activesupport (=
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
i18n (
|
43
|
+
activejob (5.1.6)
|
44
|
+
activesupport (= 5.1.6)
|
45
|
+
globalid (>= 0.3.6)
|
46
|
+
activemodel (5.1.6)
|
47
|
+
activesupport (= 5.1.6)
|
48
|
+
activerecord (5.1.6)
|
49
|
+
activemodel (= 5.1.6)
|
50
|
+
activesupport (= 5.1.6)
|
51
|
+
arel (~> 8.0)
|
52
|
+
activesupport (5.1.6)
|
53
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
54
|
+
i18n (>= 0.7, < 2)
|
51
55
|
minitest (~> 5.1)
|
52
|
-
thread_safe (~> 0.3, >= 0.3.4)
|
53
56
|
tzinfo (~> 1.1)
|
54
|
-
addressable (2.5.
|
55
|
-
public_suffix (
|
56
|
-
arel (
|
57
|
+
addressable (2.5.2)
|
58
|
+
public_suffix (>= 2.0.2, < 4.0)
|
59
|
+
arel (8.0.0)
|
57
60
|
axlsx (2.0.1)
|
58
61
|
htmlentities (~> 4.3.1)
|
59
62
|
nokogiri (>= 1.4.1)
|
60
63
|
rubyzip (~> 1.0.0)
|
61
64
|
builder (3.2.3)
|
62
|
-
capybara (2.
|
65
|
+
capybara (2.18.0)
|
63
66
|
addressable
|
64
|
-
|
67
|
+
mini_mime (>= 0.1.3)
|
65
68
|
nokogiri (>= 1.3.3)
|
66
69
|
rack (>= 1.0.0)
|
67
70
|
rack-test (>= 0.5.4)
|
68
|
-
xpath (
|
69
|
-
coderay (1.1.
|
71
|
+
xpath (>= 2.0, < 4.0)
|
72
|
+
coderay (1.1.2)
|
70
73
|
concurrent-ruby (1.0.5)
|
71
|
-
coveralls (0.8.
|
74
|
+
coveralls (0.8.21)
|
72
75
|
json (>= 1.8, < 3)
|
73
|
-
simplecov (~> 0.
|
76
|
+
simplecov (~> 0.14.1)
|
74
77
|
term-ansicolor (~> 1.3)
|
75
|
-
thor (~> 0.19.
|
78
|
+
thor (~> 0.19.4)
|
76
79
|
tins (~> 1.6)
|
77
|
-
|
80
|
+
crass (1.0.4)
|
81
|
+
daemons (1.2.6)
|
78
82
|
diff-lcs (1.3)
|
79
83
|
docile (1.1.5)
|
80
|
-
|
81
|
-
eventmachine (1.2.
|
82
|
-
ffi (1.9.
|
84
|
+
erubi (1.7.1)
|
85
|
+
eventmachine (1.2.6)
|
86
|
+
ffi (1.9.23)
|
83
87
|
formatador (0.2.5)
|
84
|
-
globalid (0.
|
85
|
-
activesupport (>= 4.
|
88
|
+
globalid (0.4.1)
|
89
|
+
activesupport (>= 4.2.0)
|
86
90
|
growl (1.0.3)
|
87
|
-
guard (2.14.
|
91
|
+
guard (2.14.2)
|
88
92
|
formatador (>= 0.2.4)
|
89
93
|
listen (>= 2.7, < 4.0)
|
90
|
-
lumberjack (
|
94
|
+
lumberjack (>= 1.0.12, < 2.0)
|
91
95
|
nenv (~> 0.1)
|
92
96
|
notiffany (~> 0.0)
|
93
97
|
pry (>= 0.9.12)
|
@@ -99,30 +103,31 @@ GEM
|
|
99
103
|
guard-compat (~> 1.1)
|
100
104
|
rspec (>= 2.99.0, < 4.0)
|
101
105
|
htmlentities (4.3.4)
|
102
|
-
i18n (0.
|
103
|
-
|
106
|
+
i18n (1.0.1)
|
107
|
+
concurrent-ruby (~> 1.0)
|
108
|
+
jquery-rails (4.3.3)
|
104
109
|
rails-dom-testing (>= 1, < 3)
|
105
110
|
railties (>= 4.2.0)
|
106
111
|
thor (>= 0.14, < 2.0)
|
107
|
-
json (2.0
|
112
|
+
json (2.1.0)
|
108
113
|
listen (3.1.5)
|
109
114
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
110
115
|
rb-inotify (~> 0.9, >= 0.9.7)
|
111
116
|
ruby_dep (~> 1.2)
|
112
|
-
loofah (2.
|
117
|
+
loofah (2.2.2)
|
118
|
+
crass (~> 1.0.2)
|
113
119
|
nokogiri (>= 1.5.9)
|
114
|
-
lumberjack (1.0.
|
115
|
-
mail (2.
|
116
|
-
|
120
|
+
lumberjack (1.0.13)
|
121
|
+
mail (2.7.0)
|
122
|
+
mini_mime (>= 0.1.1)
|
117
123
|
method_source (0.8.2)
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
mini_portile2 (2.1.0)
|
122
|
-
minitest (5.10.1)
|
124
|
+
mini_mime (1.0.0)
|
125
|
+
mini_portile2 (2.3.0)
|
126
|
+
minitest (5.11.3)
|
123
127
|
nenv (0.3.0)
|
124
|
-
|
125
|
-
|
128
|
+
nio4r (2.3.1)
|
129
|
+
nokogiri (1.8.2)
|
130
|
+
mini_portile2 (~> 2.3.0)
|
126
131
|
notiffany (0.1.1)
|
127
132
|
nenv (~> 0.1)
|
128
133
|
shellany (~> 0.0)
|
@@ -132,98 +137,101 @@ GEM
|
|
132
137
|
slop (~> 3.4)
|
133
138
|
pry-nav (0.2.4)
|
134
139
|
pry (>= 0.9.10, < 0.11.0)
|
135
|
-
public_suffix (
|
136
|
-
rack (
|
137
|
-
rack-test (0.
|
138
|
-
rack (>= 1.0)
|
139
|
-
rails (
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
activesupport (= 4.2.8)
|
140
|
+
public_suffix (3.0.2)
|
141
|
+
rack (2.0.5)
|
142
|
+
rack-test (1.0.0)
|
143
|
+
rack (>= 1.0, < 3)
|
144
|
+
rails (5.1.6)
|
145
|
+
actioncable (= 5.1.6)
|
146
|
+
actionmailer (= 5.1.6)
|
147
|
+
actionpack (= 5.1.6)
|
148
|
+
actionview (= 5.1.6)
|
149
|
+
activejob (= 5.1.6)
|
150
|
+
activemodel (= 5.1.6)
|
151
|
+
activerecord (= 5.1.6)
|
152
|
+
activesupport (= 5.1.6)
|
153
|
+
bundler (>= 1.3.0)
|
154
|
+
railties (= 5.1.6)
|
155
|
+
sprockets-rails (>= 2.0.0)
|
156
|
+
rails-dom-testing (2.0.3)
|
157
|
+
activesupport (>= 4.2.0)
|
158
|
+
nokogiri (>= 1.6)
|
159
|
+
rails-html-sanitizer (1.0.4)
|
160
|
+
loofah (~> 2.2, >= 2.2.2)
|
161
|
+
railties (5.1.6)
|
162
|
+
actionpack (= 5.1.6)
|
163
|
+
activesupport (= 5.1.6)
|
164
|
+
method_source
|
161
165
|
rake (>= 0.8.7)
|
162
166
|
thor (>= 0.18.1, < 2.0)
|
163
|
-
rake (12.
|
164
|
-
rb-fsevent (0.
|
165
|
-
rb-inotify (0.9.
|
166
|
-
ffi (>= 0.5.0)
|
167
|
-
responders (2.
|
168
|
-
|
167
|
+
rake (12.3.1)
|
168
|
+
rb-fsevent (0.10.3)
|
169
|
+
rb-inotify (0.9.10)
|
170
|
+
ffi (>= 0.5.0, < 2)
|
171
|
+
responders (2.4.0)
|
172
|
+
actionpack (>= 4.2.0, < 5.3)
|
173
|
+
railties (>= 4.2.0, < 5.3)
|
169
174
|
roo (1.13.2)
|
170
175
|
nokogiri
|
171
176
|
rubyzip
|
172
177
|
spreadsheet (> 0.6.4)
|
173
|
-
rspec (3.
|
174
|
-
rspec-core (~> 3.
|
175
|
-
rspec-expectations (~> 3.
|
176
|
-
rspec-mocks (~> 3.
|
177
|
-
rspec-core (3.
|
178
|
-
rspec-support (~> 3.
|
179
|
-
rspec-expectations (3.
|
178
|
+
rspec (3.7.0)
|
179
|
+
rspec-core (~> 3.7.0)
|
180
|
+
rspec-expectations (~> 3.7.0)
|
181
|
+
rspec-mocks (~> 3.7.0)
|
182
|
+
rspec-core (3.7.1)
|
183
|
+
rspec-support (~> 3.7.0)
|
184
|
+
rspec-expectations (3.7.0)
|
180
185
|
diff-lcs (>= 1.2.0, < 2.0)
|
181
|
-
rspec-support (~> 3.
|
182
|
-
rspec-mocks (3.
|
186
|
+
rspec-support (~> 3.7.0)
|
187
|
+
rspec-mocks (3.7.0)
|
183
188
|
diff-lcs (>= 1.2.0, < 2.0)
|
184
|
-
rspec-support (~> 3.
|
185
|
-
rspec-rails (3.
|
189
|
+
rspec-support (~> 3.7.0)
|
190
|
+
rspec-rails (3.7.2)
|
186
191
|
actionpack (>= 3.0)
|
187
192
|
activesupport (>= 3.0)
|
188
193
|
railties (>= 3.0)
|
189
|
-
rspec-core (~> 3.
|
190
|
-
rspec-expectations (~> 3.
|
191
|
-
rspec-mocks (~> 3.
|
192
|
-
rspec-support (~> 3.
|
193
|
-
rspec-support (3.
|
194
|
+
rspec-core (~> 3.7.0)
|
195
|
+
rspec-expectations (~> 3.7.0)
|
196
|
+
rspec-mocks (~> 3.7.0)
|
197
|
+
rspec-support (~> 3.7.0)
|
198
|
+
rspec-support (3.7.1)
|
194
199
|
ruby-ole (1.2.12.1)
|
195
200
|
ruby_dep (1.5.0)
|
196
201
|
rubyzip (1.0.0)
|
197
202
|
shellany (0.0.1)
|
198
|
-
simplecov (0.
|
203
|
+
simplecov (0.14.1)
|
199
204
|
docile (~> 1.1.0)
|
200
205
|
json (>= 1.8, < 3)
|
201
206
|
simplecov-html (~> 0.10.0)
|
202
|
-
simplecov-html (0.10.
|
207
|
+
simplecov-html (0.10.2)
|
203
208
|
slop (3.6.0)
|
204
|
-
spreadsheet (1.1.
|
209
|
+
spreadsheet (1.1.7)
|
205
210
|
ruby-ole (>= 1.0)
|
206
211
|
sprockets (3.7.1)
|
207
212
|
concurrent-ruby (~> 1.0)
|
208
213
|
rack (> 1, < 3)
|
209
|
-
sprockets-rails (3.2.
|
214
|
+
sprockets-rails (3.2.1)
|
210
215
|
actionpack (>= 4.0)
|
211
216
|
activesupport (>= 4.0)
|
212
217
|
sprockets (>= 3.0.0)
|
213
218
|
sqlite3 (1.3.13)
|
214
|
-
term-ansicolor (1.
|
219
|
+
term-ansicolor (1.6.0)
|
215
220
|
tins (~> 1.0)
|
216
|
-
thin (1.7.
|
221
|
+
thin (1.7.2)
|
217
222
|
daemons (~> 1.0, >= 1.0.9)
|
218
223
|
eventmachine (~> 1.0, >= 1.0.4)
|
219
224
|
rack (>= 1, < 3)
|
220
225
|
thor (0.19.4)
|
221
226
|
thread_safe (0.3.6)
|
222
|
-
tins (1.
|
223
|
-
tzinfo (1.2.
|
227
|
+
tins (1.16.3)
|
228
|
+
tzinfo (1.2.5)
|
224
229
|
thread_safe (~> 0.1)
|
225
|
-
|
226
|
-
|
230
|
+
websocket-driver (0.6.5)
|
231
|
+
websocket-extensions (>= 0.1.0)
|
232
|
+
websocket-extensions (0.1.3)
|
233
|
+
xpath (3.0.0)
|
234
|
+
nokogiri (~> 1.8)
|
227
235
|
|
228
236
|
PLATFORMS
|
229
237
|
ruby
|
@@ -239,7 +247,7 @@ DEPENDENCIES
|
|
239
247
|
jquery-rails
|
240
248
|
pry
|
241
249
|
pry-nav
|
242
|
-
rails (~>
|
250
|
+
rails (~> 5.1.0)
|
243
251
|
rake
|
244
252
|
rb-fsevent
|
245
253
|
responders (~> 2.0)
|
@@ -250,4 +258,4 @@ DEPENDENCIES
|
|
250
258
|
thin
|
251
259
|
|
252
260
|
BUNDLED WITH
|
253
|
-
1.
|
261
|
+
1.15.0
|
data/Gemfile.lock.4.2
ADDED
@@ -0,0 +1,255 @@
|
|
1
|
+
GIT
|
2
|
+
remote: git://github.com/straydogstudio/acts_as_xlsx.git
|
3
|
+
revision: 94fc6aa730bb8f252e75c9debdcf64903d33fede
|
4
|
+
specs:
|
5
|
+
acts_as_xlsx (1.0.6)
|
6
|
+
activerecord (>= 2.3.9)
|
7
|
+
axlsx (>= 1.0.13)
|
8
|
+
i18n (>= 0.4.1)
|
9
|
+
|
10
|
+
PATH
|
11
|
+
remote: .
|
12
|
+
specs:
|
13
|
+
axlsx_rails (0.5.2)
|
14
|
+
actionpack (>= 3.1)
|
15
|
+
axlsx (>= 2.0.1)
|
16
|
+
|
17
|
+
GEM
|
18
|
+
remote: http://rubygems.org/
|
19
|
+
specs:
|
20
|
+
actionmailer (4.2.10)
|
21
|
+
actionpack (= 4.2.10)
|
22
|
+
actionview (= 4.2.10)
|
23
|
+
activejob (= 4.2.10)
|
24
|
+
mail (~> 2.5, >= 2.5.4)
|
25
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
26
|
+
actionpack (4.2.10)
|
27
|
+
actionview (= 4.2.10)
|
28
|
+
activesupport (= 4.2.10)
|
29
|
+
rack (~> 1.6)
|
30
|
+
rack-test (~> 0.6.2)
|
31
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
32
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
33
|
+
actionview (4.2.10)
|
34
|
+
activesupport (= 4.2.10)
|
35
|
+
builder (~> 3.1)
|
36
|
+
erubis (~> 2.7.0)
|
37
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
38
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
39
|
+
activejob (4.2.10)
|
40
|
+
activesupport (= 4.2.10)
|
41
|
+
globalid (>= 0.3.0)
|
42
|
+
activemodel (4.2.10)
|
43
|
+
activesupport (= 4.2.10)
|
44
|
+
builder (~> 3.1)
|
45
|
+
activerecord (4.2.10)
|
46
|
+
activemodel (= 4.2.10)
|
47
|
+
activesupport (= 4.2.10)
|
48
|
+
arel (~> 6.0)
|
49
|
+
activesupport (4.2.10)
|
50
|
+
i18n (~> 0.7)
|
51
|
+
minitest (~> 5.1)
|
52
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
53
|
+
tzinfo (~> 1.1)
|
54
|
+
addressable (2.5.2)
|
55
|
+
public_suffix (>= 2.0.2, < 4.0)
|
56
|
+
arel (6.0.4)
|
57
|
+
axlsx (2.0.1)
|
58
|
+
htmlentities (~> 4.3.1)
|
59
|
+
nokogiri (>= 1.4.1)
|
60
|
+
rubyzip (~> 1.0.0)
|
61
|
+
builder (3.2.3)
|
62
|
+
capybara (2.18.0)
|
63
|
+
addressable
|
64
|
+
mini_mime (>= 0.1.3)
|
65
|
+
nokogiri (>= 1.3.3)
|
66
|
+
rack (>= 1.0.0)
|
67
|
+
rack-test (>= 0.5.4)
|
68
|
+
xpath (>= 2.0, < 4.0)
|
69
|
+
coderay (1.1.2)
|
70
|
+
concurrent-ruby (1.0.5)
|
71
|
+
coveralls (0.8.21)
|
72
|
+
json (>= 1.8, < 3)
|
73
|
+
simplecov (~> 0.14.1)
|
74
|
+
term-ansicolor (~> 1.3)
|
75
|
+
thor (~> 0.19.4)
|
76
|
+
tins (~> 1.6)
|
77
|
+
crass (1.0.4)
|
78
|
+
daemons (1.2.6)
|
79
|
+
diff-lcs (1.3)
|
80
|
+
docile (1.1.5)
|
81
|
+
erubis (2.7.0)
|
82
|
+
eventmachine (1.2.6)
|
83
|
+
ffi (1.9.23)
|
84
|
+
formatador (0.2.5)
|
85
|
+
globalid (0.4.1)
|
86
|
+
activesupport (>= 4.2.0)
|
87
|
+
growl (1.0.3)
|
88
|
+
guard (2.14.2)
|
89
|
+
formatador (>= 0.2.4)
|
90
|
+
listen (>= 2.7, < 4.0)
|
91
|
+
lumberjack (>= 1.0.12, < 2.0)
|
92
|
+
nenv (~> 0.1)
|
93
|
+
notiffany (~> 0.0)
|
94
|
+
pry (>= 0.9.12)
|
95
|
+
shellany (~> 0.0)
|
96
|
+
thor (>= 0.18.1)
|
97
|
+
guard-compat (1.2.1)
|
98
|
+
guard-rspec (4.7.3)
|
99
|
+
guard (~> 2.1)
|
100
|
+
guard-compat (~> 1.1)
|
101
|
+
rspec (>= 2.99.0, < 4.0)
|
102
|
+
htmlentities (4.3.4)
|
103
|
+
i18n (0.9.5)
|
104
|
+
concurrent-ruby (~> 1.0)
|
105
|
+
jquery-rails (4.3.3)
|
106
|
+
rails-dom-testing (>= 1, < 3)
|
107
|
+
railties (>= 4.2.0)
|
108
|
+
thor (>= 0.14, < 2.0)
|
109
|
+
json (2.1.0)
|
110
|
+
listen (3.1.5)
|
111
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
112
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
113
|
+
ruby_dep (~> 1.2)
|
114
|
+
loofah (2.2.2)
|
115
|
+
crass (~> 1.0.2)
|
116
|
+
nokogiri (>= 1.5.9)
|
117
|
+
lumberjack (1.0.13)
|
118
|
+
mail (2.7.0)
|
119
|
+
mini_mime (>= 0.1.1)
|
120
|
+
method_source (0.8.2)
|
121
|
+
mini_mime (1.0.0)
|
122
|
+
mini_portile2 (2.3.0)
|
123
|
+
minitest (5.11.3)
|
124
|
+
nenv (0.3.0)
|
125
|
+
nokogiri (1.8.2)
|
126
|
+
mini_portile2 (~> 2.3.0)
|
127
|
+
notiffany (0.1.1)
|
128
|
+
nenv (~> 0.1)
|
129
|
+
shellany (~> 0.0)
|
130
|
+
pry (0.10.4)
|
131
|
+
coderay (~> 1.1.0)
|
132
|
+
method_source (~> 0.8.1)
|
133
|
+
slop (~> 3.4)
|
134
|
+
pry-nav (0.2.4)
|
135
|
+
pry (>= 0.9.10, < 0.11.0)
|
136
|
+
public_suffix (3.0.2)
|
137
|
+
rack (1.6.10)
|
138
|
+
rack-test (0.6.3)
|
139
|
+
rack (>= 1.0)
|
140
|
+
rails (4.2.10)
|
141
|
+
actionmailer (= 4.2.10)
|
142
|
+
actionpack (= 4.2.10)
|
143
|
+
actionview (= 4.2.10)
|
144
|
+
activejob (= 4.2.10)
|
145
|
+
activemodel (= 4.2.10)
|
146
|
+
activerecord (= 4.2.10)
|
147
|
+
activesupport (= 4.2.10)
|
148
|
+
bundler (>= 1.3.0, < 2.0)
|
149
|
+
railties (= 4.2.10)
|
150
|
+
sprockets-rails
|
151
|
+
rails-deprecated_sanitizer (1.0.3)
|
152
|
+
activesupport (>= 4.2.0.alpha)
|
153
|
+
rails-dom-testing (1.0.9)
|
154
|
+
activesupport (>= 4.2.0, < 5.0)
|
155
|
+
nokogiri (~> 1.6)
|
156
|
+
rails-deprecated_sanitizer (>= 1.0.1)
|
157
|
+
rails-html-sanitizer (1.0.4)
|
158
|
+
loofah (~> 2.2, >= 2.2.2)
|
159
|
+
railties (4.2.10)
|
160
|
+
actionpack (= 4.2.10)
|
161
|
+
activesupport (= 4.2.10)
|
162
|
+
rake (>= 0.8.7)
|
163
|
+
thor (>= 0.18.1, < 2.0)
|
164
|
+
rake (12.3.1)
|
165
|
+
rb-fsevent (0.10.3)
|
166
|
+
rb-inotify (0.9.10)
|
167
|
+
ffi (>= 0.5.0, < 2)
|
168
|
+
responders (2.4.0)
|
169
|
+
actionpack (>= 4.2.0, < 5.3)
|
170
|
+
railties (>= 4.2.0, < 5.3)
|
171
|
+
roo (1.13.2)
|
172
|
+
nokogiri
|
173
|
+
rubyzip
|
174
|
+
spreadsheet (> 0.6.4)
|
175
|
+
rspec (3.7.0)
|
176
|
+
rspec-core (~> 3.7.0)
|
177
|
+
rspec-expectations (~> 3.7.0)
|
178
|
+
rspec-mocks (~> 3.7.0)
|
179
|
+
rspec-core (3.7.1)
|
180
|
+
rspec-support (~> 3.7.0)
|
181
|
+
rspec-expectations (3.7.0)
|
182
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
183
|
+
rspec-support (~> 3.7.0)
|
184
|
+
rspec-mocks (3.7.0)
|
185
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
186
|
+
rspec-support (~> 3.7.0)
|
187
|
+
rspec-rails (3.7.2)
|
188
|
+
actionpack (>= 3.0)
|
189
|
+
activesupport (>= 3.0)
|
190
|
+
railties (>= 3.0)
|
191
|
+
rspec-core (~> 3.7.0)
|
192
|
+
rspec-expectations (~> 3.7.0)
|
193
|
+
rspec-mocks (~> 3.7.0)
|
194
|
+
rspec-support (~> 3.7.0)
|
195
|
+
rspec-support (3.7.1)
|
196
|
+
ruby-ole (1.2.12.1)
|
197
|
+
ruby_dep (1.5.0)
|
198
|
+
rubyzip (1.0.0)
|
199
|
+
shellany (0.0.1)
|
200
|
+
simplecov (0.14.1)
|
201
|
+
docile (~> 1.1.0)
|
202
|
+
json (>= 1.8, < 3)
|
203
|
+
simplecov-html (~> 0.10.0)
|
204
|
+
simplecov-html (0.10.2)
|
205
|
+
slop (3.6.0)
|
206
|
+
spreadsheet (1.1.7)
|
207
|
+
ruby-ole (>= 1.0)
|
208
|
+
sprockets (3.7.1)
|
209
|
+
concurrent-ruby (~> 1.0)
|
210
|
+
rack (> 1, < 3)
|
211
|
+
sprockets-rails (3.2.1)
|
212
|
+
actionpack (>= 4.0)
|
213
|
+
activesupport (>= 4.0)
|
214
|
+
sprockets (>= 3.0.0)
|
215
|
+
sqlite3 (1.3.13)
|
216
|
+
term-ansicolor (1.6.0)
|
217
|
+
tins (~> 1.0)
|
218
|
+
thin (1.7.2)
|
219
|
+
daemons (~> 1.0, >= 1.0.9)
|
220
|
+
eventmachine (~> 1.0, >= 1.0.4)
|
221
|
+
rack (>= 1, < 3)
|
222
|
+
thor (0.19.4)
|
223
|
+
thread_safe (0.3.6)
|
224
|
+
tins (1.16.3)
|
225
|
+
tzinfo (1.2.5)
|
226
|
+
thread_safe (~> 0.1)
|
227
|
+
xpath (3.0.0)
|
228
|
+
nokogiri (~> 1.8)
|
229
|
+
|
230
|
+
PLATFORMS
|
231
|
+
ruby
|
232
|
+
|
233
|
+
DEPENDENCIES
|
234
|
+
acts_as_xlsx!
|
235
|
+
axlsx_rails!
|
236
|
+
bundler
|
237
|
+
capybara (~> 2.1)
|
238
|
+
coveralls
|
239
|
+
growl
|
240
|
+
guard-rspec
|
241
|
+
jquery-rails
|
242
|
+
pry
|
243
|
+
pry-nav
|
244
|
+
rails (~> 4.2.0)
|
245
|
+
rake
|
246
|
+
rb-fsevent
|
247
|
+
responders (~> 2.0)
|
248
|
+
roo
|
249
|
+
rspec-rails
|
250
|
+
rubyzip
|
251
|
+
sqlite3
|
252
|
+
thin
|
253
|
+
|
254
|
+
BUNDLED WITH
|
255
|
+
1.15.0
|