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.
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
@@ -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,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.12)
21
- actionpack (= 4.1.12)
22
- actionview (= 4.1.12)
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.12)
25
- actionview (= 4.1.12)
26
- activesupport (= 4.1.12)
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.12)
30
- activesupport (= 4.1.12)
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.12)
34
- activesupport (= 4.1.12)
33
+ activemodel (4.1.15)
34
+ activesupport (= 4.1.15)
35
35
  builder (~> 3.1)
36
- activerecord (4.1.12)
37
- activemodel (= 4.1.12)
38
- activesupport (= 4.1.12)
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.12)
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.4.4)
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.0)
59
- coveralls (0.8.2)
60
+ coderay (1.1.1)
61
+ concurrent-ruby (1.0.2)
62
+ coveralls (0.8.13)
60
63
  json (~> 1.8)
61
- rest-client (>= 1.6.8, < 2)
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.7)
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.12.8)
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.1)
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.3)
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.0.2)
98
- rb-fsevent (>= 0.9.3)
99
- rb-inotify (>= 0.9)
100
- lumberjack (1.0.9)
101
- mail (2.6.3)
102
- mime-types (>= 1.16, < 3)
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 (2.6.1)
105
- mini_portile (0.6.2)
106
- minitest (5.7.0)
107
- nenv (0.2.0)
108
- netrc (0.10.3)
109
- nokogiri (1.6.6.2)
110
- mini_portile (~> 0.6.0)
111
- notiffany (0.0.6)
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.1)
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.12)
124
- actionmailer (= 4.1.12)
125
- actionpack (= 4.1.12)
126
- actionview (= 4.1.12)
127
- activemodel (= 4.1.12)
128
- activerecord (= 4.1.12)
129
- activesupport (= 4.1.12)
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.12)
132
+ railties (= 4.1.15)
132
133
  sprockets-rails (~> 2.0)
133
- railties (4.1.12)
134
- actionpack (= 4.1.12)
135
- activesupport (= 4.1.12)
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 (10.4.2)
139
- rb-fsevent (0.9.5)
140
- rb-inotify (0.9.5)
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.3.0)
151
- rspec-core (~> 3.3.0)
152
- rspec-expectations (~> 3.3.0)
153
- rspec-mocks (~> 3.3.0)
154
- rspec-core (3.3.1)
155
- rspec-support (~> 3.3.0)
156
- rspec-expectations (3.3.0)
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.3.0)
159
- rspec-mocks (3.3.1)
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.3.0)
162
- rspec-rails (3.3.2)
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.3.0)
167
- rspec-expectations (~> 3.3.0)
168
- rspec-mocks (~> 3.3.0)
169
- rspec-support (~> 3.3.0)
170
- rspec-support (3.3.0)
171
- ruby-ole (1.2.11.8)
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.10.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.0.3)
178
+ spreadsheet (1.1.2)
181
179
  ruby-ole (>= 1.0)
182
- sprockets (3.2.0)
183
- rack (~> 1.0)
184
- sprockets-rails (2.3.2)
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.10)
187
+ sqlite3 (1.3.11)
189
188
  term-ansicolor (1.3.2)
190
189
  tins (~> 1.0)
191
- thin (1.6.3)
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.5.4)
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
@@ -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,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.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