axlsx_rails 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +38 -13
- data/Gemfile +6 -6
- data/Gemfile.lock +121 -125
- data/Gemfile.lock.3.1 +112 -116
- data/Gemfile.lock.3.2 +119 -123
- data/Gemfile.lock.3.2.14 +206 -0
- data/Gemfile.lock.4.0 +205 -0
- data/Gemfile.lock.orig +85 -84
- data/Guardfile +1 -0
- data/README.md +81 -16
- data/lib/axlsx_rails/action_controller.rb +5 -1
- data/lib/axlsx_rails/version.rb +1 -1
- data/spec/axlsx_builder_spec.rb +2 -2
- data/spec/axlsx_mailer_spec.rb +15 -0
- data/spec/axlsx_request_spec.rb +33 -9
- data/spec/ci.sh +1 -1
- data/spec/dummy/app/controllers/home_controller.rb +5 -2
- data/spec/dummy/app/controllers/users_controller.rb +15 -0
- data/spec/dummy/app/mailers/notifier.rb +26 -0
- data/spec/dummy/app/models/user.rb +4 -0
- data/spec/dummy/app/views/notifier/instructions.html.erb +14 -0
- data/spec/dummy/app/views/users/mailers/instructions.xlsx.axlsx +5 -0
- data/spec/dummy/app/views/users/respond_with.xlsx.axlsx +8 -0
- data/spec/dummy/config/environments/development.rb +2 -0
- data/spec/dummy/config/environments/production.rb +2 -0
- data/spec/dummy/config/environments/test.rb +4 -1
- data/spec/dummy/config/initializers/secret_token.rb +1 -0
- data/spec/dummy/config/routes.rb +2 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +49 -0
- data/spec/dummy/log/test.log +26205 -0
- data/spec/spec_helper.rb +4 -1
- data/spec/test_3.1.sh +1 -1
- data/spec/test_3.2.sh +1 -1
- data/spec/test_4.0.sh +1 -1
- metadata +73 -63
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: eea157dd7e0e3cc7f714dbe003e3c75f4427413d
|
4
|
+
data.tar.gz: 3efdd0e6acd9a034364f6c77c651453ddf453d14
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c71dfcdc4090a22a759760ebc013330eecaae60a0c757e68f6cdb40c3ac18944cf43a9f4b709f16cd80894530332abe462b8463969296103c218975bbe3ada38
|
7
|
+
data.tar.gz: e4191c2c82dae0b0f4c6643cdbf6dc54dd32a1a42bb83041a0872472340c0247d436e73e0d123bfbe65b74c9c045c8bd97ad93f8e76620b636992dda3776a551
|
data/CHANGELOG.md
CHANGED
@@ -1,19 +1,44 @@
|
|
1
1
|
# Change log
|
2
2
|
|
3
|
-
|
4
|
-
- Fix for absolute template paths
|
3
|
+
**October 11, 2013**
|
5
4
|
|
6
|
-
-
|
7
|
-
- Partials tested
|
5
|
+
- Handle (and test) respond_to override
|
8
6
|
|
9
|
-
|
10
|
-
- Travis-ci added (thanks [randym](https://github.com/randym))
|
11
|
-
- render statements and filename tests fixes (thanks [engwan](https://github.com/engwan))
|
7
|
+
**October 4, 2013**
|
12
8
|
|
13
|
-
-
|
14
|
-
|
15
|
-
|
9
|
+
- Added coveralls
|
10
|
+
- Raised testing to axlsx 2.0.1, roo 1.12.2, and rubyzip 1.0.0
|
11
|
+
|
12
|
+
**July 25, 2013**
|
13
|
+
|
14
|
+
- Documentation improved
|
15
|
+
- Testing for generating partial in mailer
|
16
|
+
|
17
|
+
**January 18, 2013**: 0.1.4 release
|
18
|
+
|
19
|
+
- Now supports Rails 4 (thanks [Envek](https://github.com/Envek))
|
20
|
+
- If you call render :xlsx on a request without :xlsx format, it should force the :xlsx format. Works on Rails 3.2+.
|
21
|
+
|
22
|
+
**December 6, 2012**: 0.1.3 release
|
23
|
+
|
24
|
+
- Fix for absolute template paths
|
25
|
+
|
26
|
+
**July 25, 2012**: 0.1.2 release
|
27
|
+
|
28
|
+
- Partials tested
|
29
|
+
|
30
|
+
**July 19, 2012**: 0.1.1 release
|
31
|
+
|
32
|
+
- Travis-ci added (thanks [randym](https://github.com/randym))
|
33
|
+
- render statements and filename tests fixes (thanks [engwan](https://github.com/engwan))
|
34
|
+
|
35
|
+
**July 17, 2012**: 0.1.0 release
|
36
|
+
|
37
|
+
- Tests completed
|
38
|
+
- Acts_as_xlsx tested, example in docs
|
39
|
+
|
40
|
+
**July 12, 2012**: 0.0.1 release
|
41
|
+
|
42
|
+
- Initial posting.
|
43
|
+
- It works, but there are no tests! Bad programmer!
|
16
44
|
|
17
|
-
- **July 12, 2012**: 0.0.1 release
|
18
|
-
- Initial posting.
|
19
|
-
- It works, but there are no tests! Bad programmer!
|
data/Gemfile
CHANGED
@@ -9,15 +9,15 @@ case ENV['RAILS_VERSION']
|
|
9
9
|
when '3.1', '3.2'
|
10
10
|
gem 'rails', "~> #{ENV['RAILS_VERSION']}.0"
|
11
11
|
when '4.0'
|
12
|
-
|
13
|
-
gem '
|
14
|
-
gem '
|
15
|
-
gem '
|
16
|
-
gem 'protected_attributes', github: 'rails/protected_attributes'
|
12
|
+
gem 'rails'
|
13
|
+
gem 'arel'
|
14
|
+
gem 'activerecord-deprecated_finders'
|
15
|
+
gem 'protected_attributes'
|
17
16
|
end
|
18
17
|
|
19
18
|
# jquery-rails is used by the dummy application
|
20
19
|
gem "jquery-rails"
|
20
|
+
gem "thin"
|
21
21
|
|
22
22
|
# Declare any dependencies that are still in development here instead of in
|
23
23
|
# your gemspec. These might include edge Rails or gems from your path or
|
@@ -25,4 +25,4 @@ gem "jquery-rails"
|
|
25
25
|
# your gem to rubygems.org.
|
26
26
|
|
27
27
|
# To use debugger
|
28
|
-
# gem 'debugger'
|
28
|
+
# gem 'pry-debugger'
|
data/Gemfile.lock
CHANGED
@@ -1,194 +1,187 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
axlsx_rails (0.1.
|
4
|
+
axlsx_rails (0.1.5)
|
5
5
|
axlsx
|
6
6
|
rails (>= 3.1)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: http://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actionmailer (3.2.
|
12
|
-
actionpack (= 3.2.
|
13
|
-
mail (~> 2.
|
14
|
-
actionpack (3.2.
|
15
|
-
activemodel (= 3.2.
|
16
|
-
activesupport (= 3.2.
|
11
|
+
actionmailer (3.2.15.rc3)
|
12
|
+
actionpack (= 3.2.15.rc3)
|
13
|
+
mail (~> 2.5.4)
|
14
|
+
actionpack (3.2.15.rc3)
|
15
|
+
activemodel (= 3.2.15.rc3)
|
16
|
+
activesupport (= 3.2.15.rc3)
|
17
17
|
builder (~> 3.0.0)
|
18
18
|
erubis (~> 2.7.0)
|
19
19
|
journey (~> 1.0.4)
|
20
|
-
rack (~> 1.4.
|
20
|
+
rack (~> 1.4.5)
|
21
21
|
rack-cache (~> 1.2)
|
22
22
|
rack-test (~> 0.6.1)
|
23
23
|
sprockets (~> 2.2.1)
|
24
|
-
activemodel (3.2.
|
25
|
-
activesupport (= 3.2.
|
24
|
+
activemodel (3.2.15.rc3)
|
25
|
+
activesupport (= 3.2.15.rc3)
|
26
26
|
builder (~> 3.0.0)
|
27
|
-
activerecord (3.2.
|
28
|
-
activemodel (= 3.2.
|
29
|
-
activesupport (= 3.2.
|
27
|
+
activerecord (3.2.15.rc3)
|
28
|
+
activemodel (= 3.2.15.rc3)
|
29
|
+
activesupport (= 3.2.15.rc3)
|
30
30
|
arel (~> 3.0.2)
|
31
31
|
tzinfo (~> 0.3.29)
|
32
|
-
activeresource (3.2.
|
33
|
-
activemodel (= 3.2.
|
34
|
-
activesupport (= 3.2.
|
35
|
-
activesupport (3.2.
|
36
|
-
i18n (~> 0.6)
|
32
|
+
activeresource (3.2.15.rc3)
|
33
|
+
activemodel (= 3.2.15.rc3)
|
34
|
+
activesupport (= 3.2.15.rc3)
|
35
|
+
activesupport (3.2.15.rc3)
|
36
|
+
i18n (~> 0.6, >= 0.6.4)
|
37
37
|
multi_json (~> 1.0)
|
38
38
|
acts_as_xlsx (1.0.6)
|
39
39
|
activerecord (>= 2.3.9)
|
40
40
|
axlsx (>= 1.0.13)
|
41
41
|
i18n (>= 0.4.1)
|
42
|
-
addressable (2.3.2)
|
43
42
|
arel (3.0.2)
|
44
|
-
axlsx (
|
43
|
+
axlsx (2.0.1)
|
45
44
|
htmlentities (~> 4.3.1)
|
46
45
|
nokogiri (>= 1.4.1)
|
47
|
-
rubyzip (
|
46
|
+
rubyzip (~> 1.0.0)
|
48
47
|
builder (3.0.4)
|
49
|
-
capybara (2.0
|
48
|
+
capybara (2.1.0)
|
50
49
|
mime-types (>= 1.16)
|
51
50
|
nokogiri (>= 1.3.3)
|
52
51
|
rack (>= 1.0.0)
|
53
52
|
rack-test (>= 0.5.4)
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
53
|
+
xpath (~> 2.0)
|
54
|
+
celluloid (0.15.2)
|
55
|
+
timers (~> 1.1.0)
|
56
|
+
coderay (1.0.9)
|
57
|
+
coveralls (0.7.0)
|
58
|
+
multi_json (~> 1.3)
|
59
|
+
rest-client
|
60
|
+
simplecov (>= 0.7)
|
61
|
+
term-ansicolor
|
62
|
+
thor
|
63
|
+
daemons (1.1.9)
|
64
|
+
diff-lcs (1.2.4)
|
61
65
|
erubis (2.7.0)
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
google-spreadsheet-ruby (0.3.0)
|
66
|
-
google_drive (>= 0.3.0)
|
67
|
-
google_drive (0.3.2)
|
68
|
-
nokogiri (>= 1.4.4, != 1.5.2, != 1.5.1)
|
69
|
-
oauth (>= 0.3.6)
|
70
|
-
oauth2 (>= 0.5.0)
|
66
|
+
eventmachine (1.0.3)
|
67
|
+
ffi (1.9.0)
|
68
|
+
formatador (0.2.4)
|
71
69
|
growl (1.0.3)
|
72
|
-
guard (
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
70
|
+
guard (2.0.5)
|
71
|
+
formatador (>= 0.2.4)
|
72
|
+
listen (~> 2.0)
|
73
|
+
lumberjack (~> 1.0)
|
74
|
+
pry (>= 0.9.12)
|
75
|
+
thor (>= 0.18.1)
|
76
|
+
guard-rspec (4.0.0)
|
77
|
+
guard (~> 2.0)
|
78
|
+
rspec (~> 2.14)
|
79
|
+
hike (1.2.3)
|
81
80
|
htmlentities (4.3.1)
|
82
|
-
|
83
|
-
i18n (0.6.1)
|
81
|
+
i18n (0.6.5)
|
84
82
|
journey (1.0.4)
|
85
|
-
jquery-rails (
|
83
|
+
jquery-rails (3.0.4)
|
86
84
|
railties (>= 3.0, < 5.0)
|
87
85
|
thor (>= 0.14, < 2.0)
|
88
|
-
json (1.
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
log4r (1.1.10)
|
96
|
-
lumberjack (1.0.2)
|
97
|
-
mail (2.4.4)
|
98
|
-
i18n (>= 0.4.0)
|
86
|
+
json (1.8.0)
|
87
|
+
listen (2.0.4)
|
88
|
+
celluloid (>= 0.15.2)
|
89
|
+
rb-fsevent (>= 0.9.3)
|
90
|
+
rb-inotify (>= 0.9)
|
91
|
+
lumberjack (1.0.4)
|
92
|
+
mail (2.5.4)
|
99
93
|
mime-types (~> 1.16)
|
100
94
|
treetop (~> 1.4.8)
|
101
|
-
method_source (0.8.
|
102
|
-
mime-types (1.
|
103
|
-
|
104
|
-
|
105
|
-
nokogiri (1.
|
106
|
-
|
107
|
-
oauth2 (0.8.0)
|
108
|
-
faraday (~> 0.8)
|
109
|
-
httpauth (~> 0.1)
|
110
|
-
jwt (~> 0.1.4)
|
111
|
-
multi_json (~> 1.0)
|
112
|
-
rack (~> 1.2)
|
95
|
+
method_source (0.8.2)
|
96
|
+
mime-types (1.25)
|
97
|
+
mini_portile (0.5.1)
|
98
|
+
multi_json (1.8.1)
|
99
|
+
nokogiri (1.6.0)
|
100
|
+
mini_portile (~> 0.5.0)
|
113
101
|
polyglot (0.3.3)
|
114
|
-
pry (0.9.
|
102
|
+
pry (0.9.12.2)
|
115
103
|
coderay (~> 1.0.5)
|
116
104
|
method_source (~> 0.8)
|
117
|
-
slop (~> 3.
|
118
|
-
rack (1.4.
|
105
|
+
slop (~> 3.4)
|
106
|
+
rack (1.4.5)
|
119
107
|
rack-cache (1.2)
|
120
108
|
rack (>= 0.4)
|
121
|
-
rack-ssl (1.3.
|
109
|
+
rack-ssl (1.3.3)
|
122
110
|
rack
|
123
111
|
rack-test (0.6.2)
|
124
112
|
rack (>= 1.0)
|
125
|
-
rails (3.2.
|
126
|
-
actionmailer (= 3.2.
|
127
|
-
actionpack (= 3.2.
|
128
|
-
activerecord (= 3.2.
|
129
|
-
activeresource (= 3.2.
|
130
|
-
activesupport (= 3.2.
|
113
|
+
rails (3.2.15.rc3)
|
114
|
+
actionmailer (= 3.2.15.rc3)
|
115
|
+
actionpack (= 3.2.15.rc3)
|
116
|
+
activerecord (= 3.2.15.rc3)
|
117
|
+
activeresource (= 3.2.15.rc3)
|
118
|
+
activesupport (= 3.2.15.rc3)
|
131
119
|
bundler (~> 1.0)
|
132
|
-
railties (= 3.2.
|
133
|
-
railties (3.2.
|
134
|
-
actionpack (= 3.2.
|
135
|
-
activesupport (= 3.2.
|
120
|
+
railties (= 3.2.15.rc3)
|
121
|
+
railties (3.2.15.rc3)
|
122
|
+
actionpack (= 3.2.15.rc3)
|
123
|
+
activesupport (= 3.2.15.rc3)
|
136
124
|
rack-ssl (~> 1.3.2)
|
137
125
|
rake (>= 0.8.7)
|
138
126
|
rdoc (~> 3.4)
|
139
127
|
thor (>= 0.14.6, < 2.0)
|
140
|
-
rake (10.0
|
141
|
-
rb-fsevent (0.9.
|
142
|
-
|
128
|
+
rake (10.1.0)
|
129
|
+
rb-fsevent (0.9.3)
|
130
|
+
rb-inotify (0.9.2)
|
131
|
+
ffi (>= 0.5.0)
|
132
|
+
rdoc (3.12.2)
|
143
133
|
json (~> 1.4)
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
nokogiri
|
148
|
-
rubyzip
|
134
|
+
rest-client (1.6.7)
|
135
|
+
mime-types (>= 1.16)
|
136
|
+
roo (1.12.2)
|
137
|
+
nokogiri
|
138
|
+
rubyzip
|
149
139
|
spreadsheet (> 0.6.4)
|
150
|
-
|
151
|
-
|
152
|
-
rspec-
|
153
|
-
rspec-
|
154
|
-
|
155
|
-
rspec-
|
156
|
-
|
157
|
-
|
158
|
-
rspec-
|
159
|
-
rspec-rails (2.12.0)
|
140
|
+
rspec (2.14.1)
|
141
|
+
rspec-core (~> 2.14.0)
|
142
|
+
rspec-expectations (~> 2.14.0)
|
143
|
+
rspec-mocks (~> 2.14.0)
|
144
|
+
rspec-core (2.14.5)
|
145
|
+
rspec-expectations (2.14.3)
|
146
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
147
|
+
rspec-mocks (2.14.3)
|
148
|
+
rspec-rails (2.14.0)
|
160
149
|
actionpack (>= 3.0)
|
161
150
|
activesupport (>= 3.0)
|
162
151
|
railties (>= 3.0)
|
163
|
-
rspec-core (~> 2.
|
164
|
-
rspec-expectations (~> 2.
|
165
|
-
rspec-mocks (~> 2.
|
166
|
-
ruby-ole (1.2.11.
|
167
|
-
rubyzip (0.
|
168
|
-
|
169
|
-
childprocess (>= 0.2.5)
|
170
|
-
libwebsocket (~> 0.1.3)
|
152
|
+
rspec-core (~> 2.14.0)
|
153
|
+
rspec-expectations (~> 2.14.0)
|
154
|
+
rspec-mocks (~> 2.14.0)
|
155
|
+
ruby-ole (1.2.11.7)
|
156
|
+
rubyzip (1.0.0)
|
157
|
+
simplecov (0.7.1)
|
171
158
|
multi_json (~> 1.0)
|
172
|
-
|
173
|
-
|
174
|
-
|
159
|
+
simplecov-html (~> 0.7.1)
|
160
|
+
simplecov-html (0.7.1)
|
161
|
+
slop (3.4.6)
|
162
|
+
spreadsheet (0.9.0)
|
175
163
|
ruby-ole (>= 1.0)
|
176
164
|
sprockets (2.2.2)
|
177
165
|
hike (~> 1.2)
|
178
166
|
multi_json (~> 1.0)
|
179
167
|
rack (~> 1.0)
|
180
168
|
tilt (~> 1.1, != 1.3.0)
|
181
|
-
sqlite3 (1.3.
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
169
|
+
sqlite3 (1.3.8)
|
170
|
+
term-ansicolor (1.2.2)
|
171
|
+
tins (~> 0.8)
|
172
|
+
thin (1.5.1)
|
173
|
+
daemons (>= 1.0.9)
|
174
|
+
eventmachine (>= 0.12.6)
|
175
|
+
rack (>= 1.0.0)
|
176
|
+
thor (0.18.1)
|
177
|
+
tilt (1.4.1)
|
178
|
+
timers (1.1.0)
|
179
|
+
tins (0.12.0)
|
180
|
+
treetop (1.4.15)
|
187
181
|
polyglot
|
188
182
|
polyglot (>= 0.3.1)
|
189
|
-
tzinfo (0.3.
|
190
|
-
|
191
|
-
xpath (1.0.0)
|
183
|
+
tzinfo (0.3.38)
|
184
|
+
xpath (2.0.0)
|
192
185
|
nokogiri (~> 1.3)
|
193
186
|
|
194
187
|
PLATFORMS
|
@@ -199,6 +192,7 @@ DEPENDENCIES
|
|
199
192
|
axlsx_rails!
|
200
193
|
bundler
|
201
194
|
capybara
|
195
|
+
coveralls
|
202
196
|
growl
|
203
197
|
guard-rspec
|
204
198
|
jquery-rails
|
@@ -206,4 +200,6 @@ DEPENDENCIES
|
|
206
200
|
rb-fsevent
|
207
201
|
roo
|
208
202
|
rspec-rails
|
203
|
+
rubyzip
|
209
204
|
sqlite3
|
205
|
+
thin
|
data/Gemfile.lock.3.1
CHANGED
@@ -8,12 +8,12 @@ PATH
|
|
8
8
|
GEM
|
9
9
|
remote: http://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actionmailer (3.1.
|
12
|
-
actionpack (= 3.1.
|
13
|
-
mail (~> 2.
|
14
|
-
actionpack (3.1.
|
15
|
-
activemodel (= 3.1.
|
16
|
-
activesupport (= 3.1.
|
11
|
+
actionmailer (3.1.12)
|
12
|
+
actionpack (= 3.1.12)
|
13
|
+
mail (~> 2.4.4)
|
14
|
+
actionpack (3.1.12)
|
15
|
+
activemodel (= 3.1.12)
|
16
|
+
activesupport (= 3.1.12)
|
17
17
|
builder (~> 3.0.0)
|
18
18
|
erubis (~> 2.7.0)
|
19
19
|
i18n (~> 0.6)
|
@@ -22,174 +22,167 @@ GEM
|
|
22
22
|
rack-mount (~> 0.8.2)
|
23
23
|
rack-test (~> 0.6.1)
|
24
24
|
sprockets (~> 2.0.4)
|
25
|
-
activemodel (3.1.
|
26
|
-
activesupport (= 3.1.
|
25
|
+
activemodel (3.1.12)
|
26
|
+
activesupport (= 3.1.12)
|
27
27
|
builder (~> 3.0.0)
|
28
28
|
i18n (~> 0.6)
|
29
|
-
activerecord (3.1.
|
30
|
-
activemodel (= 3.1.
|
31
|
-
activesupport (= 3.1.
|
29
|
+
activerecord (3.1.12)
|
30
|
+
activemodel (= 3.1.12)
|
31
|
+
activesupport (= 3.1.12)
|
32
32
|
arel (~> 2.2.3)
|
33
33
|
tzinfo (~> 0.3.29)
|
34
|
-
activeresource (3.1.
|
35
|
-
activemodel (= 3.1.
|
36
|
-
activesupport (= 3.1.
|
37
|
-
activesupport (3.1.
|
38
|
-
multi_json (
|
34
|
+
activeresource (3.1.12)
|
35
|
+
activemodel (= 3.1.12)
|
36
|
+
activesupport (= 3.1.12)
|
37
|
+
activesupport (3.1.12)
|
38
|
+
multi_json (~> 1.0)
|
39
39
|
acts_as_xlsx (1.0.6)
|
40
40
|
activerecord (>= 2.3.9)
|
41
41
|
axlsx (>= 1.0.13)
|
42
42
|
i18n (>= 0.4.1)
|
43
|
-
addressable (2.3.2)
|
44
43
|
arel (2.2.3)
|
45
|
-
axlsx (
|
44
|
+
axlsx (2.0.1)
|
46
45
|
htmlentities (~> 4.3.1)
|
47
46
|
nokogiri (>= 1.4.1)
|
48
|
-
rubyzip (
|
47
|
+
rubyzip (~> 1.0.0)
|
49
48
|
builder (3.0.4)
|
50
|
-
capybara (2.0
|
49
|
+
capybara (2.1.0)
|
51
50
|
mime-types (>= 1.16)
|
52
51
|
nokogiri (>= 1.3.3)
|
53
52
|
rack (>= 1.0.0)
|
54
53
|
rack-test (>= 0.5.4)
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
54
|
+
xpath (~> 2.0)
|
55
|
+
coderay (1.0.9)
|
56
|
+
coveralls (0.7.0)
|
57
|
+
multi_json (~> 1.3)
|
58
|
+
rest-client
|
59
|
+
simplecov (>= 0.7)
|
60
|
+
term-ansicolor
|
61
|
+
thor
|
62
|
+
daemons (1.1.9)
|
63
|
+
diff-lcs (1.2.4)
|
62
64
|
erubis (2.7.0)
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
google-spreadsheet-ruby (0.3.0)
|
67
|
-
google_drive (>= 0.3.0)
|
68
|
-
google_drive (0.3.2)
|
69
|
-
nokogiri (>= 1.4.4, != 1.5.2, != 1.5.1)
|
70
|
-
oauth (>= 0.3.6)
|
71
|
-
oauth2 (>= 0.5.0)
|
65
|
+
eventmachine (1.0.3)
|
66
|
+
ffi (1.9.0)
|
67
|
+
formatador (0.2.4)
|
72
68
|
growl (1.0.3)
|
73
|
-
guard (1.
|
74
|
-
|
69
|
+
guard (1.8.3)
|
70
|
+
formatador (>= 0.2.4)
|
71
|
+
listen (~> 1.3)
|
75
72
|
lumberjack (>= 1.0.2)
|
76
73
|
pry (>= 0.9.10)
|
77
74
|
thor (>= 0.14.6)
|
78
|
-
guard-rspec (
|
79
|
-
guard (>= 1.
|
80
|
-
rspec (~> 2.
|
81
|
-
hike (1.2.
|
75
|
+
guard-rspec (3.1.0)
|
76
|
+
guard (>= 1.8)
|
77
|
+
rspec (~> 2.13)
|
78
|
+
hike (1.2.3)
|
82
79
|
htmlentities (4.3.1)
|
83
|
-
|
84
|
-
|
85
|
-
jquery-rails (2.1.4)
|
80
|
+
i18n (0.6.5)
|
81
|
+
jquery-rails (3.0.4)
|
86
82
|
railties (>= 3.0, < 5.0)
|
87
83
|
thor (>= 0.14, < 2.0)
|
88
|
-
json (1.
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
log4r (1.1.10)
|
96
|
-
lumberjack (1.0.2)
|
97
|
-
mail (2.3.3)
|
84
|
+
json (1.8.0)
|
85
|
+
listen (1.3.1)
|
86
|
+
rb-fsevent (>= 0.9.3)
|
87
|
+
rb-inotify (>= 0.9)
|
88
|
+
rb-kqueue (>= 0.2)
|
89
|
+
lumberjack (1.0.4)
|
90
|
+
mail (2.4.4)
|
98
91
|
i18n (>= 0.4.0)
|
99
92
|
mime-types (~> 1.16)
|
100
93
|
treetop (~> 1.4.8)
|
101
|
-
method_source (0.8.
|
102
|
-
mime-types (1.
|
103
|
-
|
104
|
-
|
105
|
-
nokogiri (1.
|
106
|
-
|
107
|
-
oauth2 (0.8.0)
|
108
|
-
faraday (~> 0.8)
|
109
|
-
httpauth (~> 0.1)
|
110
|
-
jwt (~> 0.1.4)
|
111
|
-
multi_json (~> 1.0)
|
112
|
-
rack (~> 1.2)
|
94
|
+
method_source (0.8.2)
|
95
|
+
mime-types (1.25)
|
96
|
+
mini_portile (0.5.1)
|
97
|
+
multi_json (1.8.0)
|
98
|
+
nokogiri (1.6.0)
|
99
|
+
mini_portile (~> 0.5.0)
|
113
100
|
polyglot (0.3.3)
|
114
|
-
pry (0.9.
|
101
|
+
pry (0.9.12.2)
|
115
102
|
coderay (~> 1.0.5)
|
116
103
|
method_source (~> 0.8)
|
117
104
|
slop (~> 3.4)
|
118
|
-
rack (1.3.
|
105
|
+
rack (1.3.10)
|
119
106
|
rack-cache (1.2)
|
120
107
|
rack (>= 0.4)
|
121
108
|
rack-mount (0.8.3)
|
122
109
|
rack (>= 1.0.0)
|
123
|
-
rack-ssl (1.3.
|
110
|
+
rack-ssl (1.3.3)
|
124
111
|
rack
|
125
112
|
rack-test (0.6.2)
|
126
113
|
rack (>= 1.0)
|
127
|
-
rails (3.1.
|
128
|
-
actionmailer (= 3.1.
|
129
|
-
actionpack (= 3.1.
|
130
|
-
activerecord (= 3.1.
|
131
|
-
activeresource (= 3.1.
|
132
|
-
activesupport (= 3.1.
|
114
|
+
rails (3.1.12)
|
115
|
+
actionmailer (= 3.1.12)
|
116
|
+
actionpack (= 3.1.12)
|
117
|
+
activerecord (= 3.1.12)
|
118
|
+
activeresource (= 3.1.12)
|
119
|
+
activesupport (= 3.1.12)
|
133
120
|
bundler (~> 1.0)
|
134
|
-
railties (= 3.1.
|
135
|
-
railties (3.1.
|
136
|
-
actionpack (= 3.1.
|
137
|
-
activesupport (= 3.1.
|
121
|
+
railties (= 3.1.12)
|
122
|
+
railties (3.1.12)
|
123
|
+
actionpack (= 3.1.12)
|
124
|
+
activesupport (= 3.1.12)
|
138
125
|
rack-ssl (~> 1.3.2)
|
139
126
|
rake (>= 0.8.7)
|
140
127
|
rdoc (~> 3.4)
|
141
128
|
thor (~> 0.14.6)
|
142
|
-
rake (10.0
|
129
|
+
rake (10.1.0)
|
143
130
|
rb-fsevent (0.9.3)
|
144
|
-
|
131
|
+
rb-inotify (0.9.2)
|
132
|
+
ffi (>= 0.5.0)
|
133
|
+
rb-kqueue (0.2.0)
|
134
|
+
ffi (>= 0.5.0)
|
135
|
+
rdoc (3.12.2)
|
145
136
|
json (~> 1.4)
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
nokogiri
|
150
|
-
rubyzip
|
137
|
+
rest-client (1.6.7)
|
138
|
+
mime-types (>= 1.16)
|
139
|
+
roo (1.12.2)
|
140
|
+
nokogiri
|
141
|
+
rubyzip
|
151
142
|
spreadsheet (> 0.6.4)
|
152
|
-
|
153
|
-
|
154
|
-
rspec-
|
155
|
-
rspec-
|
156
|
-
|
157
|
-
rspec-
|
158
|
-
|
159
|
-
|
160
|
-
rspec-
|
161
|
-
rspec-rails (2.12.2)
|
143
|
+
rspec (2.14.1)
|
144
|
+
rspec-core (~> 2.14.0)
|
145
|
+
rspec-expectations (~> 2.14.0)
|
146
|
+
rspec-mocks (~> 2.14.0)
|
147
|
+
rspec-core (2.14.5)
|
148
|
+
rspec-expectations (2.14.3)
|
149
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
150
|
+
rspec-mocks (2.14.3)
|
151
|
+
rspec-rails (2.14.0)
|
162
152
|
actionpack (>= 3.0)
|
163
153
|
activesupport (>= 3.0)
|
164
154
|
railties (>= 3.0)
|
165
|
-
rspec-core (~> 2.
|
166
|
-
rspec-expectations (~> 2.
|
167
|
-
rspec-mocks (~> 2.
|
168
|
-
ruby-ole (1.2.11.
|
169
|
-
rubyzip (0.
|
170
|
-
|
171
|
-
childprocess (>= 0.2.5)
|
172
|
-
libwebsocket (~> 0.1.3)
|
155
|
+
rspec-core (~> 2.14.0)
|
156
|
+
rspec-expectations (~> 2.14.0)
|
157
|
+
rspec-mocks (~> 2.14.0)
|
158
|
+
ruby-ole (1.2.11.7)
|
159
|
+
rubyzip (1.0.0)
|
160
|
+
simplecov (0.7.1)
|
173
161
|
multi_json (~> 1.0)
|
174
|
-
|
175
|
-
|
176
|
-
|
162
|
+
simplecov-html (~> 0.7.1)
|
163
|
+
simplecov-html (0.7.1)
|
164
|
+
slop (3.4.6)
|
165
|
+
spreadsheet (0.9.0)
|
177
166
|
ruby-ole (>= 1.0)
|
178
167
|
sprockets (2.0.4)
|
179
168
|
hike (~> 1.2)
|
180
169
|
rack (~> 1.0)
|
181
170
|
tilt (~> 1.1, != 1.3.0)
|
182
|
-
sqlite3 (1.3.
|
171
|
+
sqlite3 (1.3.8)
|
172
|
+
term-ansicolor (1.2.2)
|
173
|
+
tins (~> 0.8)
|
174
|
+
thin (1.5.1)
|
175
|
+
daemons (>= 1.0.9)
|
176
|
+
eventmachine (>= 0.12.6)
|
177
|
+
rack (>= 1.0.0)
|
183
178
|
thor (0.14.6)
|
184
|
-
tilt (1.
|
185
|
-
|
186
|
-
|
187
|
-
treetop (1.4.12)
|
179
|
+
tilt (1.4.1)
|
180
|
+
tins (0.11.0)
|
181
|
+
treetop (1.4.15)
|
188
182
|
polyglot
|
189
183
|
polyglot (>= 0.3.1)
|
190
|
-
tzinfo (0.3.
|
191
|
-
|
192
|
-
xpath (1.0.0)
|
184
|
+
tzinfo (0.3.37)
|
185
|
+
xpath (2.0.0)
|
193
186
|
nokogiri (~> 1.3)
|
194
187
|
|
195
188
|
PLATFORMS
|
@@ -200,6 +193,7 @@ DEPENDENCIES
|
|
200
193
|
axlsx_rails!
|
201
194
|
bundler
|
202
195
|
capybara
|
196
|
+
coveralls
|
203
197
|
growl
|
204
198
|
guard-rspec
|
205
199
|
jquery-rails
|
@@ -208,4 +202,6 @@ DEPENDENCIES
|
|
208
202
|
rb-fsevent
|
209
203
|
roo
|
210
204
|
rspec-rails
|
205
|
+
rubyzip
|
211
206
|
sqlite3
|
207
|
+
thin
|