catarse_monkeymail 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/.rspec +2 -0
  4. data/Gemfile +0 -4
  5. data/Gemfile.lock +19 -451
  6. data/Rakefile +1 -1
  7. data/app/models/catarse_monkeymail/user_concern.rb +0 -1
  8. data/catarse_monkeymail.gemspec +3 -1
  9. data/lib/catarse_monkeymail/version.rb +1 -1
  10. data/spec/controller/catarse_monkeymail/controller_concerns_spec.rb +14 -0
  11. data/spec/dummy/README.rdoc +261 -0
  12. data/spec/dummy/Rakefile +7 -0
  13. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  14. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  15. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  16. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  17. data/spec/dummy/app/mailers/.gitkeep +0 -0
  18. data/spec/dummy/app/models/.gitkeep +0 -0
  19. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/spec/dummy/config.ru +4 -0
  21. data/spec/dummy/config/application.rb +23 -0
  22. data/spec/dummy/config/boot.rb +10 -0
  23. data/spec/dummy/config/database.yml +50 -0
  24. data/spec/dummy/config/environment.rb +5 -0
  25. data/spec/dummy/config/environments/development.rb +29 -0
  26. data/spec/dummy/config/environments/production.rb +80 -0
  27. data/spec/dummy/config/environments/test.rb +36 -0
  28. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  29. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  30. data/spec/dummy/config/initializers/inflections.rb +16 -0
  31. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  32. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  33. data/spec/dummy/config/initializers/session_store.rb +3 -0
  34. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  35. data/spec/dummy/config/locales/en.yml +5 -0
  36. data/spec/dummy/config/routes.rb +2 -0
  37. data/spec/dummy/lib/assets/.gitkeep +0 -0
  38. data/spec/dummy/log/.gitkeep +0 -0
  39. data/spec/dummy/public/404.html +26 -0
  40. data/spec/dummy/public/422.html +26 -0
  41. data/spec/dummy/public/500.html +25 -0
  42. data/spec/dummy/public/favicon.ico +0 -0
  43. data/spec/dummy/script/rails +6 -0
  44. data/spec/dummy/tmp/cache/A5C/C50/%2Fconfigurations%2Fa_config +1 -0
  45. data/spec/dummy/tmp/cache/C1D/B20/%2Fconfigurations%2Fother_config +1 -0
  46. data/spec/dummy/tmp/cache/DC7/960/%2Fconfigurations%2Fnot_found_config +1 -0
  47. data/spec/models/catarse_monkeymail/project_spec.rb +11 -11
  48. data/spec/models/catarse_monkeymail/user_spec.rb +14 -14
  49. data/spec/spec_helper.rb +16 -78
  50. data/spec/support/project.rb +3 -0
  51. data/spec/support/user.rb +2 -0
  52. metadata +112 -8
  53. data/app/controllers/catarse_monkeymail/application_controller.rb +0 -4
  54. data/bin/rails +0 -12
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6e0f501b7e6ce92b87560985b16a4ef571cf64b2
4
- data.tar.gz: 56a90da30e27df90ba6ecc458855d7d1fbe75b59
3
+ metadata.gz: a12ed8667388ed94ff9d84a1a0bfeda67a343847
4
+ data.tar.gz: c62b755ca4ea7985f58b19b5b0ec532291689011
5
5
  SHA512:
6
- metadata.gz: edf5d4f932663db756e9fc85ea4cd43b23e9db729ef4a9d580cac28ca8ed2b9e805761eea7dc650ec9a1ac85ce237b923f906b56a6ac6b8129c79123a373618a
7
- data.tar.gz: c05da0eb003cffa900a5e5e5cbe39440496cea7d6d55116f6620e05b9389f643add39456cc2a60be25b39c80284c8475c3a3954431df642350b0251ec660e339
6
+ metadata.gz: ea8df807d4e116d108596279fb650d6c4cc54662706a056712d405a21d1b53be10cc06cdad20eed19a3e78852a521b88e1fdbad26d4df225909a7771811af04f
7
+ data.tar.gz: 9b5982af4d1cfe92f140026cb79dfeeec489707becb8c0d71a656a22cb29e1d173decbee2be9378377b13b96b84f182e11d566187cd6a4c44bed321a346d891b
data/.gitignore CHANGED
@@ -1,5 +1,5 @@
1
1
  .bundle/
