axlsx_rails 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile +9 -6
- data/Gemfile.lock +116 -115
- data/Gemfile.lock.4.0 +66 -67
- data/Gemfile.lock.4.1 +90 -91
- data/Gemfile.lock.4.2 +115 -114
- data/Gemfile.lock.5.0 +259 -0
- data/README.md +37 -4
- data/axlsx_rails.gemspec +36 -0
- data/lib/axlsx_rails/action_controller.rb +5 -1
- data/lib/axlsx_rails/template_handler.rb +1 -1
- data/lib/axlsx_rails/version.rb +1 -1
- data/spec/axlsx_builder_spec.rb +2 -2
- data/spec/axlsx_mailer_spec.rb +3 -3
- data/spec/axlsx_renderer_spec.rb +4 -3
- data/spec/axlsx_request_spec.rb +43 -30
- data/spec/ci.rb +4 -1
- data/spec/dummy/app/mailers/notifier.rb +1 -1
- data/spec/dummy/app/views/users/{mailers/instructions.xlsx.axlsx → send_instructions.xlsx.axlsx} +0 -0
- data/spec/dummy/log/test.log +0 -0
- data/spec/dummy_4/app/mailers/notifier.rb +1 -1
- data/spec/dummy_4/app/views/users/noaction.xlsx.axlsx +1 -0
- data/spec/dummy_4/app/views/users/{mailers/instructions.xlsx.axlsx → send_instructions.xlsx.axlsx} +0 -0
- data/spec/dummy_4/config/routes.rb +1 -0
- data/spec/dummy_4/db/schema.rb +2 -2
- data/spec/dummy_4/db/test.sqlite3 +0 -0
- data/spec/dummy_4/log/test.log +14792 -0
- data/spec/dummy_5/Rakefile +6 -0
- data/spec/dummy_5/app/assets/javascripts/application.js +13 -0
- data/spec/dummy_5/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy_5/app/controllers/application_controller.rb +5 -0
- data/spec/dummy_5/app/controllers/home_controller.rb +56 -0
- data/spec/dummy_5/app/controllers/likes_controller.rb +18 -0
- data/spec/dummy_5/app/controllers/users_controller.rb +27 -0
- data/spec/dummy_5/app/helpers/application_helper.rb +2 -0
- data/spec/dummy_5/app/mailers/notifier.rb +14 -0
- data/spec/dummy_5/app/models/like.rb +3 -0
- data/spec/dummy_5/app/models/user.rb +10 -0
- data/spec/dummy_5/app/views/home/_cover_sheet.xlsx.axlsx +3 -0
- data/spec/dummy_5/app/views/home/index.html.erb +4 -0
- data/spec/dummy_5/app/views/home/index.xlsx.axlsx +8 -0
- data/spec/dummy_5/app/views/home/only_html.html.erb +1 -0
- data/spec/dummy_5/app/views/home/useheader.xlsx.axlsx +8 -0
- data/spec/dummy_5/app/views/home/withpartial.xlsx.axlsx +9 -0
- data/spec/dummy_5/app/views/layouts/application.html.erb +12 -0
- data/spec/dummy_5/app/views/likes/index.html.erb +17 -0
- data/spec/dummy_5/app/views/likes/index.xlsx.axlsx +7 -0
- data/spec/dummy_5/app/views/notifier/instructions.html.erb +14 -0
- data/spec/dummy_5/app/views/notifier/instructions.txt.erb +6 -0
- data/spec/dummy_5/app/views/users/index.html.erb +23 -0
- data/spec/dummy_5/app/views/users/index.xlsx.axlsx +1 -0
- data/spec/dummy_5/app/views/users/noaction.xlsx.axlsx +1 -0
- data/spec/dummy_5/app/views/users/respond_with.xlsx.axlsx +8 -0
- data/spec/dummy_5/app/views/users/send_instructions.xlsx.axlsx +5 -0
- data/spec/dummy_5/bin/bundle +3 -0
- data/spec/dummy_5/bin/rails +4 -0
- data/spec/dummy_5/bin/rake +4 -0
- data/spec/dummy_5/config.ru +4 -0
- data/spec/dummy_5/config/application.rb +23 -0
- data/spec/dummy_5/config/boot.rb +5 -0
- data/spec/dummy_5/config/database.yml +25 -0
- data/spec/dummy_5/config/environment.rb +5 -0
- data/spec/dummy_5/config/environments/development.rb +37 -0
- data/spec/dummy_5/config/environments/production.rb +83 -0
- data/spec/dummy_5/config/environments/test.rb +40 -0
- data/spec/dummy_5/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy_5/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy_5/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy_5/config/initializers/inflections.rb +16 -0
- data/spec/dummy_5/config/initializers/mime_types.rb +4 -0
- data/spec/dummy_5/config/initializers/secret_token.rb +2 -0
- data/spec/dummy_5/config/initializers/session_store.rb +3 -0
- data/spec/dummy_5/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy_5/config/locales/en.yml +23 -0
- data/spec/dummy_5/config/routes.rb +16 -0
- data/spec/dummy_5/config/secrets.yml +22 -0
- data/spec/dummy_5/db/migrate/20120717192452_create_users.rb +12 -0
- data/spec/dummy_5/db/migrate/20121206210955_create_likes.rb +10 -0
- data/spec/dummy_5/db/schema.rb +31 -0
- data/spec/dummy_5/db/test.sqlite3 +0 -0
- data/spec/dummy_5/log/test.log +5738 -0
- data/spec/dummy_5/public/404.html +67 -0
- data/spec/dummy_5/public/422.html +67 -0
- data/spec/dummy_5/public/500.html +66 -0
- data/spec/dummy_5/public/favicon.ico +0 -0
- data/spec/spec_helper.rb +8 -2
- data/spec/test_5.0.sh +16 -0
- metadata +132 -12
- data/spec/dummy/README.rdoc +0 -261
- data/spec/dummy_4/README.rdoc +0 -28
data/Gemfile.lock.4.1
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
GIT
|
2
2
|
remote: git://github.com/straydogstudio/acts_as_xlsx.git
|
3
|
-
revision:
|
3
|
+
revision: 94fc6aa730bb8f252e75c9debdcf64903d33fede
|
4
4
|
specs:
|
5
5
|
acts_as_xlsx (1.0.6)
|
6
6
|
activerecord (>= 2.3.9)
|
@@ -11,68 +11,69 @@ PATH
|
|
11
11
|
remote: .
|
12
12
|
specs:
|
13
13
|
axlsx_rails (0.4.0)
|
14
|
+
actionpack (>= 3.1)
|
14
15
|
axlsx (>= 2.0.1)
|
15
|
-
rails (>= 3.1)
|
16
16
|
|
17
17
|
GEM
|
18
18
|
remote: http://rubygems.org/
|
19
19
|
specs:
|
20
|
-
actionmailer (4.1.
|
21
|
-
actionpack (= 4.1.
|
22
|
-
actionview (= 4.1.
|
20
|
+
actionmailer (4.1.15)
|
21
|
+
actionpack (= 4.1.15)
|
22
|
+
actionview (= 4.1.15)
|
23
23
|
mail (~> 2.5, >= 2.5.4)
|
24
|
-
actionpack (4.1.
|
25
|
-
actionview (= 4.1.
|
26
|
-
activesupport (= 4.1.
|
24
|
+
actionpack (4.1.15)
|
25
|
+
actionview (= 4.1.15)
|
26
|
+
activesupport (= 4.1.15)
|
27
27
|
rack (~> 1.5.2)
|
28
28
|
rack-test (~> 0.6.2)
|
29
|
-
actionview (4.1.
|
30
|
-
activesupport (= 4.1.
|
29
|
+
actionview (4.1.15)
|
30
|
+
activesupport (= 4.1.15)
|
31
31
|
builder (~> 3.1)
|
32
32
|
erubis (~> 2.7.0)
|
33
|
-
activemodel (4.1.
|
34
|
-
activesupport (= 4.1.
|
33
|
+
activemodel (4.1.15)
|
34
|
+
activesupport (= 4.1.15)
|
35
35
|
builder (~> 3.1)
|
36
|
-
activerecord (4.1.
|
37
|
-
activemodel (= 4.1.
|
38
|
-
activesupport (= 4.1.
|
36
|
+
activerecord (4.1.15)
|
37
|
+
activemodel (= 4.1.15)
|
38
|
+
activesupport (= 4.1.15)
|
39
39
|
arel (~> 5.0.0)
|
40
|
-
activesupport (4.1.
|
40
|
+
activesupport (4.1.15)
|
41
41
|
i18n (~> 0.6, >= 0.6.9)
|
42
42
|
json (~> 1.7, >= 1.7.7)
|
43
43
|
minitest (~> 5.1)
|
44
44
|
thread_safe (~> 0.1)
|
45
45
|
tzinfo (~> 1.1)
|
46
|
+
addressable (2.4.0)
|
46
47
|
arel (5.0.1.20140414130214)
|
47
48
|
axlsx (2.0.1)
|
48
49
|
htmlentities (~> 4.3.1)
|
49
50
|
nokogiri (>= 1.4.1)
|
50
51
|
rubyzip (~> 1.0.0)
|
51
52
|
builder (3.2.2)
|
52
|
-
capybara (2.
|
53
|
+
capybara (2.7.1)
|
54
|
+
addressable
|
53
55
|
mime-types (>= 1.16)
|
54
56
|
nokogiri (>= 1.3.3)
|
55
57
|
rack (>= 1.0.0)
|
56
58
|
rack-test (>= 0.5.4)
|
57
59
|
xpath (~> 2.0)
|
58
|
-
coderay (1.1.
|
59
|
-
|
60
|
+
coderay (1.1.1)
|
61
|
+
concurrent-ruby (1.0.2)
|
62
|
+
coveralls (0.8.13)
|
60
63
|
json (~> 1.8)
|
61
|
-
|
62
|
-
simplecov (~> 0.10.0)
|
64
|
+
simplecov (~> 0.11.0)
|
63
65
|
term-ansicolor (~> 1.3)
|
64
66
|
thor (~> 0.19.1)
|
67
|
+
tins (~> 1.6.0)
|
65
68
|
daemons (1.2.3)
|
66
69
|
diff-lcs (1.2.5)
|
67
70
|
docile (1.1.5)
|
68
|
-
domain_name (0.5.24)
|
69
|
-
unf (>= 0.0.5, < 1.0.0)
|
70
71
|
erubis (2.7.0)
|
71
|
-
eventmachine (1.0.
|
72
|
+
eventmachine (1.2.0.1)
|
72
73
|
ffi (1.9.10)
|
73
74
|
formatador (0.2.5)
|
74
75
|
growl (1.0.3)
|
75
|
-
guard (2.
|
76
|
+
guard (2.13.0)
|
76
77
|
formatador (>= 0.2.4)
|
77
78
|
listen (>= 2.7, <= 4.0)
|
78
79
|
lumberjack (~> 1.0)
|
@@ -82,36 +83,36 @@ GEM
|
|
82
83
|
shellany (~> 0.0)
|
83
84
|
thor (>= 0.18.1)
|
84
85
|
guard-compat (1.2.1)
|
85
|
-
guard-rspec (4.6.
|
86
|
+
guard-rspec (4.6.5)
|
86
87
|
guard (~> 2.1)
|
87
88
|
guard-compat (~> 1.1)
|
88
89
|
rspec (>= 2.99.0, < 4.0)
|
89
90
|
htmlentities (4.3.4)
|
90
|
-
http-cookie (1.0.2)
|
91
|
-
domain_name (~> 0.5)
|
92
91
|
i18n (0.7.0)
|
93
|
-
jquery-rails (3.1.
|
92
|
+
jquery-rails (3.1.4)
|
94
93
|
railties (>= 3.0, < 5.0)
|
95
94
|
thor (>= 0.14, < 2.0)
|
96
95
|
json (1.8.3)
|
97
|
-
listen (3.
|
98
|
-
rb-fsevent (>= 0.9.
|
99
|
-
rb-inotify (>= 0.9)
|
100
|
-
|
101
|
-
|
102
|
-
|
96
|
+
listen (3.1.4)
|
97
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
98
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
99
|
+
ruby_dep (~> 1.2)
|
100
|
+
lumberjack (1.0.10)
|
101
|
+
mail (2.6.4)
|
102
|
+
mime-types (>= 1.16, < 4)
|
103
103
|
method_source (0.8.2)
|
104
|
-
mime-types (
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
104
|
+
mime-types (3.0)
|
105
|
+
mime-types-data (~> 3.2015)
|
106
|
+
mime-types-data (3.2016.0221)
|
107
|
+
mini_portile2 (2.0.0)
|
108
|
+
minitest (5.8.4)
|
109
|
+
nenv (0.3.0)
|
110
|
+
nokogiri (1.6.7.2)
|
111
|
+
mini_portile2 (~> 2.0.0.rc2)
|
112
|
+
notiffany (0.0.8)
|
112
113
|
nenv (~> 0.1)
|
113
114
|
shellany (~> 0.0)
|
114
|
-
pry (0.10.
|
115
|
+
pry (0.10.3)
|
115
116
|
coderay (~> 1.1.0)
|
116
117
|
method_source (~> 0.8.1)
|
117
118
|
slop (~> 3.4)
|
@@ -120,86 +121,81 @@ GEM
|
|
120
121
|
rack (1.5.5)
|
121
122
|
rack-test (0.6.3)
|
122
123
|
rack (>= 1.0)
|
123
|
-
rails (4.1.
|
124
|
-
actionmailer (= 4.1.
|
125
|
-
actionpack (= 4.1.
|
126
|
-
actionview (= 4.1.
|
127
|
-
activemodel (= 4.1.
|
128
|
-
activerecord (= 4.1.
|
129
|
-
activesupport (= 4.1.
|
124
|
+
rails (4.1.15)
|
125
|
+
actionmailer (= 4.1.15)
|
126
|
+
actionpack (= 4.1.15)
|
127
|
+
actionview (= 4.1.15)
|
128
|
+
activemodel (= 4.1.15)
|
129
|
+
activerecord (= 4.1.15)
|
130
|
+
activesupport (= 4.1.15)
|
130
131
|
bundler (>= 1.3.0, < 2.0)
|
131
|
-
railties (= 4.1.
|
132
|
+
railties (= 4.1.15)
|
132
133
|
sprockets-rails (~> 2.0)
|
133
|
-
railties (4.1.
|
134
|
-
actionpack (= 4.1.
|
135
|
-
activesupport (= 4.1.
|
134
|
+
railties (4.1.15)
|
135
|
+
actionpack (= 4.1.15)
|
136
|
+
activesupport (= 4.1.15)
|
136
137
|
rake (>= 0.8.7)
|
137
138
|
thor (>= 0.18.1, < 2.0)
|
138
|
-
rake (
|
139
|
-
rb-fsevent (0.9.
|
140
|
-
rb-inotify (0.9.
|
139
|
+
rake (11.1.2)
|
140
|
+
rb-fsevent (0.9.7)
|
141
|
+
rb-inotify (0.9.7)
|
141
142
|
ffi (>= 0.5.0)
|
142
|
-
rest-client (1.8.0)
|
143
|
-
http-cookie (>= 1.0.2, < 2.0)
|
144
|
-
mime-types (>= 1.16, < 3.0)
|
145
|
-
netrc (~> 0.7)
|
146
143
|
roo (1.13.2)
|
147
144
|
nokogiri
|
148
145
|
rubyzip
|
149
146
|
spreadsheet (> 0.6.4)
|
150
|
-
rspec (3.
|
151
|
-
rspec-core (~> 3.
|
152
|
-
rspec-expectations (~> 3.
|
153
|
-
rspec-mocks (~> 3.
|
154
|
-
rspec-core (3.
|
155
|
-
rspec-support (~> 3.
|
156
|
-
rspec-expectations (3.
|
147
|
+
rspec (3.4.0)
|
148
|
+
rspec-core (~> 3.4.0)
|
149
|
+
rspec-expectations (~> 3.4.0)
|
150
|
+
rspec-mocks (~> 3.4.0)
|
151
|
+
rspec-core (3.4.4)
|
152
|
+
rspec-support (~> 3.4.0)
|
153
|
+
rspec-expectations (3.4.0)
|
157
154
|
diff-lcs (>= 1.2.0, < 2.0)
|
158
|
-
rspec-support (~> 3.
|
159
|
-
rspec-mocks (3.
|
155
|
+
rspec-support (~> 3.4.0)
|
156
|
+
rspec-mocks (3.4.1)
|
160
157
|
diff-lcs (>= 1.2.0, < 2.0)
|
161
|
-
rspec-support (~> 3.
|
162
|
-
rspec-rails (3.
|
158
|
+
rspec-support (~> 3.4.0)
|
159
|
+
rspec-rails (3.4.2)
|
163
160
|
actionpack (>= 3.0, < 4.3)
|
164
161
|
activesupport (>= 3.0, < 4.3)
|
165
162
|
railties (>= 3.0, < 4.3)
|
166
|
-
rspec-core (~> 3.
|
167
|
-
rspec-expectations (~> 3.
|
168
|
-
rspec-mocks (~> 3.
|
169
|
-
rspec-support (~> 3.
|
170
|
-
rspec-support (3.
|
171
|
-
ruby-ole (1.2.
|
163
|
+
rspec-core (~> 3.4.0)
|
164
|
+
rspec-expectations (~> 3.4.0)
|
165
|
+
rspec-mocks (~> 3.4.0)
|
166
|
+
rspec-support (~> 3.4.0)
|
167
|
+
rspec-support (3.4.1)
|
168
|
+
ruby-ole (1.2.12)
|
169
|
+
ruby_dep (1.3.1)
|
172
170
|
rubyzip (1.0.0)
|
173
171
|
shellany (0.0.1)
|
174
|
-
simplecov (0.
|
172
|
+
simplecov (0.11.2)
|
175
173
|
docile (~> 1.1.0)
|
176
174
|
json (~> 1.8)
|
177
175
|
simplecov-html (~> 0.10.0)
|
178
176
|
simplecov-html (0.10.0)
|
179
177
|
slop (3.6.0)
|
180
|
-
spreadsheet (1.
|
178
|
+
spreadsheet (1.1.2)
|
181
179
|
ruby-ole (>= 1.0)
|
182
|
-
sprockets (3.
|
183
|
-
|
184
|
-
|
180
|
+
sprockets (3.6.0)
|
181
|
+
concurrent-ruby (~> 1.0)
|
182
|
+
rack (> 1, < 3)
|
183
|
+
sprockets-rails (2.3.3)
|
185
184
|
actionpack (>= 3.0)
|
186
185
|
activesupport (>= 3.0)
|
187
186
|
sprockets (>= 2.8, < 4.0)
|
188
|
-
sqlite3 (1.3.
|
187
|
+
sqlite3 (1.3.11)
|
189
188
|
term-ansicolor (1.3.2)
|
190
189
|
tins (~> 1.0)
|
191
|
-
thin (1.6.
|
190
|
+
thin (1.6.4)
|
192
191
|
daemons (~> 1.0, >= 1.0.9)
|
193
|
-
eventmachine (~> 1.0)
|
192
|
+
eventmachine (~> 1.0, >= 1.0.4)
|
194
193
|
rack (~> 1.0)
|
195
194
|
thor (0.19.1)
|
196
195
|
thread_safe (0.3.5)
|
197
|
-
tins (1.
|
196
|
+
tins (1.6.0)
|
198
197
|
tzinfo (1.2.2)
|
199
198
|
thread_safe (~> 0.1)
|
200
|
-
unf (0.1.4)
|
201
|
-
unf_ext
|
202
|
-
unf_ext (0.0.7.1)
|
203
199
|
xpath (2.0.0)
|
204
200
|
nokogiri (~> 1.3)
|
205
201
|
|
@@ -225,3 +221,6 @@ DEPENDENCIES
|
|
225
221
|
rubyzip
|
226
222
|
sqlite3
|
227
223
|
thin
|
224
|
+
|
225
|
+
BUNDLED WITH
|
226
|
+
1.10.6
|
data/Gemfile.lock.4.2
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
GIT
|
2
2
|
remote: git://github.com/straydogstudio/acts_as_xlsx.git
|
3
|
-
revision:
|
3
|
+
revision: 94fc6aa730bb8f252e75c9debdcf64903d33fede
|
4
4
|
specs:
|
5
5
|
acts_as_xlsx (1.0.6)
|
6
6
|
activerecord (>= 2.3.9)
|
@@ -11,81 +11,82 @@ PATH
|
|
11
11
|
remote: .
|
12
12
|
specs:
|
13
13
|
axlsx_rails (0.4.0)
|
14
|
+
actionpack (>= 3.1)
|
14
15
|
axlsx (>= 2.0.1)
|
15
|
-
rails (>= 3.1)
|
16
16
|
|
17
17
|
GEM
|
18
18
|
remote: http://rubygems.org/
|
19
19
|
specs:
|
20
|
-
actionmailer (4.2.
|
21
|
-
actionpack (= 4.2.
|
22
|
-
actionview (= 4.2.
|
23
|
-
activejob (= 4.2.
|
20
|
+
actionmailer (4.2.7)
|
21
|
+
actionpack (= 4.2.7)
|
22
|
+
actionview (= 4.2.7)
|
23
|
+
activejob (= 4.2.7)
|
24
24
|
mail (~> 2.5, >= 2.5.4)
|
25
25
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
26
|
-
actionpack (4.2.
|
27
|
-
actionview (= 4.2.
|
28
|
-
activesupport (= 4.2.
|
26
|
+
actionpack (4.2.7)
|
27
|
+
actionview (= 4.2.7)
|
28
|
+
activesupport (= 4.2.7)
|
29
29
|
rack (~> 1.6)
|
30
30
|
rack-test (~> 0.6.2)
|
31
31
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
32
32
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
33
|
-
actionview (4.2.
|
34
|
-
activesupport (= 4.2.
|
33
|
+
actionview (4.2.7)
|
34
|
+
activesupport (= 4.2.7)
|
35
35
|
builder (~> 3.1)
|
36
36
|
erubis (~> 2.7.0)
|
37
37
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
38
38
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
39
|
-
activejob (4.2.
|
40
|
-
activesupport (= 4.2.
|
39
|
+
activejob (4.2.7)
|
40
|
+
activesupport (= 4.2.7)
|
41
41
|
globalid (>= 0.3.0)
|
42
|
-
activemodel (4.2.
|
43
|
-
activesupport (= 4.2.
|
42
|
+
activemodel (4.2.7)
|
43
|
+
activesupport (= 4.2.7)
|
44
44
|
builder (~> 3.1)
|
45
|
-
activerecord (4.2.
|
46
|
-
activemodel (= 4.2.
|
47
|
-
activesupport (= 4.2.
|
45
|
+
activerecord (4.2.7)
|
46
|
+
activemodel (= 4.2.7)
|
47
|
+
activesupport (= 4.2.7)
|
48
48
|
arel (~> 6.0)
|
49
|
-
activesupport (4.2.
|
49
|
+
activesupport (4.2.7)
|
50
50
|
i18n (~> 0.7)
|
51
51
|
json (~> 1.7, >= 1.7.7)
|
52
52
|
minitest (~> 5.1)
|
53
53
|
thread_safe (~> 0.3, >= 0.3.4)
|
54
54
|
tzinfo (~> 1.1)
|
55
|
-
|
55
|
+
addressable (2.4.0)
|
56
|
+
arel (6.0.3)
|
56
57
|
axlsx (2.0.1)
|
57
58
|
htmlentities (~> 4.3.1)
|
58
59
|
nokogiri (>= 1.4.1)
|
59
60
|
rubyzip (~> 1.0.0)
|
60
61
|
builder (3.2.2)
|
61
|
-
capybara (2.
|
62
|
+
capybara (2.7.1)
|
63
|
+
addressable
|
62
64
|
mime-types (>= 1.16)
|
63
65
|
nokogiri (>= 1.3.3)
|
64
66
|
rack (>= 1.0.0)
|
65
67
|
rack-test (>= 0.5.4)
|
66
68
|
xpath (~> 2.0)
|
67
|
-
coderay (1.1.
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
simplecov (~> 0.
|
69
|
+
coderay (1.1.1)
|
70
|
+
concurrent-ruby (1.0.2)
|
71
|
+
coveralls (0.8.14)
|
72
|
+
json (>= 1.8, < 3)
|
73
|
+
simplecov (~> 0.12.0)
|
72
74
|
term-ansicolor (~> 1.3)
|
73
75
|
thor (~> 0.19.1)
|
76
|
+
tins (~> 1.6.0)
|
74
77
|
daemons (1.2.3)
|
75
78
|
diff-lcs (1.2.5)
|
76
79
|
docile (1.1.5)
|
77
|
-
domain_name (0.5.24)
|
78
|
-
unf (>= 0.0.5, < 1.0.0)
|
79
80
|
erubis (2.7.0)
|
80
|
-
eventmachine (1.0.
|
81
|
-
ffi (1.9.
|
81
|
+
eventmachine (1.2.0.1)
|
82
|
+
ffi (1.9.14)
|
82
83
|
formatador (0.2.5)
|
83
|
-
globalid (0.3.
|
84
|
+
globalid (0.3.6)
|
84
85
|
activesupport (>= 4.1.0)
|
85
86
|
growl (1.0.3)
|
86
|
-
guard (2.
|
87
|
+
guard (2.14.0)
|
87
88
|
formatador (>= 0.2.4)
|
88
|
-
listen (>= 2.7,
|
89
|
+
listen (>= 2.7, < 4.0)
|
89
90
|
lumberjack (~> 1.0)
|
90
91
|
nenv (~> 0.1)
|
91
92
|
notiffany (~> 0.0)
|
@@ -93,39 +94,41 @@ GEM
|
|
93
94
|
shellany (~> 0.0)
|
94
95
|
thor (>= 0.18.1)
|
95
96
|
guard-compat (1.2.1)
|
96
|
-
guard-rspec (4.
|
97
|
+
guard-rspec (4.7.2)
|
97
98
|
guard (~> 2.1)
|
98
99
|
guard-compat (~> 1.1)
|
99
100
|
rspec (>= 2.99.0, < 4.0)
|
100
101
|
htmlentities (4.3.4)
|
101
|
-
http-cookie (1.0.2)
|
102
|
-
domain_name (~> 0.5)
|
103
102
|
i18n (0.7.0)
|
104
|
-
jquery-rails (4.
|
105
|
-
rails-dom-testing (
|
103
|
+
jquery-rails (4.1.1)
|
104
|
+
rails-dom-testing (>= 1, < 3)
|
106
105
|
railties (>= 4.2.0)
|
107
106
|
thor (>= 0.14, < 2.0)
|
108
107
|
json (1.8.3)
|
109
|
-
listen (3.
|
110
|
-
rb-fsevent (>= 0.9.
|
111
|
-
rb-inotify (>= 0.9)
|
112
|
-
|
108
|
+
listen (3.1.5)
|
109
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
110
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
111
|
+
ruby_dep (~> 1.2)
|
112
|
+
loofah (2.0.3)
|
113
113
|
nokogiri (>= 1.5.9)
|
114
|
-
lumberjack (1.0.
|
115
|
-
mail (2.6.
|
116
|
-
mime-types (>= 1.16, <
|
114
|
+
lumberjack (1.0.10)
|
115
|
+
mail (2.6.4)
|
116
|
+
mime-types (>= 1.16, < 4)
|
117
117
|
method_source (0.8.2)
|
118
|
-
mime-types (
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
118
|
+
mime-types (3.1)
|
119
|
+
mime-types-data (~> 3.2015)
|
120
|
+
mime-types-data (3.2016.0521)
|
121
|
+
mini_portile2 (2.1.0)
|
122
|
+
minitest (5.9.0)
|
123
|
+
nenv (0.3.0)
|
124
|
+
nokogiri (1.6.8)
|
125
|
+
mini_portile2 (~> 2.1.0)
|
126
|
+
pkg-config (~> 1.1.7)
|
127
|
+
notiffany (0.1.0)
|
126
128
|
nenv (~> 0.1)
|
127
129
|
shellany (~> 0.0)
|
128
|
-
|
130
|
+
pkg-config (1.1.7)
|
131
|
+
pry (0.10.4)
|
129
132
|
coderay (~> 1.1.0)
|
130
133
|
method_source (~> 0.8.1)
|
131
134
|
slop (~> 3.4)
|
@@ -134,97 +137,92 @@ GEM
|
|
134
137
|
rack (1.6.4)
|
135
138
|
rack-test (0.6.3)
|
136
139
|
rack (>= 1.0)
|
137
|
-
rails (4.2.
|
138
|
-
actionmailer (= 4.2.
|
139
|
-
actionpack (= 4.2.
|
140
|
-
actionview (= 4.2.
|
141
|
-
activejob (= 4.2.
|
142
|
-
activemodel (= 4.2.
|
143
|
-
activerecord (= 4.2.
|
144
|
-
activesupport (= 4.2.
|
140
|
+
rails (4.2.7)
|
141
|
+
actionmailer (= 4.2.7)
|
142
|
+
actionpack (= 4.2.7)
|
143
|
+
actionview (= 4.2.7)
|
144
|
+
activejob (= 4.2.7)
|
145
|
+
activemodel (= 4.2.7)
|
146
|
+
activerecord (= 4.2.7)
|
147
|
+
activesupport (= 4.2.7)
|
145
148
|
bundler (>= 1.3.0, < 2.0)
|
146
|
-
railties (= 4.2.
|
149
|
+
railties (= 4.2.7)
|
147
150
|
sprockets-rails
|
148
151
|
rails-deprecated_sanitizer (1.0.3)
|
149
152
|
activesupport (>= 4.2.0.alpha)
|
150
|
-
rails-dom-testing (1.0.
|
153
|
+
rails-dom-testing (1.0.7)
|
151
154
|
activesupport (>= 4.2.0.beta, < 5.0)
|
152
155
|
nokogiri (~> 1.6.0)
|
153
156
|
rails-deprecated_sanitizer (>= 1.0.1)
|
154
|
-
rails-html-sanitizer (1.0.
|
157
|
+
rails-html-sanitizer (1.0.3)
|
155
158
|
loofah (~> 2.0)
|
156
|
-
railties (4.2.
|
157
|
-
actionpack (= 4.2.
|
158
|
-
activesupport (= 4.2.
|
159
|
+
railties (4.2.7)
|
160
|
+
actionpack (= 4.2.7)
|
161
|
+
activesupport (= 4.2.7)
|
159
162
|
rake (>= 0.8.7)
|
160
163
|
thor (>= 0.18.1, < 2.0)
|
161
|
-
rake (
|
162
|
-
rb-fsevent (0.9.
|
163
|
-
rb-inotify (0.9.
|
164
|
+
rake (11.2.2)
|
165
|
+
rb-fsevent (0.9.7)
|
166
|
+
rb-inotify (0.9.7)
|
164
167
|
ffi (>= 0.5.0)
|
165
|
-
responders (2.
|
166
|
-
railties (>= 4.2.0, < 5)
|
167
|
-
rest-client (1.8.0)
|
168
|
-
http-cookie (>= 1.0.2, < 2.0)
|
169
|
-
mime-types (>= 1.16, < 3.0)
|
170
|
-
netrc (~> 0.7)
|
168
|
+
responders (2.2.0)
|
169
|
+
railties (>= 4.2.0, < 5.1)
|
171
170
|
roo (1.13.2)
|
172
171
|
nokogiri
|
173
172
|
rubyzip
|
174
173
|
spreadsheet (> 0.6.4)
|
175
|
-
rspec (3.
|
176
|
-
rspec-core (~> 3.
|
177
|
-
rspec-expectations (~> 3.
|
178
|
-
rspec-mocks (~> 3.
|
179
|
-
rspec-core (3.
|
180
|
-
rspec-support (~> 3.
|
181
|
-
rspec-expectations (3.
|
174
|
+
rspec (3.5.0)
|
175
|
+
rspec-core (~> 3.5.0)
|
176
|
+
rspec-expectations (~> 3.5.0)
|
177
|
+
rspec-mocks (~> 3.5.0)
|
178
|
+
rspec-core (3.5.1)
|
179
|
+
rspec-support (~> 3.5.0)
|
180
|
+
rspec-expectations (3.5.0)
|
182
181
|
diff-lcs (>= 1.2.0, < 2.0)
|
183
|
-
rspec-support (~> 3.
|
184
|
-
rspec-mocks (3.
|
182
|
+
rspec-support (~> 3.5.0)
|
183
|
+
rspec-mocks (3.5.0)
|
185
184
|
diff-lcs (>= 1.2.0, < 2.0)
|
186
|
-
rspec-support (~> 3.
|
187
|
-
rspec-rails (3.
|
188
|
-
actionpack (>= 3.0
|
189
|
-
activesupport (>= 3.0
|
190
|
-
railties (>= 3.0
|
191
|
-
rspec-core (~> 3.
|
192
|
-
rspec-expectations (~> 3.
|
193
|
-
rspec-mocks (~> 3.
|
194
|
-
rspec-support (~> 3.
|
195
|
-
rspec-support (3.
|
196
|
-
ruby-ole (1.2.
|
185
|
+
rspec-support (~> 3.5.0)
|
186
|
+
rspec-rails (3.5.1)
|
187
|
+
actionpack (>= 3.0)
|
188
|
+
activesupport (>= 3.0)
|
189
|
+
railties (>= 3.0)
|
190
|
+
rspec-core (~> 3.5.0)
|
191
|
+
rspec-expectations (~> 3.5.0)
|
192
|
+
rspec-mocks (~> 3.5.0)
|
193
|
+
rspec-support (~> 3.5.0)
|
194
|
+
rspec-support (3.5.0)
|
195
|
+
ruby-ole (1.2.12)
|
196
|
+
ruby_dep (1.3.1)
|
197
197
|
rubyzip (1.0.0)
|
198
198
|
shellany (0.0.1)
|
199
|
-
simplecov (0.
|
199
|
+
simplecov (0.12.0)
|
200
200
|
docile (~> 1.1.0)
|
201
|
-
json (
|
201
|
+
json (>= 1.8, < 3)
|
202
202
|
simplecov-html (~> 0.10.0)
|
203
203
|
simplecov-html (0.10.0)
|
204
204
|
slop (3.6.0)
|
205
|
-
spreadsheet (1.
|
205
|
+
spreadsheet (1.1.2)
|
206
206
|
ruby-ole (>= 1.0)
|
207
|
-
sprockets (3.
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
207
|
+
sprockets (3.7.0)
|
208
|
+
concurrent-ruby (~> 1.0)
|
209
|
+
rack (> 1, < 3)
|
210
|
+
sprockets-rails (3.1.1)
|
211
|
+
actionpack (>= 4.0)
|
212
|
+
activesupport (>= 4.0)
|
213
|
+
sprockets (>= 3.0.0)
|
214
|
+
sqlite3 (1.3.11)
|
214
215
|
term-ansicolor (1.3.2)
|
215
216
|
tins (~> 1.0)
|
216
|
-
thin (1.
|
217
|
+
thin (1.7.0)
|
217
218
|
daemons (~> 1.0, >= 1.0.9)
|
218
|
-
eventmachine (~> 1.0)
|
219
|
-
rack (
|
219
|
+
eventmachine (~> 1.0, >= 1.0.4)
|
220
|
+
rack (>= 1, < 3)
|
220
221
|
thor (0.19.1)
|
221
222
|
thread_safe (0.3.5)
|
222
|
-
tins (1.
|
223
|
+
tins (1.6.0)
|
223
224
|
tzinfo (1.2.2)
|
224
225
|
thread_safe (~> 0.1)
|
225
|
-
unf (0.1.4)
|
226
|
-
unf_ext
|
227
|
-
unf_ext (0.0.7.1)
|
228
226
|
xpath (2.0.0)
|
229
227
|
nokogiri (~> 1.3)
|
230
228
|
|
@@ -251,3 +249,6 @@ DEPENDENCIES
|
|
251
249
|
rubyzip
|
252
250
|
sqlite3
|
253
251
|
thin
|
252
|
+
|
253
|
+
BUNDLED WITH
|
254
|
+
1.10.6
|