axlsx_rails 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/Gemfile +9 -6
  4. data/Gemfile.lock +116 -115
  5. data/Gemfile.lock.4.0 +66 -67
  6. data/Gemfile.lock.4.1 +90 -91
  7. data/Gemfile.lock.4.2 +115 -114
  8. data/Gemfile.lock.5.0 +259 -0
  9. data/README.md +37 -4
  10. data/axlsx_rails.gemspec +36 -0
  11. data/lib/axlsx_rails/action_controller.rb +5 -1
  12. data/lib/axlsx_rails/template_handler.rb +1 -1
  13. data/lib/axlsx_rails/version.rb +1 -1
  14. data/spec/axlsx_builder_spec.rb +2 -2
  15. data/spec/axlsx_mailer_spec.rb +3 -3
  16. data/spec/axlsx_renderer_spec.rb +4 -3
  17. data/spec/axlsx_request_spec.rb +43 -30
  18. data/spec/ci.rb +4 -1
  19. data/spec/dummy/app/mailers/notifier.rb +1 -1
  20. data/spec/dummy/app/views/users/{mailers/instructions.xlsx.axlsx → send_instructions.xlsx.axlsx} +0 -0
  21. data/spec/dummy/log/test.log +0 -0
  22. data/spec/dummy_4/app/mailers/notifier.rb +1 -1
  23. data/spec/dummy_4/app/views/users/noaction.xlsx.axlsx +1 -0
  24. data/spec/dummy_4/app/views/users/{mailers/instructions.xlsx.axlsx → send_instructions.xlsx.axlsx} +0 -0
  25. data/spec/dummy_4/config/routes.rb +1 -0
  26. data/spec/dummy_4/db/schema.rb +2 -2
  27. data/spec/dummy_4/db/test.sqlite3 +0 -0
  28. data/spec/dummy_4/log/test.log +14792 -0
  29. data/spec/dummy_5/Rakefile +6 -0
  30. data/spec/dummy_5/app/assets/javascripts/application.js +13 -0
  31. data/spec/dummy_5/app/assets/stylesheets/application.css +15 -0
  32. data/spec/dummy_5/app/controllers/application_controller.rb +5 -0
  33. data/spec/dummy_5/app/controllers/home_controller.rb +56 -0
  34. data/spec/dummy_5/app/controllers/likes_controller.rb +18 -0
  35. data/spec/dummy_5/app/controllers/users_controller.rb +27 -0
  36. data/spec/dummy_5/app/helpers/application_helper.rb +2 -0
  37. data/spec/dummy_5/app/mailers/notifier.rb +14 -0
  38. data/spec/dummy_5/app/models/like.rb +3 -0
  39. data/spec/dummy_5/app/models/user.rb +10 -0
  40. data/spec/dummy_5/app/views/home/_cover_sheet.xlsx.axlsx +3 -0
  41. data/spec/dummy_5/app/views/home/index.html.erb +4 -0
  42. data/spec/dummy_5/app/views/home/index.xlsx.axlsx +8 -0
  43. data/spec/dummy_5/app/views/home/only_html.html.erb +1 -0
  44. data/spec/dummy_5/app/views/home/useheader.xlsx.axlsx +8 -0
  45. data/spec/dummy_5/app/views/home/withpartial.xlsx.axlsx +9 -0
  46. data/spec/dummy_5/app/views/layouts/application.html.erb +12 -0
  47. data/spec/dummy_5/app/views/likes/index.html.erb +17 -0
  48. data/spec/dummy_5/app/views/likes/index.xlsx.axlsx +7 -0
  49. data/spec/dummy_5/app/views/notifier/instructions.html.erb +14 -0
  50. data/spec/dummy_5/app/views/notifier/instructions.txt.erb +6 -0
  51. data/spec/dummy_5/app/views/users/index.html.erb +23 -0
  52. data/spec/dummy_5/app/views/users/index.xlsx.axlsx +1 -0
  53. data/spec/dummy_5/app/views/users/noaction.xlsx.axlsx +1 -0
  54. data/spec/dummy_5/app/views/users/respond_with.xlsx.axlsx +8 -0
  55. data/spec/dummy_5/app/views/users/send_instructions.xlsx.axlsx +5 -0
  56. data/spec/dummy_5/bin/bundle +3 -0
  57. data/spec/dummy_5/bin/rails +4 -0
  58. data/spec/dummy_5/bin/rake +4 -0
  59. data/spec/dummy_5/config.ru +4 -0
  60. data/spec/dummy_5/config/application.rb +23 -0
  61. data/spec/dummy_5/config/boot.rb +5 -0
  62. data/spec/dummy_5/config/database.yml +25 -0
  63. data/spec/dummy_5/config/environment.rb +5 -0
  64. data/spec/dummy_5/config/environments/development.rb +37 -0
  65. data/spec/dummy_5/config/environments/production.rb +83 -0
  66. data/spec/dummy_5/config/environments/test.rb +40 -0
  67. data/spec/dummy_5/config/initializers/backtrace_silencers.rb +7 -0
  68. data/spec/dummy_5/config/initializers/cookies_serializer.rb +3 -0
  69. data/spec/dummy_5/config/initializers/filter_parameter_logging.rb +4 -0
  70. data/spec/dummy_5/config/initializers/inflections.rb +16 -0
  71. data/spec/dummy_5/config/initializers/mime_types.rb +4 -0
  72. data/spec/dummy_5/config/initializers/secret_token.rb +2 -0
  73. data/spec/dummy_5/config/initializers/session_store.rb +3 -0
  74. data/spec/dummy_5/config/initializers/wrap_parameters.rb +14 -0
  75. data/spec/dummy_5/config/locales/en.yml +23 -0
  76. data/spec/dummy_5/config/routes.rb +16 -0
  77. data/spec/dummy_5/config/secrets.yml +22 -0
  78. data/spec/dummy_5/db/migrate/20120717192452_create_users.rb +12 -0
  79. data/spec/dummy_5/db/migrate/20121206210955_create_likes.rb +10 -0
  80. data/spec/dummy_5/db/schema.rb +31 -0
  81. data/spec/dummy_5/db/test.sqlite3 +0 -0
  82. data/spec/dummy_5/log/test.log +5738 -0
  83. data/spec/dummy_5/public/404.html +67 -0
  84. data/spec/dummy_5/public/422.html +67 -0
  85. data/spec/dummy_5/public/500.html +66 -0
  86. data/spec/dummy_5/public/favicon.ico +0 -0
  87. data/spec/spec_helper.rb +8 -2
  88. data/spec/test_5.0.sh +16 -0
  89. metadata +132 -12
  90. data/spec/dummy/README.rdoc +0 -261
  91. data/spec/dummy_4/README.rdoc +0 -28
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9c3c3316b647a15618358b8ce32b37ca551ac69e
4
- data.tar.gz: 45ad342260a926ae2eaeaed1250095c08be713b1
3
+ metadata.gz: 33c17cee2c9fca6f1b48fad0101febf847fb2c07
4
+ data.tar.gz: 306e05750ff81f3f58a1b905d1536ebb3ebdc064
5
5
  SHA512:
