dune-api 1.0.1

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 (62) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +35 -0
  3. data/.gitmodules +3 -0
  4. data/.rspec +2 -0
  5. data/.travis.yml +19 -0
  6. data/CHANGELOG.md +48 -0
  7. data/Gemfile +7 -0
  8. data/Gemfile.lock +601 -0
  9. data/LICENSE.txt +22 -0
  10. data/README.md +19 -0
  11. data/README.md.backup +61 -0
  12. data/Rakefile +2 -0
  13. data/apiary.apib +1769 -0
  14. data/app/constraints/dune/api/api_constraint.rb +17 -0
  15. data/app/controllers/dune/api/base_controller.rb +68 -0
  16. data/app/controllers/dune/api/v1/channels/members_controller.rb +33 -0
  17. data/app/controllers/dune/api/v1/channels_controller.rb +73 -0
  18. data/app/controllers/dune/api/v1/investments_controller.rb +70 -0
  19. data/app/controllers/dune/api/v1/press_assets_controller.rb +38 -0
  20. data/app/controllers/dune/api/v1/projects_controller.rb +76 -0
  21. data/app/controllers/dune/api/v1/rewards_controller.rb +9 -0
  22. data/app/controllers/dune/api/v1/sessions_controller.rb +27 -0
  23. data/app/controllers/dune/api/v1/tags_controller.rb +37 -0
  24. data/app/controllers/dune/api/v1/users_controller.rb +26 -0
  25. data/app/models/dune/api/access_token.rb +24 -0
  26. data/app/models/dune/api/investment.rb +14 -0
  27. data/app/models/dune/api/project.rb +23 -0
  28. data/app/models/dune/api/user_concern.rb +11 -0
  29. data/app/serializers/channel_member_serializer.rb +7 -0
  30. data/app/serializers/channel_serializer.rb +34 -0
  31. data/app/serializers/dune/api/investment_serializer.rb +44 -0
  32. data/app/serializers/dune/api/project_serializer.rb +86 -0
  33. data/app/serializers/press_asset_serializer.rb +11 -0
  34. data/app/serializers/reward_serializer.rb +13 -0
  35. data/app/serializers/tag_serializer.rb +10 -0
  36. data/app/serializers/user_serializer.rb +46 -0
  37. data/bin/rails +8 -0
  38. data/config/initializers/mime_types.rb +1 -0
  39. data/config/routes.rb +42 -0
  40. data/db/migrate/20140624141405_create_dune_api_access_tokens.rb +11 -0
  41. data/dune-api.gemspec +28 -0
  42. data/lib/dune/api.rb +12 -0
  43. data/lib/dune/api/engine.rb +11 -0
  44. data/lib/dune/api/paginated_controller.rb +19 -0
  45. data/lib/dune/api/version.rb +5 -0
  46. data/spec/constraints/neighborly/api/api_constraint_spec.rb +50 -0
  47. data/spec/controllers/neighborly/api/v1/channels/members_controller_spec.rb +82 -0
  48. data/spec/controllers/neighborly/api/v1/channels_controller_spec.rb +188 -0
  49. data/spec/controllers/neighborly/api/v1/investments_controller_spec.rb +178 -0
  50. data/spec/controllers/neighborly/api/v1/press_assets_controller_spec.rb +129 -0
  51. data/spec/controllers/neighborly/api/v1/projects_controller_spec.rb +317 -0
  52. data/spec/controllers/neighborly/api/v1/rewards_controller_spec.rb +28 -0
  53. data/spec/controllers/neighborly/api/v1/sessions_controller_spec.rb +67 -0
  54. data/spec/controllers/neighborly/api/v1/tags_controller_spec.rb +143 -0
  55. data/spec/controllers/neighborly/api/v1/users_controller_spec.rb +43 -0
  56. data/spec/factories.rb +78 -0
  57. data/spec/fixtures/image.png +0 -0
  58. data/spec/models/neighborly/api/investment_spec.rb +33 -0
  59. data/spec/models/neighborly/api/user_concern_spec.rb +33 -0
  60. data/spec/spec_helper.rb +43 -0
  61. data/spec/support/shared_examples.rb +96 -0
  62. metadata +219 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 58322a13106d013c87975750d2a257146334c155