2
- log/*.log
2
+ *.log
3
3
  pkg/
4
4
  test/dummy/db/*.sqlite3
5
5
  test/dummy/db/*.sqlite3-journal
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format d
data/Gemfile CHANGED
@@ -1,8 +1,4 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- gemfile_url = File.join(File.dirname(__FILE__), 'spec/dummy/Gemfile')
4
- gemfile_content = File.open(gemfile_url, "rb") { |f| f.read }
5
- eval_gemfile gemfile_url, gemfile_content.gsub(/(gem 'catarse_monkeymail'.+)/, '')
6
-
7
3
  gemspec
8
4
 
data/Gemfile.lock CHANGED
@@ -1,34 +1,14 @@
1
- GIT
2
- remote: git://github.com/bernat/best_in_place.git
3
- revision: 366413be357d65cdf47031e928aea969f72e3659
4
- branch: rails-4
5
- specs:
6
- best_in_place (2.0.3)
7
- jquery-rails
8
- rails (~> 4)
9
-
10
- GIT
11
- remote: git://github.com/catarse/moip-ruby.git
12
- revision: c0225ad71645cd1df35dafa1e45c9f092b3abb9e
13
- ref: c0225ad71645cd1df35dafa1e45c9f092b3abb9e
14
- specs:
15
- moip (1.0.2)
16
- activesupport (>= 2.3.2)
17
- httparty (~> 0.6.1)
18
- nokogiri (>= 1.5.0)
19
-
20
1
  PATH
21
2
  remote: .
22
3
  specs:
23
- catarse_monkeymail (0.1.3)
4
+ catarse_monkeymail (0.1.5)
24
5
  mailchimp-api (~> 2.0.4)
25
6
  rails (>= 4.0.3)
7
+ rails-observers
26
8
 
27
9
  GEM
28
- remote: https://rubygems.org/
29
10
  remote: https://rubygems.org/
30
11
  specs:
31
- RedCloth (4.2.9)
32
12
  actionmailer (4.1.1)
33
13
  actionpack (= 4.1.1)
34
14
  actionview (= 4.1.1)
@@ -42,17 +22,6 @@ GEM
42
22
  activesupport (= 4.1.1)
43
23
  builder (~> 3.1)
44
24
  erubis (~> 2.7.0)
45
- active_utils (2.2.1)
46
- activesupport (>= 2.3.11)
47
- i18n
48
- activemerchant (1.43.1)
49
- active_utils (~> 2.0, >= 2.0.1)
50
- activesupport (>= 2.3.14, < 5.0.0)
51
- builder (>= 2.1.2, < 4.0.0)
52
- i18n (~> 0.5)
53
- json (~> 1.7)
54
- money (< 7.0.0)
55
- nokogiri (~> 1.4)
56
25
  activemodel (4.1.1)
57
26
  activesupport (= 4.1.1)
58
27
  builder (~> 3.1)
@@ -66,250 +35,26 @@ GEM
66
35
  minitest (~> 5.1)
67
36
  thread_safe (~> 0.1)
68
37
  tzinfo (~> 1.1)
69
- addressable (2.3.6)
70
38
  arel (5.0.1.20140414130214)
71
- auto_html (1.4.2)
72
- RedCloth
73
- redcarpet
74
- rinku
75
- tag_helper
76
- bcrypt (3.1.7)
77
- better_errors (1.1.0)
78
- coderay (>= 1.0.0)
79
- erubis (>= 2.6.6)
80
- binding_of_caller (0.7.2)
81
- debug_inspector (>= 0.0.1)
82
- browser (0.6.0)
83
39
  builder (3.2.2)
84
- capybara (2.1.0)
85
- mime-types (>= 1.16)
86
- nokogiri (>= 1.3.3)
87
- rack (>= 1.0.0)
88
- rack-test (>= 0.5.4)
89
- xpath (~> 2.0)
90
- carrierwave (0.10.0)
91
- activemodel (>= 3.2.0)
92
- activesupport (>= 3.2.0)
93
- json (>= 1.7)
94
- mime-types (>= 1.16)
95
- catarse_moip (2.3.5)
96
- enumerate_it
97
- libxml-ruby (~> 2.6.0)
98
- rails (~> 4.0)
99
- catarse_paypal_express (2.2.3)
100
- activemerchant (>= 1.34.0)
101
- rails (~> 4.0)
102
- slim-rails
103
- catarse_settings_db (0.0.2)
104
- rails (~> 4.1.1)
105
- celluloid (0.15.2)
106
- timers (~> 1.1.0)
107
- chartkick (1.2.4)
108
- childprocess (0.5.3)
109
- ffi (~> 1.0, >= 1.0.11)
110
- chunky_png (1.3.1)
111
- cliver (0.3.2)
112
- coderay (1.1.0)
113
- coffee-rails (4.0.1)
114
- coffee-script (>= 2.2.0)
115
- railties (>= 4.0.0, < 5.0)
116
- coffee-script (2.2.0)
117
- coffee-script-source
118
- execjs
119
- coffee-script-source (1.7.0)
120
- compass (0.12.6)
121
- chunky_png (~> 1.2)
122
- fssm (>= 0.2.7)
123
- sass (~> 3.2.19)
124
- compass-960-plugin (0.10.4)
125
- compass (>= 0.10.0)
126
- compass-rails (1.1.7)
127
- compass (>= 0.12.2)
128
- sprockets (<= 2.11.0)
129
- connection_pool (2.0.0)
130
- coveralls (0.7.0)
131
- multi_json (~> 1.3)
132
- rest-client
133
- simplecov (>= 0.7)
134
- term-ansicolor
135
- thor
136
- crack (0.1.8)
137
- curb (0.8.5)
138
- database_cleaner (1.3.0)
139
- debug_inspector (0.0.2)
140
- devise (3.2.4)
141
- bcrypt (~> 3.0)
142
- orm_adapter (~> 0.1)
143
- railties (>= 3.2.6, < 5)
144
- thread_safe (~> 0.1)
145
- warden (~> 1.2.3)
146
40
  diff-lcs (1.2.5)
147
- docile (1.1.3)
148
- dotenv (0.11.1)
149
- dotenv-deployment (~> 0.0.2)
150
- dotenv-deployment (0.0.2)
151
- draper (1.3.0)
152
- actionpack (>= 3.0)
153
- activemodel (>= 3.0)
154
- activesupport (>= 3.0)
155
- request_store (~> 1.0.3)
156
- enumerate_it (1.2.1)
157
- activesupport (>= 3.0.0)
158
41
  erubis (2.7.0)
159
- excon (0.36.0)
160
- execjs (2.1.0)
161
- ezcrypto (0.7.2)
162
- factory_girl (4.4.0)
163
- activesupport (>= 3.0.0)
164
- factory_girl_rails (4.4.1)
165
- factory_girl (~> 4.4.0)
166
- railties (>= 3.0.0)
167
- fakeweb (1.3.0)
168
- faraday (0.9.0)
169
- multipart-post (>= 1.2, < 3)
170
- feedjira (1.3.0)
171
- curb (~> 0.8.1)
172
- loofah (~> 2.0.0)
173
- sax-machine (~> 0.2.1)
174
- ffi (1.9.3)
175
- fog (1.22.1)
176
- fog-brightbox
177
- fog-core (~> 1.22)
178
- fog-json
179
- ipaddress (~> 0.5)
180
- nokogiri (~> 1.5, >= 1.5.11)
181
- fog-brightbox (0.0.2)
182
- fog-core
183
- fog-json
184
- fog-core (1.22.0)
185
- builder
186
- excon (~> 0.33)
187
- formatador (~> 0.2)
188
- mime-types
189
- net-scp (~> 1.1)
190
- net-ssh (>= 2.1.3)
191
- fog-json (1.0.0)
192
- multi_json (~> 1.0)
193
- foreman (0.71.0)
194
- dotenv (~> 0.11.1)
195
- thor (~> 0.19.1)
196
- formatador (0.2.5)
197
- formtastic (2.2.1)
198
- actionpack (>= 3.0)
199
- fssm (0.2.10)
200
- has_scope (0.6.0.rc)
201
- actionpack (>= 3.2, < 5)
202
- activesupport (>= 3.2, < 5)
203
- hashie (2.1.1)
204
- heroku-deflater (0.5.3)
205
- rack (>= 1.4.5)
206
- high_voltage (2.1.0)
42
+ excon (0.37.0)
207
43
  hike (1.2.3)
208
- htmlentities (4.3.2)
209
- http_accept_language (2.0.1)
210
- httparty (0.6.1)
211
- crack (= 0.1.8)
212
- httpauth (0.2.1)
213
- httpclient (2.3.4.1)
214
44
  i18n (0.6.9)
215
- inherited_resources (1.4.1)
216
- has_scope (~> 0.6.0.rc)
217
- responders (~> 1.0.0.rc)
218
- ipaddress (0.8.0)
219
- jasmine-core (2.0.0)
220
- jasmine-rails (0.9.0)
221
- jasmine-core (>= 1.3, < 3.0)
222
- phantomjs
223
- railties (>= 3.1.0)
224
- sprockets-rails
225
- jquery-rails (3.1.0)
226
- railties (>= 3.0, < 5.0)
227
- thor (>= 0.14, < 2.0)
228
45
  json (1.8.1)
229
- jwt (0.1.13)
230
- multi_json (>= 1.5)
231
- kaminari (0.15.1)
232
- actionpack (>= 3.0.0)
233
- activesupport (>= 3.0.0)
234
- kgio (2.9.2)
235
- launchy (2.4.2)
236
- addressable (~> 2.3)
237
- letter_opener (1.2.0)
238
- launchy (~> 2.2)
239
- libxml-ruby (2.6.0)
240
- loofah (2.0.0)
241
- nokogiri (>= 1.5.9)
242
46
  mail (2.5.4)
243
47
  mime-types (~> 1.16)
244
48
  treetop (~> 1.4.8)
245
- mailchimp-api (2.0.4)
49
+ mailchimp-api (2.0.5)
246
50
  excon (>= 0.16.0)
247
51
  json (>= 1.7.7)
248
- method_source (0.8.2)
249
52
  mime-types (1.25.1)
250
- mini_portile (0.6.0)
251
53
  minitest (5.3.4)
252
- mixpanel-ruby (1.4.0)
253
- money (6.1.1)
254
- i18n (~> 0.6.4)
255
54
  multi_json (1.10.1)
256
- multipart-post (2.0.0)
257
- net-scp (1.2.1)
258
- net-ssh (>= 2.6.5)
259
- net-ssh (2.9.1)
260
- newrelic_rpm (3.6.5.130)
261
- nokogiri (1.6.2.1)
262
- mini_portile (= 0.6.0)
263
- oauth (0.4.7)
264
- oauth2 (0.8.1)
265
- faraday (~> 0.8)
266
- httpauth (~> 0.1)
267
- jwt (~> 0.1.4)
268
- multi_json (~> 1.0)
269
- rack (~> 1.2)
270
- omniauth (1.2.1)
271
- hashie (>= 1.2, < 3)
272
- rack (~> 1.0)
273
- omniauth-facebook (1.4.0)
274
- omniauth-oauth2 (~> 1.0.2)
275
- omniauth-oauth (1.0.1)
276
- oauth
277
- omniauth (~> 1.0)
278
- omniauth-oauth2 (1.0.3)
279
- oauth2 (~> 0.8.0)
280
- omniauth (~> 1.0)
281
- omniauth-twitter (1.0.1)
282
- multi_json (~> 1.3)
283
- omniauth-oauth (~> 1.0)
284
- orm_adapter (0.5.0)
285
55
  pg (0.17.1)
286
- pg_search (0.7.4)
287
- activerecord (>= 3.1)
288
- activesupport (>= 3.1)
289
- arel
290
- phantomjs (1.9.7.1)
291
- poltergeist (1.5.1)
292
- capybara (~> 2.1)
293
- cliver (~> 0.3.1)
294
- multi_json (~> 1.0)
295
- websocket-driver (>= 0.2.0)
296
56
  polyglot (0.3.5)
297
- postgres-copy (0.8.0)
298
- activerecord (~> 4.0)
299
- pg
300
- rails (~> 4.0)
301
- responders
302
- protected_attributes (1.0.7)
303
- activemodel (>= 4.0.1, < 5.0)
304
- pry (0.9.12.6)
305
- coderay (~> 1.0)
306
- method_source (~> 0.8)
307
- slop (~> 3.4)
308
- pundit (0.2.3)
309
- activesupport (>= 3.0.0)
310
57
  rack (1.5.2)
311
- rack-protection (1.5.3)
312
- rack
313
58
  rack-test (0.6.2)
314
59
  rack (>= 1.0)
315
60
  rails (4.1.1)
@@ -324,103 +69,29 @@ GEM
324
69
  sprockets-rails (~> 2.0)
325
70
  rails-observers (0.1.2)
326
71
  activemodel (~> 4.0)
327
- rails_12factor (0.0.2)
328
- rails_serve_static_assets
329
- rails_stdout_logging
330
- rails_serve_static_assets (0.0.2)
331
- rails_stdout_logging (0.0.3)
332
72
  railties (4.1.1)
333
73
  actionpack (= 4.1.1)
334
74
  activesupport (= 4.1.1)
335
75
  rake (>= 0.8.7)
336
76
  thor (>= 0.18.1, < 2.0)
337
- raindrops (0.13.0)
338
77
  rake (10.3.2)
339
- ranked-model (0.4.0)
340
- activerecord (>= 3.1.12)
341
- redcarpet (3.1.2)
342
- redis (3.0.7)
343
- redis-namespace (1.4.1)
344
- redis (~> 3.0.4)
345
- request_store (1.0.5)
346
- responders (1.0.0)
347
- railties (>= 3.2, < 5)
348
- rest-client (1.6.7)
349
- mime-types (>= 1.16)
350
- rinku (1.7.3)
351
- rmagick (2.13.2)
352
- routing-filter (0.4.0.pre)
353
- actionpack
354
- rspec-core (2.14.8)
355
- rspec-expectations (2.14.5)
356
- diff-lcs (>= 1.1.3, < 2.0)
357
- rspec-mocks (2.14.6)
358
- rspec-rails (2.14.2)
78
+ rspec-core (3.0.0)
79
+ rspec-support (~> 3.0.0)
80
+ rspec-expectations (3.0.0)
81
+ diff-lcs (>= 1.2.0, < 2.0)
82
+ rspec-support (~> 3.0.0)
83
+ rspec-mocks (3.0.0)
84
+ rspec-support (~> 3.0.0)
85
+ rspec-rails (3.0.1)
359
86
  actionpack (>= 3.0)
360
- activemodel (>= 3.0)
361
87
  activesupport (>= 3.0)
362
88
  railties (>= 3.0)
363
- rspec-core (~> 2.14.0)
364
- rspec-expectations (~> 2.14.0)
365
- rspec-mocks (~> 2.14.0)
366
- ruby-ole (1.2.11.7)
367
- rubyzip (1.1.4)
368
- sass (3.2.19)
369
- sass-rails (4.0.3)
370
- railties (>= 4.0.0, < 5.0)
371
- sass (~> 3.2.0)
372
- sprockets (~> 2.8, <= 2.11.0)
373
- sprockets-rails (~> 2.0)
374
- sax-machine (0.2.1)
375
- nokogiri (~> 1.6.0)
376
- schema_associations (1.2.0)
377
- schema_plus (>= 1.2.0)
378
- schema_plus (1.5.1)
379
- activerecord (>= 3.2)
380
- valuable
381
- selenium-webdriver (2.42.0)
382
- childprocess (>= 0.5.0)
383
- multi_json (~> 1.0)
384
- rubyzip (~> 1.0)
385
- websocket (~> 1.0.4)
386
- shoulda (3.5.0)
387
- shoulda-context (~> 1.0, >= 1.0.1)
388
- shoulda-matchers (>= 1.4.1, < 3.0)
389
- shoulda-context (1.2.1)
390
- shoulda-matchers (2.6.1)
391
- activesupport (>= 3.0.0)
392
- sidekiq (2.15.2)
393
- celluloid (>= 0.15.2)
394
- connection_pool (>= 1.0.0)
395
- json
396
- redis (>= 3.0.4)
397
- redis-namespace (>= 1.3.1)
398
- simple_form (3.0.2)
399
- actionpack (~> 4.0)
400
- activemodel (~> 4.0)
401
- simplecov (0.8.2)
402
- docile (~> 1.1.0)
403
- multi_json
404
- simplecov-html (~> 0.8.0)
405
- simplecov-html (0.8.0)
406
- sinatra (1.4.5)
407
- rack (~> 1.4)
408
- rack-protection (~> 1.4)
409
- tilt (~> 1.3, >= 1.3.4)
410
- slim (2.0.2)
411
- temple (~> 0.6.6)
412
- tilt (>= 1.3.3, < 2.1)
413
- slim-rails (2.1.4)
414
- actionpack (>= 3.0, < 4.2)
415
- activesupport (>= 3.0, < 4.2)
416
- railties (>= 3.0, < 4.2)
417
- slim (~> 2.0)
418
- slop (3.5.0)
419
- spectator-validates_email (0.2.0)
420
- activemodel (>= 3.0.0)
421
- spreadsheet (0.9.7)
422
- ruby-ole (>= 1.0)
423
- sprockets (2.10.1)
89
+ rspec-core (~> 3.0.0)
90
+ rspec-expectations (~> 3.0.0)
91
+ rspec-mocks (~> 3.0.0)
92
+ rspec-support (~> 3.0.0)
93
+ rspec-support (3.0.0)
94
+ sprockets (2.12.1)
424
95
  hike (~> 1.2)
425
96
  multi_json (~> 1.0)
426
97
  rack (~> 1.0)
@@ -429,122 +100,19 @@ GEM
429
100
  actionpack (>= 3.0)
430
101
  activesupport (>= 3.0)
431
102
  sprockets (~> 2.8)
432
- sqlite3 (1.3.9)
433
- state_machine (1.2.0)
434
- tag_helper (0.0.3)
435
- temple (0.6.7)
436
- term-ansicolor (1.3.0)
437
- tins (~> 1.0)
438
103
  thor (0.19.1)
439
104
  thread_safe (0.3.4)
440
105
  tilt (1.4.1)
441
- timers (1.1.0)
442
- tins (1.3.0)
443
- to_xls (1.5.3)
444
- spreadsheet
445
106
  treetop (1.4.15)
446
107
  polyglot
447
108
  polyglot (>= 0.3.1)
448
109
  tzinfo (1.2.1)
449
110
  thread_safe (~> 0.1)
450
- uglifier (2.5.0)
451
- execjs (>= 0.3.0)
452
- json (>= 1.8.0)
453
- unicorn (4.8.3)
454
- kgio (~> 2.6)
455
- rack
456
- raindrops (~> 0.7)
457
- valuable (0.9.8)
458
- video_info (2.3.1)
459
- addressable
460
- htmlentities
461
- multi_json
462
- warden (1.2.3)
463
- rack (>= 1.0)
464
- websocket (1.0.7)
465
- websocket-driver (0.3.3)
466
- weekdays (1.0.2)
467
- xpath (2.0.0)
468
- nokogiri (~> 1.3)
469
111
 
470
112
  PLATFORMS
471
113
  ruby
472
114
 
473
115
  DEPENDENCIES
474
- RedCloth
475
- auto_html (= 1.4.2)
476
- best_in_place!
477
- better_errors
478
- binding_of_caller
479
- browser
480
- capybara (~> 2.1.0)
481
- carrierwave (~> 0.10.0)
482
- catarse_moip (~> 2.3.5)
483
116
  catarse_monkeymail!
484
- catarse_paypal_express (= 2.2.3)
485
- catarse_settings_db
486
- chartkick
487
- coffee-rails (~> 4.0.0)
488
- compass-960-plugin
489
- compass-rails
490
- coveralls
491
- database_cleaner
492
- devise
493
- draper
494
- ezcrypto
495
- factory_girl_rails
496
- fakeweb
497
- feedjira
498
- fog (>= 1.3.1)
499
- foreman
500
- formtastic (~> 2.2.1)
501
- has_scope (~> 0.6.0.rc)
502
- heroku-deflater (>= 0.4.1)
503
- high_voltage
504
- http_accept_language
505
- httparty (~> 0.6.1)
506
- httpclient (>= 2.2.5)
507
- inherited_resources (~> 1.4.1)
508
- jasmine-rails
509
- jquery-rails
510
- kaminari
511
- launchy
512
- letter_opener
513
- mixpanel-ruby
514
- moip!
515
- newrelic_rpm (= 3.6.5.130)
516
- omniauth
517
- omniauth-facebook (= 1.4.0)
518
- omniauth-twitter
519
117
  pg
520
- pg_search
521
- poltergeist
522
- postgres-copy
523
- protected_attributes (~> 1.0.5)
524
- pry
525
- pundit
526
- rails (~> 4.1.1)
527
- rails-observers (~> 0.1.2)
528
- rails_12factor
529
- ranked-model
530
- rmagick
531
- routing-filter (~> 0.4.0.pre)
532
- rspec-rails (~> 2.14.0)
533
- sass-rails (~> 4.0.0)
534
- schema_associations
535
- schema_plus
536
- selenium-webdriver
537
- shoulda
538
- sidekiq (~> 2.15.2)
539
- simple_form
540
- sinatra
541
- slim-rails
542
- spectator-validates_email
543
- sprockets (~> 2.10.1)
544
- sqlite3
545
- state_machine
546
- to_xls
547
- uglifier
548
- unicorn
549
- video_info (>= 1.1.1)
550
- weekdays
118
+ rspec-rails