6
- metadata.gz: 5e16ac4f427cb9809d59cd86794f8060491378c8b59fe683e7cf31813b46b9c444484984226dfd1dfb4cecdfc6704e667f93651961e0a09b3358f653c25644ee
7
- data.tar.gz: 63dd14cdaa9f5114895392c8e62f87b5905ebffbe883218b7530b5dc49d78ae80a12ba88f38bd645282be17487343bd1eb67deb28489e916471e91dbaeb6c445
6
+ metadata.gz: 39997a4186d784b44f166c87571e30ba83847d3cd0496abe6f7ecaf6b974ea923c581dc8b8ab64f6b143e64b694b307ee6d0ea6bfc0440a59b4390950ec61738
7
+ data.tar.gz: a02d515965210a38e2fde101aac007aa760259f2c11d4bb18b2dc5bb6831573a19438522a3ca4643276e1752ec8d067469672d20e312becf1826e7255b94ddfa
@@ -1,5 +1,11 @@
1
1
  # Change log
2
2
 
3
+ **July 26st, 2016**: 0.5.0 release
4
+
5
+ - Support for Rails 5
6
+ - **Tested on on Rails 4.0, 4.1, 4.2, and 5.0**
7
+ - Bug fixes for unreadable files and UTF-8 errors
8
+
3
9
  **July 13th, 2015**: 0.4.0 release
