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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33c17cee2c9fca6f1b48fad0101febf847fb2c07
|
4
|
+
data.tar.gz: 306e05750ff81f3f58a1b905d1536ebb3ebdc064
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39997a4186d784b44f166c87571e30ba83847d3cd0496abe6f7ecaf6b974ea923c581dc8b8ab64f6b143e64b694b307ee6d0ea6bfc0440a59b4390950ec61738
|
7
|
+
data.tar.gz: a02d515965210a38e2fde101aac007aa760259f2c11d4bb18b2dc5bb6831573a19438522a3ca4643276e1752ec8d067469672d20e312becf1826e7255b94ddfa
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
@@ -8,15 +8,18 @@ gemspec
|
|
8
8
|
ENV["RAILS_VERSION"] ||= '4.2'
|
9
9
|
|
10
10
|
case ENV['RAILS_VERSION']
|
11
|
-
when '
|
12
|
-
gem 'rails', "~>
|
13
|
-
|
14
|
-
gem 'rails', "~> 4.0.0"
|
15
|
-
when '4.1'
|
16
|
-
gem 'rails', "~> 4.1.0"
|
11
|
+
when '5.0'
|
12
|
+
gem 'rails', "~> 5.0.0"
|
13
|
+
gem 'responders', '~> 2.0'
|
17
14
|
when '4.2'
|
18
15
|
gem 'rails', "~> 4.2.0"
|
19
16
|
gem 'responders', '~> 2.0'
|
17
|
+
when '4.1'
|
18
|
+
gem 'rails', "~> 4.1.0"
|
19
|
+
when '4.0'
|
20
|
+
gem 'rails', "~> 4.0.0"
|
21
|
+
when '3.1', '3.2'
|
22
|
+
gem 'rails', "~> #{ENV['RAILS_VERSION']}.0"
|
20
23
|
end
|
21
24
|
|
22
25
|
# jquery-rails is used by the dummy application
|
data/Gemfile.lock
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)
|
@@ -10,82 +10,83 @@ GIT
|
|
10
10
|
PATH
|
11
11
|
remote: .
|
12
12
|
specs:
|
13
|
-
axlsx_rails (0.
|
13
|
+
axlsx_rails (0.5.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
|
data/Gemfile.lock.4.0
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,8 +11,8 @@ 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/
|
@@ -41,36 +41,37 @@ GEM
|
|
41
41
|
multi_json (~> 1.3)
|
42
42
|
thread_safe (~> 0.1)
|
43
43
|
tzinfo (~> 0.3.37)
|
44
|
+
addressable (2.4.0)
|
44
45
|
arel (4.0.2)
|
45
46
|
axlsx (2.0.1)
|
46
47
|
htmlentities (~> 4.3.1)
|
47
48
|
nokogiri (>= 1.4.1)
|
48
49
|
rubyzip (~> 1.0.0)
|
49
50
|
builder (3.1.4)
|
50
|
-
capybara (2.
|
51
|
+
capybara (2.7.1)
|
52
|
+
addressable
|
51
53
|
mime-types (>= 1.16)
|
52
54
|
nokogiri (>= 1.3.3)
|
53
55
|
rack (>= 1.0.0)
|
54
56
|
rack-test (>= 0.5.4)
|
55
57
|
xpath (~> 2.0)
|
56
|
-
coderay (1.1.
|
57
|
-
|
58
|
+
coderay (1.1.1)
|
59
|
+
concurrent-ruby (1.0.2)
|
60
|
+
coveralls (0.8.13)
|
58
61
|
json (~> 1.8)
|
59
|
-
|
60
|
-
simplecov (~> 0.10.0)
|
62
|
+
simplecov (~> 0.11.0)
|
61
63
|
term-ansicolor (~> 1.3)
|
62
64
|
thor (~> 0.19.1)
|
65
|
+
tins (~> 1.6.0)
|
63
66
|
daemons (1.2.3)
|
64
67
|
diff-lcs (1.2.5)
|
65
68
|
docile (1.1.5)
|
66
|
-
domain_name (0.5.24)
|
67
|
-
unf (>= 0.0.5, < 1.0.0)
|
68
69
|
erubis (2.7.0)
|
69
|
-
eventmachine (1.0.
|
70
|
+
eventmachine (1.2.0.1)
|
70
71
|
ffi (1.9.10)
|
71
72
|
formatador (0.2.5)
|
72
73
|
growl (1.0.3)
|
73
|
-
guard (2.
|
74
|
+
guard (2.13.0)
|
74
75
|
formatador (>= 0.2.4)
|
75
76
|
listen (>= 2.7, <= 4.0)
|
76
77
|
lumberjack (~> 1.0)
|
@@ -80,37 +81,37 @@ GEM
|
|
80
81
|
shellany (~> 0.0)
|
81
82
|
thor (>= 0.18.1)
|
82
83
|
guard-compat (1.2.1)
|
83
|
-
guard-rspec (4.6.
|
84
|
+
guard-rspec (4.6.5)
|
84
85
|
guard (~> 2.1)
|
85
86
|
guard-compat (~> 1.1)
|
86
87
|
rspec (>= 2.99.0, < 4.0)
|
87
88
|
htmlentities (4.3.4)
|
88
|
-
http-cookie (1.0.2)
|
89
|
-
domain_name (~> 0.5)
|
90
89
|
i18n (0.7.0)
|
91
|
-
jquery-rails (3.1.
|
90
|
+
jquery-rails (3.1.4)
|
92
91
|
railties (>= 3.0, < 5.0)
|
93
92
|
thor (>= 0.14, < 2.0)
|
94
93
|
json (1.8.3)
|
95
|
-
listen (3.
|
96
|
-
rb-fsevent (>= 0.9.
|
97
|
-
rb-inotify (>= 0.9)
|
98
|
-
|
99
|
-
|
100
|
-
|
94
|
+
listen (3.1.4)
|
95
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
96
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
97
|
+
ruby_dep (~> 1.2)
|
98
|
+
lumberjack (1.0.10)
|
99
|
+
mail (2.6.4)
|
100
|
+
mime-types (>= 1.16, < 4)
|
101
101
|
method_source (0.8.2)
|
102
|
-
mime-types (
|
103
|
-
|
102
|
+
mime-types (3.0)
|
103
|
+
mime-types-data (~> 3.2015)
|
104
|
+
mime-types-data (3.2016.0221)
|
105
|
+
mini_portile2 (2.0.0)
|
104
106
|
minitest (4.7.5)
|
105
|
-
multi_json (1.
|
106
|
-
nenv (0.
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
notiffany (0.0.6)
|
107
|
+
multi_json (1.12.0)
|
108
|
+
nenv (0.3.0)
|
109
|
+
nokogiri (1.6.7.2)
|
110
|
+
mini_portile2 (~> 2.0.0.rc2)
|
111
|
+
notiffany (0.0.8)
|
111
112
|
nenv (~> 0.1)
|
112
113
|
shellany (~> 0.0)
|
113
|
-
pry (0.10.
|
114
|
+
pry (0.10.3)
|
114
115
|
coderay (~> 1.1.0)
|
115
116
|
method_source (~> 0.8.1)
|
116
117
|
slop (~> 3.4)
|
@@ -132,70 +133,65 @@ GEM
|
|
132
133
|
activesupport (= 4.0.13)
|
133
134
|
rake (>= 0.8.7)
|
134
135
|
thor (>= 0.18.1, < 2.0)
|
135
|
-
rake (
|
136
|
-
rb-fsevent (0.9.
|
137
|
-
rb-inotify (0.9.
|
136
|
+
rake (11.1.2)
|
137
|
+
rb-fsevent (0.9.7)
|
138
|
+
rb-inotify (0.9.7)
|
138
139
|
ffi (>= 0.5.0)
|
139
|
-
rest-client (1.8.0)
|
140
|
-
http-cookie (>= 1.0.2, < 2.0)
|
141
|
-
mime-types (>= 1.16, < 3.0)
|
142
|
-
netrc (~> 0.7)
|
143
140
|
roo (1.13.2)
|
144
141
|
nokogiri
|
145
142
|
rubyzip
|
146
143
|
spreadsheet (> 0.6.4)
|
147
|
-
rspec (3.
|
148
|
-
rspec-core (~> 3.
|
149
|
-
rspec-expectations (~> 3.
|
150
|
-
rspec-mocks (~> 3.
|
151
|
-
rspec-core (3.
|
152
|
-
rspec-support (~> 3.
|
153
|
-
rspec-expectations (3.
|
144
|
+
rspec (3.4.0)
|
145
|
+
rspec-core (~> 3.4.0)
|
146
|
+
rspec-expectations (~> 3.4.0)
|
147
|
+
rspec-mocks (~> 3.4.0)
|
148
|
+
rspec-core (3.4.4)
|
149
|
+
rspec-support (~> 3.4.0)
|
150
|
+
rspec-expectations (3.4.0)
|
154
151
|
diff-lcs (>= 1.2.0, < 2.0)
|
155
|
-
rspec-support (~> 3.
|
156
|
-
rspec-mocks (3.
|
152
|
+
rspec-support (~> 3.4.0)
|
153
|
+
rspec-mocks (3.4.1)
|
157
154
|
diff-lcs (>= 1.2.0, < 2.0)
|
158
|
-
rspec-support (~> 3.
|
159
|
-
rspec-rails (3.
|
155
|
+
rspec-support (~> 3.4.0)
|
156
|
+
rspec-rails (3.4.2)
|
160
157
|
actionpack (>= 3.0, < 4.3)
|
161
158
|
activesupport (>= 3.0, < 4.3)
|
162
159
|
railties (>= 3.0, < 4.3)
|
163
|
-
rspec-core (~> 3.
|
164
|
-
rspec-expectations (~> 3.
|
165
|
-
rspec-mocks (~> 3.
|
166
|
-
rspec-support (~> 3.
|
167
|
-
rspec-support (3.
|
168
|
-
ruby-ole (1.2.
|
160
|
+
rspec-core (~> 3.4.0)
|
161
|
+
rspec-expectations (~> 3.4.0)
|
162
|
+
rspec-mocks (~> 3.4.0)
|
163
|
+
rspec-support (~> 3.4.0)
|
164
|
+
rspec-support (3.4.1)
|
165
|
+
ruby-ole (1.2.12)
|
166
|
+
ruby_dep (1.3.1)
|
169
167
|
rubyzip (1.0.0)
|
170
168
|
shellany (0.0.1)
|
171
|
-
simplecov (0.
|
169
|
+
simplecov (0.11.2)
|
172
170
|
docile (~> 1.1.0)
|
173
171
|
json (~> 1.8)
|
174
172
|
simplecov-html (~> 0.10.0)
|
175
173
|
simplecov-html (0.10.0)
|
176
174
|
slop (3.6.0)
|
177
|
-
spreadsheet (1.
|
175
|
+
spreadsheet (1.1.2)
|
178
176
|
ruby-ole (>= 1.0)
|
179
|
-
sprockets (3.
|
180
|
-
|
181
|
-
|
177
|
+
sprockets (3.6.0)
|
178
|
+
concurrent-ruby (~> 1.0)
|
179
|
+
rack (> 1, < 3)
|
180
|
+
sprockets-rails (2.3.3)
|
182
181
|
actionpack (>= 3.0)
|
183
182
|
activesupport (>= 3.0)
|
184
183
|
sprockets (>= 2.8, < 4.0)
|
185
|
-
sqlite3 (1.3.
|
184
|
+
sqlite3 (1.3.11)
|
186
185
|
term-ansicolor (1.3.2)
|
187
186
|
tins (~> 1.0)
|
188
|
-
thin (1.6.
|
187
|
+
thin (1.6.4)
|
189
188
|
daemons (~> 1.0, >= 1.0.9)
|
190
|
-
eventmachine (~> 1.0)
|
189
|
+
eventmachine (~> 1.0, >= 1.0.4)
|
191
190
|
rack (~> 1.0)
|
192
191
|
thor (0.19.1)
|
193
192
|
thread_safe (0.3.5)
|
194
|
-
tins (1.
|
195
|
-
tzinfo (0.3.
|
196
|
-
unf (0.1.4)
|
197
|
-
unf_ext
|
198
|
-
unf_ext (0.0.7.1)
|
193
|
+
tins (1.6.0)
|
194
|
+
tzinfo (0.3.49)
|
199
195
|
xpath (2.0.0)
|
200
196
|
nokogiri (~> 1.3)
|
201
197
|
|
@@ -221,3 +217,6 @@ DEPENDENCIES
|
|
221
217
|
rubyzip
|
222
218
|
sqlite3
|
223
219
|
thin
|
220
|
+
|
221
|
+
BUNDLED WITH
|
222
|
+
1.10.6
|