4
+ data.tar.gz: a4d5065bc136f35e85516f365a09a278af9eac6b
5
+ SHA512:
6
+ metadata.gz: df3e1b1bb9ae2fe516c670fae262293c8b7718666ee2c6364fb763389f7e385ab98d2acc963fa94eb7ac2bb78d5b267f39dcd02ecdf56904f648f136fb6e4d08
7
+ data.tar.gz: b7819c52f5791857d44d8274f00bedd1995ef67c56e2b2bdaeb6dce451f4c7f98275bae292ed2ba4a21f92fbda1327aa36ccf14fac455b6c96ac6b4de1a74a94
data/.gitignore ADDED
@@ -0,0 +1,35 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
10
+ /tmp/
11
+ .env
12
+
13
+ ## Specific to RubyMotion:
14
+ .dat*
15
+ .repl_history
16
+ build/
17
+
18
+ ## Documentation cache and generated files:
19
+ /.yardoc/
20
+ /_yardoc/
21
+ /doc/
22
+ /rdoc/
23
+
24
+ ## Environment normalisation:
25
+ /.bundle/
26
+ /lib/bundler/man/
27
+
28
+ # for a library or gem, you might want to ignore these files since the code is
29
+ # intended to run in multiple environments; otherwise, check them in:
30
+ # Gemfile.lock
31
+ # .ruby-version
32
+ # .ruby-gemset
33
+
34
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
35
+ .rvmrc
data/.gitmodules ADDED
@@ -0,0 +1,3 @@
1
+ [submodule "spec/dummy"]
2
+ path = spec/dummy
3
+ url = https://github.com/FromUte/dune.git
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format d
data/.travis.yml ADDED
@@ -0,0 +1,19 @@
1
+ rvm:
2
+ - 2.1.2
3
+
4
+ cache: bundler
5
+ before_script:
6
+ - 'git submodule init'
7
+ - 'git submodule update'
8
+ - 'cd spec/dummy/'
9
+ - 'cp .env.example ../../.env'
10
+ - './bin/bootstrap'
11
+ - 'bundle exec rake db:migrate'
12
+ - 'rm -rf spec/'
13
+ - 'cd ../../'
14
+
15
+ script:
16
+ - 'bundle exec rspec'
17
+
18
+ notifications:
19
+ webhooks: https://ci.neighbor.ly/projects/17c44875-7158-4126-a66f-e85c47daad59/status
data/CHANGELOG.md ADDED
@@ -0,0 +1,48 @@
1
+ # CHANGELOG
2
+
3
+ ## 1.0.1
4
+
5
+ Use active_model_serializers version 0.8.1
6
+
7
+ ## 1.0.0
8
+
9
+ * Create an access token
10
+ * Destroy the access token
11
+ * Fetch user information
12
+ * List users
13
+ * List projects
14
+ * Fetch Project informations
15
+ * Update a project
16
+ * Push project to trash
17
+ * Approve a Project
18
+ * Launch a Project
19
+ * Reject a Project
20
+ * Push a Project to Draft
21
+ * List contributions
22
+ * Manually Confirm a Contibution
23
+ * Set a Contibution as Pending
24
+ * Refund a Contribution
25
+ * Hide a Contribution
26
+ * Cancel a Contribution
27
+ * Update a Contribution
28
+ * Fetch Contribution information
29
+ * Destroy a Contribution
30
+ * List tags
31
+ * Create a tag
32
+ * Update a tag
33
+ * Fetch tag information
34
+ * Destroy a tag
35
+ * List Channels
36
+ * Create a Channel
37
+ * Fetch a channel information
38
+ * List Channel Members
39
+ * Add a user as member of a Channel
40
+ * Remove a user from the list of Channel Members
41
+ * Update a Channel
42
+ * Destroy a Channel
43
+ * List Press Assets
44
+ * Create a Press Asset
45
+ * Update a Press Asset
46
+ * Fetch press asset information
47
+ * Destroy a Press Asset
48
+ * Fetch a reward information
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
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 'dune-api'.+)/, '').gsub(/(gem 'rspec-rails'.+)/, '')
6
+
7
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,601 @@
1
+ GIT
2
+ remote: git://github.com/Irio/as_csv.git
3
+ revision: 66695a85648c6b22fbabdfc593a1b7034611bf02
4
+ branch: localization-of-headers
5
+ specs:
6
+ as_csv (1.0.2)
7
+
8
+ GIT
9
+ remote: git://github.com/bernat/best_in_place.git
10
+ revision: e5736320e7a5905cdaaa075d3ac8eba3962f3d30
11
+ specs:
12
+ best_in_place (3.0.0.alpha)
13
+ actionpack (>= 3.2)
14
+ railties (>= 3.2)
15
+
16
+ GIT
17
+ remote: git://github.com/josemarluedke/font-icons-rails.git
18
+ revision: e9e43dd325e4e6fe552b362bb8b42a64775833ea
19
+ branch: fix-svgz
20
+ specs:
21
+ font-icons-rails (0.0.5)
22
+ sass-rails (>= 3.1.1)
23
+
24
+ GIT
25
+ remote: git://github.com/josemarluedke/state_machine.git
26
+ revision: 6dde2b81d046ea92de6d066d26a2bcfb0ba6b608
27
+ specs:
28
+ state_machine (1.2.0)
29
+
30
+ PATH
31
+ remote: .
32
+ specs:
33
+ dune-api (1.0.1)
34
+ active_model_serializers (~> 0.8.0)
35
+ has_scope
36
+ kaminari
37
+ pundit
38
+ rails (~> 4.0)
39
+
40
+ GEM
41
+ remote: https://rubygems.org/
42
+ remote: https://rubygems.org/
43
+ specs:
44
+ actionmailer (4.1.5)
45
+ actionpack (= 4.1.5)
46
+ actionview (= 4.1.5)
47
+ mail (~> 2.5.4)
48
+ actionpack (4.1.5)
49
+ actionview (= 4.1.5)
50
+ activesupport (= 4.1.5)
51
+ rack (~> 1.5.2)
52
+ rack-test (~> 0.6.2)
53
+ actionview (4.1.5)
54
+ activesupport (= 4.1.5)
55
+ builder (~> 3.1)
56
+ erubis (~> 2.7.0)
57
+ active_model_serializers (0.8.1)
58
+ activemodel (>= 3.0)
59
+ activemodel (4.1.5)
60
+ activesupport (= 4.1.5)
61
+ builder (~> 3.1)
62
+ activerecord (4.1.5)
63
+ activemodel (= 4.1.5)
64
+ activesupport (= 4.1.5)
65
+ arel (~> 5.0.0)
66
+ activesupport (4.1.5)
67
+ i18n (~> 0.6, >= 0.6.9)
68
+ json (~> 1.7, >= 1.7.7)
69
+ minitest (~> 5.1)
70
+ thread_safe (~> 0.1)
71
+ tzinfo (~> 1.1)
72
+ addressable (2.3.6)
73
+ arel (5.0.1.20140414130214)
74
+ asset_sync (1.1.0)
75
+ activemodel
76
+ fog (>= 1.8.0)
77
+ unf
78
+ auto_html (1.6.4)
79
+ redcarpet (~> 3.1)
80
+ rinku (~> 1.5.0)
81
+ awesome_print (1.2.0)
82
+ balanced (1.1.1)
83
+ addressable (~> 2.3.5)
84
+ faraday (>= 0.8.6, <= 0.9.0)
85
+ faraday_middleware (~> 0.9.0)
86
+ barber (0.4.2)
87
+ ember-source
88
+ execjs
89
+ handlebars-source
90
+ barber-emblem (0.1.1)
91
+ barber (>= 0.4.1)
92
+ emblem-source
93
+ bcrypt (3.1.7)
94
+ bcrypt-ruby (3.1.5)
95
+ bcrypt (>= 3.1.3)
96
+ better_errors (2.0.0)
97
+ coderay (>= 1.0.0)
98
+ erubis (>= 2.6.6)
99
+ rack (>= 0.9.0)
100
+ binding_of_caller (0.7.2)
101
+ debug_inspector (>= 0.0.1)
102
+ bootstrap-sass (3.2.0.1)
103
+ sass (~> 3.2)
104
+ browser (0.6.0)
105
+ builder (3.2.2)
106
+ capybara (2.2.1)
107
+ mime-types (>= 1.16)
108
+ nokogiri (>= 1.3.3)
109
+ rack (>= 1.0.0)
110
+ rack-test (>= 0.5.4)
111
+ xpath (~> 2.0)
112
+ capybara-webkit (1.3.0)
113
+ capybara (>= 2.0.2, < 2.5.0)
114
+ json
115
+ carrierwave (0.9.0)
116
+ activemodel (>= 3.2.0)
117
+ activesupport (>= 3.2.0)
118
+ json (>= 1.7)
119
+ catarse_monkeymail (0.1.6)
120
+ mailchimp-api (~> 2.0.4)
121
+ rails (>= 4.0.3)
122
+ rails-observers
123
+ celluloid (0.15.2)
124
+ timers (~> 1.1.0)
125
+ coderay (1.1.0)
126
+ coffee-rails (4.0.1)
127
+ coffee-script (>= 2.2.0)
128
+ railties (>= 4.0.0, < 5.0)
129
+ coffee-script (2.3.0)
130
+ coffee-script-source
131
+ execjs
132
+ coffee-script-source (1.8.0)
133
+ connection_pool (2.0.0)
134
+ coveralls (0.7.1)
135
+ multi_json (~> 1.3)
136
+ rest-client
137
+ simplecov (>= 0.7)
138
+ term-ansicolor
139
+ thor
140
+ daemons (1.1.9)
141
+ dalli (2.7.2)
142
+ database_cleaner (1.3.0)
143
+ debug_inspector (0.0.2)
144
+ devise (3.1.2)
145
+ bcrypt-ruby (~> 3.0)
146
+ orm_adapter (~> 0.1)
147
+ railties (>= 3.2.6, < 5)
148
+ thread_safe (~> 0.1)
149
+ warden (~> 1.2.3)
150
+ diff-lcs (1.2.5)
151
+ docile (1.1.5)
152
+ dotenv (0.11.1)
153
+ dotenv-deployment (~> 0.0.2)
154
+ dotenv-deployment (0.0.2)
155
+ dotenv-rails (0.11.1)
156
+ dotenv (= 0.11.1)
157
+ draper (1.3.1)
158
+ actionpack (>= 3.0)
159
+ activemodel (>= 3.0)
160
+ activesupport (>= 3.0)
161
+ request_store (~> 1.0.3)
162
+ dropzonejs-rails (0.4.16)
163
+ rails (> 3.1)
164
+ ember-data-source (1.0.0.beta.9)
165
+ ember-source
166
+ ember-rails (0.15.0)
167
+ active_model_serializers
168
+ barber (>= 0.4.1)
169
+ ember-data-source (>= 1.0.0.beta.5)
170
+ ember-source (>= 1.1.0)
171
+ execjs (>= 1.2)
172
+ handlebars-source (> 1.0.0)
173
+ jquery-rails (>= 1.0.17)
174
+ railties (>= 3.1)
175
+ ember-source (1.7.0)
176
+ handlebars-source (~> 1.0)
177
+ emblem-rails (0.2.1)
178
+ barber-emblem (~> 0.1.1)
179
+ ember-rails (>= 0.14.0)
180
+ emblem-source (0.3.17)
181
+ erubis (2.7.0)
182
+ eventmachine (1.0.3)
183
+ excon (0.39.5)
184
+ execjs (2.2.1)
185
+ ezcrypto (0.7.2)
186
+ factory_girl (4.4.0)
187
+ activesupport (>= 3.0.0)
188
+ factory_girl_rails (4.4.1)
189
+ factory_girl (~> 4.4.0)
190
+ railties (>= 3.0.0)
191
+ fakeweb (1.3.0)
192
+ faraday (0.8.9)
193
+ multipart-post (~> 1.2.0)
194
+ faraday_middleware (0.9.0)
195
+ faraday (>= 0.7.4, < 0.9)
196
+ ffaker (1.25.0)
197
+ fog (1.23.0)
198
+ fog-brightbox
199
+ fog-core (~> 1.23)
200
+ fog-json
201
+ fog-softlayer
202
+ ipaddress (~> 0.5)
203
+ nokogiri (~> 1.5, >= 1.5.11)
204
+ fog-brightbox (0.5.0)
205
+ fog-core (~> 1.22)
206
+ fog-json
207
+ inflecto
208
+ fog-core (1.24.0)
209
+ builder
210
+ excon (~> 0.38)
211
+ formatador (~> 0.2)
212
+ mime-types
213
+ net-scp (~> 1.1)
214
+ net-ssh (>= 2.1.3)
215
+ fog-json (1.0.0)
216
+ multi_json (~> 1.0)
217
+ fog-softlayer (0.3.16)
218
+ fog-core
219
+ fog-json
220
+ font-awesome-sass (4.2.0)
221
+ sass (~> 3.2)
222
+ formatador (0.2.5)
223
+ gctools (0.2.3)
224
+ geocoder (1.2.4)
225
+ google-analytics-rails (0.0.6)
226
+ handlebars-source (1.3.0)
227
+ has_permalink (0.1.6)
228
+ has_scope (0.6.0.rc)
229
+ actionpack (>= 3.2, < 5)
230
+ activesupport (>= 3.2, < 5)
231
+ hashie (3.3.1)
232
+ heroku-deflater (0.5.3)
233
+ rack (>= 1.4.5)
234
+ hike (1.2.3)
235
+ htmlentities (4.3.2)
236
+ httpclient (2.4.0)
237
+ i18n (0.6.11)
238
+ inflecto (0.0.2)
239
+ inherited_resources (1.4.1)
240
+ has_scope (~> 0.6.0.rc)
241
+ responders (~> 1.0.0.rc)
242
+ initjs (2.1.2)
243
+ jquery-rails
244
+ rails (>= 3.1)
245
+ ipaddress (0.8.0)
246
+ jquery-rails (3.0.4)
247
+ railties (>= 3.0, < 5.0)
248
+ thor (>= 0.14, < 2.0)
249
+ json (1.8.1)
250
+ jwt (1.0.0)
251
+ kaminari (0.16.1)
252
+ actionpack (>= 3.0.0)
253
+ activesupport (>= 3.0.0)
254
+ kgio (2.9.2)
255
+ launchy (2.4.2)
256
+ addressable (~> 2.3)
257
+ letter_opener (1.2.0)
258
+ launchy (~> 2.2)
259
+ libv8 (3.16.14.3)
260
+ mail (2.5.4)
261
+ mime-types (~> 1.16)
262
+ treetop (~> 1.4.8)
263
+ mailchimp-api (2.0.5)
264
+ excon (>= 0.16.0)
265
+ json (>= 1.7.7)
266
+ method_source (0.8.2)
267
+ mime-types (1.25.1)
268
+ mini_portile (0.6.0)
269
+ minitest (5.4.1)
270
+ multi_json (1.10.1)
271
+ multi_xml (0.5.5)
272
+ multipart-post (1.2.0)
273
+ neighborly-admin (1.1.0)
274
+ rails (~> 4.0)
275
+ neighborly-balanced (2.0.0)
276
+ balanced (~> 1.1)
277
+ draper (~> 1.3)
278
+ faraday (= 0.8.9)
279
+ faraday_middleware (= 0.9.0)
280
+ rails (~> 4.0)
281
+ neighborly-balanced-bankaccount (2.0.0)
282
+ neighborly-balanced (~> 2.0)
283
+ rails (~> 4.0)
284
+ sidekiq (~> 3.0)
285
+ slim (~> 2.0)
286
+ neighborly-balanced-creditcard (2.0.0)
287
+ neighborly-balanced (~> 2.0)
288
+ rails (~> 4.0)
289
+ slim (~> 2.0)
290
+ neighborly-dashboard (1.0.0)
291
+ bootstrap-sass
292
+ coffee-rails
293
+ ember-rails (~> 0.15.0)
294
+ emblem-rails (~> 0.2.1)
295
+ font-awesome-sass
296
+ rails (~> 4.0)
297
+ sass-rails
298
+ net-scp (1.2.1)
299
+ net-ssh (>= 2.6.5)
300
+ net-ssh (2.9.1)
301
+ netrc (0.7.7)
302
+ newrelic_rpm (3.9.3.241)
303
+ nokogiri (1.6.3.1)
304
+ mini_portile (= 0.6.0)
305
+ nprogress-rails (0.1.3.1)
306
+ oauth (0.4.7)
307
+ oauth2 (0.9.4)
308
+ faraday (>= 0.8, < 0.10)
309
+ jwt (~> 1.0)
310
+ multi_json (~> 1.3)
311
+ multi_xml (~> 0.5)
312
+ rack (~> 1.2)
313
+ omniauth (1.2.2)
314
+ hashie (>= 1.2, < 4)
315
+ rack (~> 1.0)
316
+ omniauth-facebook (1.5.1)
317
+ omniauth-oauth2 (~> 1.1.0)
318
+ omniauth-google-oauth2 (0.2.1)
319
+ omniauth (~> 1.0)
320
+ omniauth-oauth2
321
+ omniauth-linkedin (0.2.0)
322
+ omniauth-oauth (~> 1.0)
323
+ omniauth-oauth (1.0.1)
324
+ oauth
325
+ omniauth (~> 1.0)
326
+ omniauth-oauth2 (1.1.2)
327
+ faraday (>= 0.8, < 0.10)
328
+ multi_json (~> 1.3)
329
+ oauth2 (~> 0.9.3)
330
+ omniauth (~> 1.2)
331
+ omniauth-twitter (1.0.1)
332
+ multi_json (~> 1.3)
333
+ omniauth-oauth (~> 1.0)
334
+ orm_adapter (0.5.0)
335
+ pg (0.17.1)
336
+ pg_search (0.7.6)
337
+ activerecord (>= 3.1)
338
+ activesupport (>= 3.1)
339
+ arel
340
+ pjax_rails (0.4.0)
341
+ jquery-rails
342
+ railties (>= 3.2, < 5.0)
343
+ polyglot (0.3.5)
344
+ postgres-copy (0.9.0)
345
+ activerecord (>= 4.0)
346
+ pg (>= 0.17)
347
+ rails (>= 4.0)
348
+ responders
349
+ pry (0.10.1)
350
+ coderay (~> 1.1.0)
351
+ method_source (~> 0.8.1)
352
+ slop (~> 3.4)
353
+ pundit (0.2.3)
354
+ activesupport (>= 3.0.0)
355
+ quiet_assets (1.0.3)
356
+ railties (>= 3.1, < 5.0)
357
+ rack (1.5.2)
358
+ rack-protection (1.5.3)
359
+ rack
360
+ rack-test (0.6.2)
361
+ rack (>= 1.0)
362
+ rails (4.1.5)
363
+ actionmailer (= 4.1.5)
364
+ actionpack (= 4.1.5)
365
+ actionview (= 4.1.5)
366
+ activemodel (= 4.1.5)
367
+ activerecord (= 4.1.5)
368
+ activesupport (= 4.1.5)
369
+ bundler (>= 1.3.0, < 2.0)
370
+ railties (= 4.1.5)
371
+ sprockets-rails (~> 2.0)
372
+ rails-observers (0.1.2)
373
+ activemodel (~> 4.0)
374
+ rails_12factor (0.0.2)
375
+ rails_serve_static_assets
376
+ rails_stdout_logging
377
+ rails_serve_static_assets (0.0.2)
378
+ rails_stdout_logging (0.0.3)
379
+ railties (4.1.5)
380
+ actionpack (= 4.1.5)
381
+ activesupport (= 4.1.5)
382
+ rake (>= 0.8.7)
383
+ thor (>= 0.18.1, < 2.0)
384
+ raindrops (0.13.0)
385
+ rake (10.3.2)
386
+ ranked-model (0.4.0)
387
+ activerecord (>= 3.1.12)
388
+ redcarpet (3.1.2)
389
+ redis (3.1.0)
390
+ redis-namespace (1.5.1)
391
+ redis (~> 3.0, >= 3.0.4)
392
+ ref (1.0.5)
393
+ remotipart (1.2.1)
394
+ request_store (1.0.8)
395
+ responders (1.0.0)
396
+ railties (>= 3.2, < 5)
397
+ rest-client (1.7.2)
398
+ mime-types (>= 1.16, < 3.0)
399
+ netrc (~> 0.7)
400
+ rinku (1.5.1)
401
+ rmagick (2.13.3)
402
+ rspec-core (3.0.4)
403
+ rspec-support (~> 3.0.0)
404
+ rspec-expectations (3.0.4)
405
+ diff-lcs (>= 1.2.0, < 2.0)
406
+ rspec-support (~> 3.0.0)
407
+ rspec-mocks (3.0.4)
408
+ rspec-support (~> 3.0.0)
409
+ rspec-rails (3.0.2)
410
+ actionpack (>= 3.0)
411
+ activesupport (>= 3.0)
412
+ railties (>= 3.0)
413
+ rspec-core (~> 3.0.0)
414
+ rspec-expectations (~> 3.0.0)
415
+ rspec-mocks (~> 3.0.0)
416
+ rspec-support (~> 3.0.0)
417
+ rspec-support (3.0.4)
418
+ sass (3.2.19)
419
+ sass-rails (4.0.3)
420
+ railties (>= 4.0.0, < 5.0)
421
+ sass (~> 3.2.0)
422
+ sprockets (~> 2.8, <= 2.11.0)
423
+ sprockets-rails (~> 2.0)
424
+ schema_plus (1.5.3)
425
+ activerecord (>= 3.2)
426
+ valuable
427
+ shoulda-matchers (2.6.2)
428
+ activesupport (>= 3.0.0)
429
+ sidekiq (3.2.3)
430
+ celluloid (>= 0.15.2)
431
+ connection_pool (>= 2.0.0)
432
+ json
433
+ redis (>= 3.0.6)
434
+ redis-namespace (>= 1.3.1)
435
+ simple_form (3.0.2)
436
+ actionpack (~> 4.0)
437
+ activemodel (~> 4.0)
438
+ simplecov (0.9.0)
439
+ docile (~> 1.1.0)
440
+ multi_json
441
+ simplecov-html (~> 0.8.0)
442
+ simplecov-html (0.8.0)
443
+ sinatra (1.4.5)
444
+ rack (~> 1.4)
445
+ rack-protection (~> 1.4)
446
+ tilt (~> 1.3, >= 1.3.4)
447
+ slim (2.0.3)
448
+ temple (~> 0.6.6)
449
+ tilt (>= 1.3.3, < 2.1)
450
+ slim-rails (2.1.5)
451
+ actionpack (>= 3.0, < 4.2)
452
+ activesupport (>= 3.0, < 4.2)
453
+ railties (>= 3.0, < 4.2)
454
+ slim (~> 2.0)
455
+ slop (3.6.0)
456
+ spring (1.1.3)
457
+ sprockets (2.11.0)
458
+ hike (~> 1.2)
459
+ multi_json (~> 1.0)
460
+ rack (~> 1.0)
461
+ tilt (~> 1.1, != 1.3.0)
462
+ sprockets-rails (2.1.4)
463
+ actionpack (>= 3.0)
464
+ activesupport (>= 3.0)
465
+ sprockets (~> 2.8)
466
+ temple (0.6.8)
467
+ term-ansicolor (1.3.0)
468
+ tins (~> 1.0)
469
+ therubyracer (0.12.1)
470
+ libv8 (~> 3.16.14.0)
471
+ ref
472
+ thin (1.6.2)
473
+ daemons (>= 1.0.9)
474
+ eventmachine (>= 1.0.0)
475
+ rack (>= 1.0.0)
476
+ thor (0.19.1)
477
+ thread_safe (0.3.4)
478
+ tilt (1.4.1)
479
+ timers (1.1.0)
480
+ tins (1.3.2)
481
+ treetop (1.4.15)
482
+ polyglot
483
+ polyglot (>= 0.3.1)
484
+ turbolinks (2.2.3)
485
+ coffee-rails
486
+ tzinfo (1.2.2)
487
+ thread_safe (~> 0.1)
488
+ uglifier (2.5.3)
489
+ execjs (>= 0.3.0)
490
+ json (>= 1.8.0)
491
+ unf (0.1.4)
492
+ unf_ext
493
+ unf_ext (0.0.6)
494
+ unicorn (4.8.3)
495
+ kgio (~> 2.6)
496
+ rack
497
+ raindrops (~> 0.7)
498
+ valuable (0.9.8)
499
+ video_info (2.0.2)
500
+ addressable
501
+ htmlentities
502
+ multi_json
503
+ warden (1.2.3)
504
+ rack (>= 1.0)
505
+ weekdays (1.0.2)
506
+ xpath (2.0.0)
507
+ nokogiri (~> 1.3)
508
+ zurb-foundation (4.3.2)
509
+ sass (>= 3.2.0)
510
+
511
+ PLATFORMS
512
+ ruby
513
+
514
+ DEPENDENCIES
515
+ active_model_serializers
516
+ as_csv!
517
+ asset_sync
518
+ auto_html (~> 1.6.1)
519
+ awesome_print
520
+ best_in_place!
521
+ better_errors
522
+ binding_of_caller
523
+ browser
524
+ capybara (~> 2.2.1)
525
+ capybara-webkit
526
+ carrierwave (~> 0.9.0)
527
+ catarse_monkeymail (~> 0.1.6)
528
+ coffee-rails (~> 4.0.1)
529
+ coveralls
530
+ dalli
531
+ database_cleaner
532
+ devise (~> 3.1.2)
533
+ dotenv-rails
534
+ draper
535
+ dropzonejs-rails (~> 0.4.14)
536
+ ezcrypto
537
+ factory_girl_rails
538
+ fakeweb
539
+ ffaker
540
+ fog (>= 1.20.0)
541
+ font-icons-rails!
542
+ gctools (~> 0.2.3)
543
+ geocoder
544
+ google-analytics-rails
545
+ has_permalink
546
+ has_scope (~> 0.6.0.rc)
547
+ heroku-deflater (>= 0.4.1)
548
+ httpclient (>= 2.2.5)
549
+ inherited_resources (~> 1.4.1)
550
+ initjs (~> 2.1.2)
551
+ jquery-rails (~> 3.0.4)
552
+ kaminari
553
+ launchy
554
+ letter_opener
555
+ minitest
556
+ neighborly-admin (~> 1.1.0)
557
+ neighborly-api!
558
+ neighborly-balanced (~> 2.0.0)
559
+ neighborly-balanced-bankaccount (~> 2.0.0)
560
+ neighborly-balanced-creditcard (~> 2.0.0)
561
+ neighborly-dashboard (~> 1.0.0)
562
+ newrelic_rpm
563
+ nprogress-rails
564
+ omniauth
565
+ omniauth-facebook (= 1.5.1)
566
+ omniauth-google-oauth2 (= 0.2.1)
567
+ omniauth-linkedin
568
+ omniauth-twitter
569
+ pg
570
+ pg_search
571
+ pjax_rails
572
+ postgres-copy
573
+ pry
574
+ pundit (~> 0.2.3)
575
+ quiet_assets
576
+ rails (= 4.1.5)
577
+ rails-observers (~> 0.1.2)
578
+ rails_12factor
579
+ rake (~> 10.3)
580
+ ranked-model
581
+ remotipart (~> 1.2.1)
582
+ rmagick
583
+ rspec-rails (~> 3.0.0)
584
+ sass-rails (~> 4.0.3)
585
+ schema_plus
586
+ shoulda-matchers
587
+ sidekiq (~> 3.2.2)
588
+ simple_form (~> 3.0.2)
589
+ sinatra (~> 1.4.5)
590
+ slim-rails
591
+ spring
592
+ state_machine!
593
+ therubyracer
594
+ thin
595
+ turbolinks (~> 2.2.2)
596
+ uglifier
597
+ unf
598
+ unicorn
599
+ video_info (~> 2.0.2)
600
+ weekdays
601
+ zurb-foundation (~> 4.3.2)