4
10
 
5
11
  - Support for Rails 4.2
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 '3.1', '3.2'
12
- gem 'rails', "~> #{ENV['RAILS_VERSION']}.0"
13
- when '4.0'
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
@@ -1,6 +1,6 @@
1
1
  GIT
2
2
  remote: git://github.com/straydogstudio/acts_as_xlsx.git
3
- revision: 74c00b5054ef96ced7bd55753015164f6aaf13ab
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.4.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.3)
21
- actionpack (= 4.2.3)
22
- actionview (= 4.2.3)
23
- activejob (= 4.2.3)
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.3)
27
- actionview (= 4.2.3)
28
- activesupport (= 4.2.3)
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.3)
34
- activesupport (= 4.2.3)
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.3)
40
- activesupport (= 4.2.3)
39
+ activejob (4.2.7)
40
+ activesupport (= 4.2.7)
41
41
  globalid (>= 0.3.0)
42
- activemodel (4.2.3)
43
- activesupport (= 4.2.3)
42
+ activemodel (4.2.7)
43
+ activesupport (= 4.2.7)
44
44
  builder (~> 3.1)
45
- activerecord (4.2.3)
46
- activemodel (= 4.2.3)
47
- activesupport (= 4.2.3)
45
+ activerecord (4.2.7)
46
+ activemodel (= 4.2.7)
47
+ activesupport (= 4.2.7)
48
48
  arel (~> 6.0)
49
- activesupport (4.2.3)
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
- arel (6.0.2)
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.4.4)
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.0)
68
- coveralls (0.8.2)
69
- json (~> 1.8)
70
- rest-client (>= 1.6.8, < 2)
71
- simplecov (~> 0.10.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.7)
81
- ffi (1.9.10)
81
+ eventmachine (1.2.0.1)
82
+ ffi (1.9.14)
82
83
  formatador (0.2.5)
83
- globalid (0.3.5)
84
+ globalid (0.3.6)
84
85
  activesupport (>= 4.1.0)
85
86
  growl (1.0.3)
86
- guard (2.12.8)
87
+ guard (2.14.0)
87
88
  formatador (>= 0.2.4)
88
- listen (>= 2.7, <= 4.0)
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.6.1)
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.0.4)
105
- rails-dom-testing (~> 1.0)
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.0.2)
110
- rb-fsevent (>= 0.9.3)
111
- rb-inotify (>= 0.9)
112
- loofah (2.0.2)
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.9)
115
- mail (2.6.3)
116
- mime-types (>= 1.16, < 3)
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 (2.6.1)
119
- mini_portile (0.6.2)
120
- minitest (5.7.0)
121
- nenv (0.2.0)
122
- netrc (0.10.3)
123
- nokogiri (1.6.6.2)
124
- mini_portile (~> 0.6.0)
125
- notiffany (0.0.6)
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
- pry (0.10.1)
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.3)
138
- actionmailer (= 4.2.3)
139
- actionpack (= 4.2.3)
140
- actionview (= 4.2.3)
141
- activejob (= 4.2.3)
142
- activemodel (= 4.2.3)
143
- activerecord (= 4.2.3)
144
- activesupport (= 4.2.3)
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.3)
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.6)
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.2)
157
+ rails-html-sanitizer (1.0.3)
155
158
  loofah (~> 2.0)
156
- railties (4.2.3)
157
- actionpack (= 4.2.3)
158
- activesupport (= 4.2.3)
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 (10.4.2)
162
- rb-fsevent (0.9.5)
163
- rb-inotify (0.9.5)
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.1.0)
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.3.0)
176
- rspec-core (~> 3.3.0)
177
- rspec-expectations (~> 3.3.0)
178
- rspec-mocks (~> 3.3.0)
179
- rspec-core (3.3.1)
180
- rspec-support (~> 3.3.0)
181
- rspec-expectations (3.3.0)
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.3.0)
184
- rspec-mocks (3.3.1)
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.3.0)
187
- rspec-rails (3.3.2)
188
- actionpack (>= 3.0, < 4.3)
189
- activesupport (>= 3.0, < 4.3)
190
- railties (>= 3.0, < 4.3)
191
- rspec-core (~> 3.3.0)
192
- rspec-expectations (~> 3.3.0)
193
- rspec-mocks (~> 3.3.0)
194
- rspec-support (~> 3.3.0)
195
- rspec-support (3.3.0)
196
- ruby-ole (1.2.11.8)
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.10.0)
199
+ simplecov (0.12.0)
200
200
  docile (~> 1.1.0)
201
- json (~> 1.8)
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.0.3)
205
+ spreadsheet (1.1.2)
206
206
  ruby-ole (>= 1.0)
207
- sprockets (3.2.0)
208
- rack (~> 1.0)
209
- sprockets-rails (2.3.2)
210
- actionpack (>= 3.0)
211
- activesupport (>= 3.0)
212
- sprockets (>= 2.8, < 4.0)
213
- sqlite3 (1.3.10)
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.6.3)
217
+ thin (1.7.0)
217
218
  daemons (~> 1.0, >= 1.0.9)
218
- eventmachine (~> 1.0)
219
- rack (~> 1.0)
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.5.4)
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
@@ -1,6 +1,6 @@
1
1
  GIT
2
2
  remote: git://github.com/straydogstudio/acts_as_xlsx.git
3
- revision: 74c00b5054ef96ced7bd55753015164f6aaf13ab
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.4.4)
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.0)
57
- coveralls (0.8.2)
58
+ coderay (1.1.1)
59
+ concurrent-ruby (1.0.2)
60
+ coveralls (0.8.13)
58
61
  json (~> 1.8)
59
- rest-client (>= 1.6.8, < 2)
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.7)
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.12.8)
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.1)
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.3)
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.0.2)
96
- rb-fsevent (>= 0.9.3)
97
- rb-inotify (>= 0.9)
98
- lumberjack (1.0.9)
99
- mail (2.6.3)
100
- mime-types (>= 1.16, < 3)
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 (2.6.1)
103
- mini_portile (0.6.2)
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.11.2)
106
- nenv (0.2.0)
107
- netrc (0.10.3)
108
- nokogiri (1.6.6.2)
109
- mini_portile (~> 0.6.0)
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.1)
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 (10.4.2)
136
- rb-fsevent (0.9.5)
137
- rb-inotify (0.9.5)
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.3.0)
148
- rspec-core (~> 3.3.0)
149
- rspec-expectations (~> 3.3.0)
150
- rspec-mocks (~> 3.3.0)
151
- rspec-core (3.3.1)
152
- rspec-support (~> 3.3.0)
153
- rspec-expectations (3.3.0)
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.3.0)
156
- rspec-mocks (3.3.1)
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.3.0)
159
- rspec-rails (3.3.2)
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.3.0)
164
- rspec-expectations (~> 3.3.0)
165
- rspec-mocks (~> 3.3.0)
166
- rspec-support (~> 3.3.0)
167
- rspec-support (3.3.0)
168
- ruby-ole (1.2.11.8)
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.10.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.0.3)
175
+ spreadsheet (1.1.2)
178
176
  ruby-ole (>= 1.0)
179
- sprockets (3.2.0)
180
- rack (~> 1.0)
181
- sprockets-rails (2.3.2)
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.10)
184
+ sqlite3 (1.3.11)
186
185
  term-ansicolor (1.3.2)
187
186
  tins (~> 1.0)
188
- thin (1.6.3)
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.5.4)
195
- tzinfo (0.3.44)
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