infractores 1.0.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 (123) hide show
  1. checksums.yaml +7 -0
  2. data/.env.sample +8 -0
  3. data/.gitignore +22 -0
  4. data/.travis.yml +14 -0
  5. data/CODE_OF_CONDUCT.md +49 -0
  6. data/Gemfile +67 -0
  7. data/Gemfile.lock +417 -0
  8. data/Guardfile +8 -0
  9. data/LICENSE +21 -0
  10. data/Procfile +2 -0
  11. data/README.md +48 -0
  12. data/Rakefile +6 -0
  13. data/app/assets/images/.keep +0 -0
  14. data/app/assets/images/gallery-buttons.png +0 -0
  15. data/app/assets/images/logo-infractores.svg +10 -0
  16. data/app/assets/javascripts/application.js +18 -0
  17. data/app/assets/javascripts/bootstrap.js +4 -0
  18. data/app/assets/javascripts/index.js +82 -0
  19. data/app/assets/javascripts/twitter.js +18 -0
  20. data/app/assets/stylesheets/1-utilities/_variables.scss +12 -0
  21. data/app/assets/stylesheets/2-quarks/_typography.scss +32 -0
  22. data/app/assets/stylesheets/3-atoms/_buttons.scss +3 -0
  23. data/app/assets/stylesheets/4-molecules/_footer.scss +32 -0
  24. data/app/assets/stylesheets/4-molecules/_infraction-gallery.scss +101 -0
  25. data/app/assets/stylesheets/4-molecules/_navbar.scss +71 -0
  26. data/app/assets/stylesheets/5-pages/index.scss +165 -0
  27. data/app/assets/stylesheets/5-pages/show.scss +29 -0
  28. data/app/assets/stylesheets/application.css +18 -0
  29. data/app/assets/stylesheets/bootstrap_and_overrides.css +7 -0
  30. data/app/controllers/application_controller.rb +5 -0
  31. data/app/controllers/concerns/.keep +0 -0
  32. data/app/controllers/infractions_controller.rb +23 -0
  33. data/app/controllers/users_controller.rb +7 -0
  34. data/app/helpers/application_helper.rb +19 -0
  35. data/app/helpers/infractions_helper.rb +6 -0
  36. data/app/mailers/.keep +0 -0
  37. data/app/models/.keep +0 -0
  38. data/app/models/concerns/.keep +0 -0
  39. data/app/models/evidence.rb +23 -0
  40. data/app/models/infraction.rb +43 -0
  41. data/app/models/tweet.rb +54 -0
  42. data/app/models/user.rb +34 -0
  43. data/app/services/twitter_service.rb +51 -0
  44. data/app/uploaders/evidence_uploader.rb +62 -0
  45. data/app/views/infractions/_map.html.erb +17 -0
  46. data/app/views/infractions/_reported_by.html.erb +4 -0
  47. data/app/views/infractions/_summary.html.erb +23 -0
  48. data/app/views/infractions/index.html.erb +18 -0
  49. data/app/views/infractions/show.html.erb +24 -0
  50. data/app/views/layouts/application.html.erb +90 -0
  51. data/app/views/shared/_google_analytics.html.erb +12 -0
  52. data/app/views/users/index.html.erb +21 -0
  53. data/app/workers/tweet_inspector.rb +18 -0
  54. data/bin/bundle +3 -0
  55. data/bin/rails +8 -0
  56. data/bin/rake +8 -0
  57. data/bin/setup +29 -0
  58. data/bin/spring +15 -0
  59. data/config.ru +4 -0
  60. data/config/application.rb +27 -0
  61. data/config/boot.rb +3 -0
  62. data/config/database.yml.sample +85 -0
  63. data/config/environment.rb +5 -0
  64. data/config/environments/development.rb +50 -0
  65. data/config/environments/production.rb +79 -0
  66. data/config/environments/test.rb +42 -0
  67. data/config/initializers/assets.rb +15 -0
  68. data/config/initializers/backtrace_silencers.rb +7 -0
  69. data/config/initializers/carrierwave.rb +17 -0
  70. data/config/initializers/cookies_serializer.rb +3 -0
  71. data/config/initializers/filter_parameter_logging.rb +4 -0
  72. data/config/initializers/inflections.rb +16 -0
  73. data/config/initializers/mime_types.rb +4 -0
  74. data/config/initializers/session_store.rb +3 -0
  75. data/config/initializers/twitter.rb +1 -0
  76. data/config/initializers/wrap_parameters.rb +14 -0
  77. data/config/locales/en.bootstrap.yml +23 -0
  78. data/config/locales/en.yml +23 -0
  79. data/config/locales/es.yml +263 -0
  80. data/config/routes.rb +6 -0
  81. data/config/secrets.yml +22 -0
  82. data/db/migrate/20150824210535_add_tweets_table.rb +8 -0
  83. data/db/migrate/20150829133406_create_infractions.rb +11 -0
  84. data/db/migrate/20150829134520_create_users.rb +12 -0
  85. data/db/migrate/20150829141909_add_user_id_to_tweets.rb +5 -0
  86. data/db/migrate/20150829154430_create_locations.rb +10 -0
  87. data/db/migrate/20150830224603_create_evidences_table.rb +8 -0
  88. data/db/migrate/20150911020838_add_valid_column_to_infractions.rb +6 -0
  89. data/db/migrate/20150911025204_add_index_to_users_username.rb +5 -0
  90. data/db/migrate/20151102220702_add_lat_lon_to_infractions.rb +6 -0
  91. data/db/migrate/20151102221811_remove_locations.rb +5 -0
  92. data/db/migrate/20151117194703_add_reported_at_to_infractions.rb +5 -0
  93. data/db/migrate/20160229023500_change_lat_lon_precision.rb +6 -0
  94. data/db/seeds.rb +7 -0
  95. data/infractores.gemspec +25 -0
  96. data/lib/assets/.keep +0 -0
  97. data/lib/infractores.rb +1 -0
  98. data/lib/infractores/version.rb +3 -0
  99. data/lib/tasks/.keep +0 -0
  100. data/lib/tasks/twitter.rake +16 -0
  101. data/lib/tasks/users.rake +9 -0
  102. data/log/.keep +0 -0
  103. data/public/404.html +67 -0
  104. data/public/422.html +67 -0
  105. data/public/500.html +66 -0
  106. data/public/favicon.ico +0 -0
  107. data/public/robots.txt +5 -0
  108. data/vendor/assets/images/blank.gif +0 -0
  109. data/vendor/assets/images/fancybox_loading.gif +0 -0
  110. data/vendor/assets/images/fancybox_loading@2x.gif +0 -0
  111. data/vendor/assets/images/fancybox_overlay.png +0 -0
  112. data/vendor/assets/images/fancybox_sprite.png +0 -0
  113. data/vendor/assets/images/fancybox_sprite@2x.png +0 -0
  114. data/vendor/assets/images/glyphicons-halflings-white.png +0 -0
  115. data/vendor/assets/images/glyphicons-halflings.png +0 -0
  116. data/vendor/assets/javascripts/.keep +0 -0
  117. data/vendor/assets/javascripts/jquery.fancybox-buttons.js +122 -0
  118. data/vendor/assets/javascripts/jquery.fancybox.pack.js +46 -0
  119. data/vendor/assets/javascripts/livereload.js +1183 -0
  120. data/vendor/assets/stylesheets/.keep +0 -0
  121. data/vendor/assets/stylesheets/jquery.fancybox-buttons.css +97 -0
  122. data/vendor/assets/stylesheets/jquery.fancybox.css +274 -0
  123. metadata +215 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 108023927b5f483f0e59920111e281c8e5d9b45c
4
+ data.tar.gz: 69b4a22dc3f6e119f1a310182209fdc68a5a1801
5
+ SHA512:
6
+ metadata.gz: 626d3581af035323558913e10bd77fbfa239353b87b5e37019c82568a90632c718aae092679b167711fdaca404a976f65119574e3694eef9c97f63a407bf5206
7
+ data.tar.gz: c5fdb635446661d0dd9593c84ce718dc4a781bab36c8a6ade1a5ce3223b94b749c71492332febdd8503cbf460ce46bd33deb764cda675e69155b07a06b270611
@@ -0,0 +1,8 @@
1
+ TWITTER_CONSUMER_KEY=<INSERT CONSUMER_KEY HERE>
2
+ TWITTER_CONSUMER_SECRET=<INSERT CONSUMER_SECRET HERE>
3
+ TWITTER_ACCESS_TOKEN=<INSERT ACCESS_TOKEN HERE>
4
+ TWITTER_ACCESS_SECRET=<INSERT ACCESS_SECRET HERE>
5
+ AWS_ACCESS_KEY_ID=<INSERT AWS_ACCESS_KEY_ID HERE>
6
+ AWS_SECRET_ACCESS_KEY=<INSERT AWS_SECRET_ACCESS_KEY HERE>
7
+ AWS_REGION=sa-east-1
8
+ GOOGLE_ANALYTICS_ID=<INSERT GOOGLE ANALYTICS ID - UA-123123>
@@ -0,0 +1,22 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore all logfiles and tempfiles.
11
+ /log/*
12
+ !/log/.keep
13
+ /tmp
14
+ .ruby-version
15
+ config/database.yml
16
+ .env
17
+ .rspec
18
+
19
+ db/schema.rb
20
+ public/uploads
21
+
22
+ coverage
@@ -0,0 +1,14 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.3
4
+ services:
5
+ - postgresql
6
+ - redis-server
7
+ script: "bundle exec rake"
8
+ gemfile:
9
+ - Gemfile
10
+ before_script:
11
+ - psql -c 'create database infractores_test;' -U postgres
12
+ - cp config/database.yml.sample config/database.yml
13
+ before_install:
14
+ - gem update bundler
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at ernesto+github@ombulabs.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,67 @@
1
+ source "https://rubygems.org"
2
+
3
+ ruby "2.2.3"
4
+
5
+ # Bundle edge Rails instead: gem "rails", github: "rails/rails"
6
+ gem "rails", "~> 4.2.5.1"
7
+ # Use postgresql as the database for Active Record
8
+ gem "pg"
9
+ # Use SCSS for stylesheets
10
+ gem "sass-rails", "~> 5.0"
11
+
12
+ # Use jquery as the JavaScript library
13
+ gem "jquery-rails"
14
+
15
+ # Twitter API
16
+ gem "twitter", "~> 5.14.0"
17
+
18
+ gem "twitter-bootstrap-rails"
19
+
20
+ # Env variables
21
+ gem "dotenv-rails", "~> 2.0.2", groups: [:development, :test]
22
+
23
+ # Images
24
+ gem "carrierwave", "~> 0.10.0"
25
+ gem "carrierwave-aws"
26
+ gem "fog"
27
+
28
+ gem "mini_magick"
29
+
30
+ # Use ActiveModel has_secure_password
31
+ # gem "bcrypt", "~> 3.1.7"
32
+
33
+ # Use Unicorn as the app server
34
+ # gem "unicorn"
35
+ gem "sidekiq", "~> 3.4.2"
36
+
37
+ gem "thin"
38
+
39
+ # Use Capistrano for deployment
40
+ # gem "capistrano-rails", group: :development
41
+
42
+ group :development, :test do
43
+ # Call "byebug" anywhere in the code to stop execution and get a debugger console
44
+ gem "byebug"
45
+ end
46
+
47
+ group :development do
48
+ gem "foreman"
49
+ gem "bullet"
50
+ gem "rack-livereload"
51
+ gem "guard-livereload", "~> 2.4", require: false
52
+ # Access an IRB console on exception pages or by using <%= console %> in views
53
+ gem "web-console", "~> 2.0"
54
+ end
55
+
56
+ group :production do
57
+ gem "uglifier", "~> 2.7.2"
58
+ gem "rails_12factor"
59
+ end
60
+
61
+ group :test do
62
+ gem "simplecov", require: false
63
+ gem "factory_girl_rails", "4.5.0"
64
+ gem "rspec-rails", "~> 3.3.3"
65
+ gem "webmock"
66
+ gem "vcr"
67
+ end
@@ -0,0 +1,417 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ CFPropertyList (2.3.1)
5
+ actionmailer (4.2.5.2)
6
+ actionpack (= 4.2.5.2)
7
+ actionview (= 4.2.5.2)
8
+ activejob (= 4.2.5.2)
9
+ mail (~> 2.5, >= 2.5.4)
10
+ rails-dom-testing (~> 1.0, >= 1.0.5)
11
+ actionpack (4.2.5.2)
12
+ actionview (= 4.2.5.2)
13
+ activesupport (= 4.2.5.2)
14
+ rack (~> 1.6)
15
+ rack-test (~> 0.6.2)
16
+ rails-dom-testing (~> 1.0, >= 1.0.5)
17
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
18
+ actionview (4.2.5.2)
19
+ activesupport (= 4.2.5.2)
20
+ builder (~> 3.1)
21
+ erubis (~> 2.7.0)
22
+ rails-dom-testing (~> 1.0, >= 1.0.5)
23
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
+ activejob (4.2.5.2)
25
+ activesupport (= 4.2.5.2)
26
+ globalid (>= 0.3.0)
27
+ activemodel (4.2.5.2)
28
+ activesupport (= 4.2.5.2)
29
+ builder (~> 3.1)
30
+ activerecord (4.2.5.2)
31
+ activemodel (= 4.2.5.2)
32
+ activesupport (= 4.2.5.2)
33
+ arel (~> 6.0)
34
+ activesupport (4.2.5.2)
35
+ i18n (~> 0.7)
36
+ json (~> 1.7, >= 1.7.7)
37
+ minitest (~> 5.1)
38
+ thread_safe (~> 0.3, >= 0.3.4)
39
+ tzinfo (~> 1.1)
40
+ addressable (2.3.8)
41
+ arel (6.0.3)
42
+ aws-sdk (1.65.0)
43
+ aws-sdk-v1 (= 1.65.0)
44
+ aws-sdk-v1 (1.65.0)
45
+ json (~> 1.4)
46
+ nokogiri (>= 1.4.4)
47
+ binding_of_caller (0.7.2)
48
+ debug_inspector (>= 0.0.1)
49
+ buftok (0.2.0)
50
+ builder (3.2.2)
51
+ bullet (4.14.7)
52
+ activesupport (>= 3.0.0)
53
+ uniform_notifier (~> 1.9.0)
54
+ byebug (6.0.2)
55
+ carrierwave (0.10.0)
56
+ activemodel (>= 3.2.0)
57
+ activesupport (>= 3.2.0)
58
+ json (>= 1.7)
59
+ mime-types (>= 1.16)
60
+ carrierwave-aws (0.7.1)
61
+ aws-sdk (~> 1.58)
62
+ carrierwave (~> 0.7)
63
+ celluloid (0.16.0)
64
+ timers (~> 4.0.0)
65
+ coderay (1.1.0)
66
+ concurrent-ruby (1.0.1)
67
+ connection_pool (2.2.0)
68
+ crack (0.4.2)
69
+ safe_yaml (~> 1.0.0)
70
+ daemons (1.2.3)
71
+ debug_inspector (0.0.2)
72
+ diff-lcs (1.2.5)
73
+ docile (1.1.5)
74
+ dotenv (2.0.2)
75
+ dotenv-rails (2.0.2)
76
+ dotenv (= 2.0.2)
77
+ railties (~> 4.0)
78
+ em-websocket (0.5.1)
79
+ eventmachine (>= 0.12.9)
80
+ http_parser.rb (~> 0.6.0)
81
+ equalizer (0.0.11)
82
+ erubis (2.7.0)
83
+ eventmachine (1.0.8)
84
+ excon (0.45.4)
85
+ execjs (2.6.0)
86
+ factory_girl (4.5.0)
87
+ activesupport (>= 3.0.0)
88
+ factory_girl_rails (4.5.0)
89
+ factory_girl (~> 4.5.0)
90
+ railties (>= 3.0.0)
91
+ faraday (0.9.1)
92
+ multipart-post (>= 1.2, < 3)
93
+ ffi (1.9.10)
94
+ fission (0.5.0)
95
+ CFPropertyList (~> 2.2)
96
+ fog (1.34.0)
97
+ fog-atmos
98
+ fog-aws (>= 0.6.0)
99
+ fog-brightbox (~> 0.4)
100
+ fog-core (~> 1.32)
101
+ fog-dynect (~> 0.0.2)
102
+ fog-ecloud (~> 0.1)
103
+ fog-google (>= 0.0.2)
104
+ fog-json
105
+ fog-local
106
+ fog-powerdns (>= 0.1.1)
107
+ fog-profitbricks
108
+ fog-radosgw (>= 0.0.2)
109
+ fog-riakcs
110
+ fog-sakuracloud (>= 0.0.4)
111
+ fog-serverlove
112
+ fog-softlayer
113
+ fog-storm_on_demand
114
+ fog-terremark
115
+ fog-vmfusion
116
+ fog-voxel
117
+ fog-xml (~> 0.1.1)
118
+ ipaddress (~> 0.5)
119
+ nokogiri (~> 1.5, >= 1.5.11)
120
+ fog-atmos (0.1.0)
121
+ fog-core
122
+ fog-xml
123
+ fog-aws (0.7.6)
124
+ fog-core (~> 1.27)
125
+ fog-json (~> 1.0)
126
+ fog-xml (~> 0.1)
127
+ ipaddress (~> 0.8)
128
+ fog-brightbox (0.9.0)
129
+ fog-core (~> 1.22)
130
+ fog-json
131
+ inflecto (~> 0.0.2)
132
+ fog-core (1.32.1)
133
+ builder
134
+ excon (~> 0.45)
135
+ formatador (~> 0.2)
136
+ mime-types
137
+ net-scp (~> 1.1)
138
+ net-ssh (>= 2.1.3)
139
+ fog-dynect (0.0.2)
140
+ fog-core
141
+ fog-json
142
+ fog-xml
143
+ fog-ecloud (0.3.0)
144
+ fog-core
145
+ fog-xml
146
+ fog-google (0.0.7)
147
+ fog-core
148
+ fog-json
149
+ fog-xml
150
+ fog-json (1.0.2)
151
+ fog-core (~> 1.0)
152
+ multi_json (~> 1.10)
153
+ fog-local (0.2.1)
154
+ fog-core (~> 1.27)
155
+ fog-powerdns (0.1.1)
156
+ fog-core (~> 1.27)
157
+ fog-json (~> 1.0)
158
+ fog-xml (~> 0.1)
159
+ fog-profitbricks (0.0.5)
160
+ fog-core
161
+ fog-xml
162
+ nokogiri
163
+ fog-radosgw (0.0.4)
164
+ fog-core (>= 1.21.0)
165
+ fog-json
166
+ fog-xml (>= 0.0.1)
167
+ fog-riakcs (0.1.0)
168
+ fog-core
169
+ fog-json
170
+ fog-xml
171
+ fog-sakuracloud (1.1.0)
172
+ fog-core
173
+ fog-json
174
+ fog-serverlove (0.1.2)
175
+ fog-core
176
+ fog-json
177
+ fog-softlayer (0.4.7)
178
+ fog-core
179
+ fog-json
180
+ fog-storm_on_demand (0.1.1)
181
+ fog-core
182
+ fog-json
183
+ fog-terremark (0.1.0)
184
+ fog-core
185
+ fog-xml
186
+ fog-vmfusion (0.1.0)
187
+ fission
188
+ fog-core
189
+ fog-voxel (0.1.0)
190
+ fog-core
191
+ fog-xml
192
+ fog-xml (0.1.2)
193
+ fog-core
194
+ nokogiri (~> 1.5, >= 1.5.11)
195
+ foreman (0.78.0)
196
+ thor (~> 0.19.1)
197
+ formatador (0.2.5)
198
+ globalid (0.3.6)
199
+ activesupport (>= 4.1.0)
200
+ guard (2.13.0)
201
+ formatador (>= 0.2.4)
202
+ listen (>= 2.7, <= 4.0)
203
+ lumberjack (~> 1.0)
204
+ nenv (~> 0.1)
205
+ notiffany (~> 0.0)
206
+ pry (>= 0.9.12)
207
+ shellany (~> 0.0)
208
+ thor (>= 0.18.1)
209
+ guard-livereload (2.4.0)
210
+ em-websocket (~> 0.5)
211
+ guard (~> 2.8)
212
+ multi_json (~> 1.8)
213
+ hitimes (1.2.2)
214
+ http (0.6.4)
215
+ http_parser.rb (~> 0.6.0)
216
+ http_parser.rb (0.6.0)
217
+ i18n (0.7.0)
218
+ inflecto (0.0.2)
219
+ ipaddress (0.8.0)
220
+ jquery-rails (4.0.4)
221
+ rails-dom-testing (~> 1.0)
222
+ railties (>= 4.2.0)
223
+ thor (>= 0.14, < 2.0)
224
+ json (1.8.3)
225
+ listen (3.0.3)
226
+ rb-fsevent (>= 0.9.3)
227
+ rb-inotify (>= 0.9)
228
+ loofah (2.0.3)
229
+ nokogiri (>= 1.5.9)
230
+ lumberjack (1.0.9)
231
+ mail (2.6.3)
232
+ mime-types (>= 1.16, < 3)
233
+ memoizable (0.4.2)
234
+ thread_safe (~> 0.3, >= 0.3.1)
235
+ method_source (0.8.2)
236
+ mime-types (2.99.1)
237
+ mini_magick (4.3.2)
238
+ mini_portile2 (2.0.0)
239
+ minitest (5.8.4)
240
+ multi_json (1.11.2)
241
+ multipart-post (2.0.0)
242
+ naught (1.0.0)
243
+ nenv (0.2.0)
244
+ net-scp (1.2.1)
245
+ net-ssh (>= 2.6.5)
246
+ net-ssh (2.9.2)
247
+ nokogiri (1.6.7.2)
248
+ mini_portile2 (~> 2.0.0.rc2)
249
+ notiffany (0.0.7)
250
+ nenv (~> 0.1)
251
+ shellany (~> 0.0)
252
+ pg (0.18.2)
253
+ pry (0.10.1)
254
+ coderay (~> 1.1.0)
255
+ method_source (~> 0.8.1)
256
+ slop (~> 3.4)
257
+ rack (1.6.4)
258
+ rack-livereload (0.3.16)
259
+ rack
260
+ rack-test (0.6.3)
261
+ rack (>= 1.0)
262
+ rails (4.2.5.2)
263
+ actionmailer (= 4.2.5.2)
264
+ actionpack (= 4.2.5.2)
265
+ actionview (= 4.2.5.2)
266
+ activejob (= 4.2.5.2)
267
+ activemodel (= 4.2.5.2)
268
+ activerecord (= 4.2.5.2)
269
+ activesupport (= 4.2.5.2)
270
+ bundler (>= 1.3.0, < 2.0)
271
+ railties (= 4.2.5.2)
272
+ sprockets-rails
273
+ rails-deprecated_sanitizer (1.0.3)
274
+ activesupport (>= 4.2.0.alpha)
275
+ rails-dom-testing (1.0.7)
276
+ activesupport (>= 4.2.0.beta, < 5.0)
277
+ nokogiri (~> 1.6.0)
278
+ rails-deprecated_sanitizer (>= 1.0.1)
279
+ rails-html-sanitizer (1.0.3)
280
+ loofah (~> 2.0)
281
+ rails_12factor (0.0.3)
282
+ rails_serve_static_assets
283
+ rails_stdout_logging
284
+ rails_serve_static_assets (0.0.5)
285
+ rails_stdout_logging (0.0.5)
286
+ railties (4.2.5.2)
287
+ actionpack (= 4.2.5.2)
288
+ activesupport (= 4.2.5.2)
289
+ rake (>= 0.8.7)
290
+ thor (>= 0.18.1, < 2.0)
291
+ rake (10.5.0)
292
+ rb-fsevent (0.9.5)
293
+ rb-inotify (0.9.5)
294
+ ffi (>= 0.5.0)
295
+ redis (3.2.1)
296
+ redis-namespace (1.5.2)
297
+ redis (~> 3.0, >= 3.0.4)
298
+ rspec-core (3.3.2)
299
+ rspec-support (~> 3.3.0)
300
+ rspec-expectations (3.3.1)
301
+ diff-lcs (>= 1.2.0, < 2.0)
302
+ rspec-support (~> 3.3.0)
303
+ rspec-mocks (3.3.2)
304
+ diff-lcs (>= 1.2.0, < 2.0)
305
+ rspec-support (~> 3.3.0)
306
+ rspec-rails (3.3.3)
307
+ actionpack (>= 3.0, < 4.3)
308
+ activesupport (>= 3.0, < 4.3)
309
+ railties (>= 3.0, < 4.3)
310
+ rspec-core (~> 3.3.0)
311
+ rspec-expectations (~> 3.3.0)
312
+ rspec-mocks (~> 3.3.0)
313
+ rspec-support (~> 3.3.0)
314
+ rspec-support (3.3.0)
315
+ safe_yaml (1.0.4)
316
+ sass (3.4.17)
317
+ sass-rails (5.0.3)
318
+ railties (>= 4.0.0, < 5.0)
319
+ sass (~> 3.1)
320
+ sprockets (>= 2.8, < 4.0)
321
+ sprockets-rails (>= 2.0, < 4.0)
322
+ tilt (~> 1.1)
323
+ shellany (0.0.1)
324
+ sidekiq (3.4.2)
325
+ celluloid (~> 0.16.0)
326
+ connection_pool (~> 2.2, >= 2.2.0)
327
+ json (~> 1.0)
328
+ redis (~> 3.2, >= 3.2.1)
329
+ redis-namespace (~> 1.5, >= 1.5.2)
330
+ simple_oauth (0.3.1)
331
+ simplecov (0.10.0)
332
+ docile (~> 1.1.0)
333
+ json (~> 1.8)
334
+ simplecov-html (~> 0.10.0)
335
+ simplecov-html (0.10.0)
336
+ slop (3.6.0)
337
+ sprockets (3.5.2)
338
+ concurrent-ruby (~> 1.0)
339
+ rack (> 1, < 3)
340
+ sprockets-rails (3.0.3)
341
+ actionpack (>= 4.0)
342
+ activesupport (>= 4.0)
343
+ sprockets (>= 3.0.0)
344
+ thin (1.6.3)
345
+ daemons (~> 1.0, >= 1.0.9)
346
+ eventmachine (~> 1.0)
347
+ rack (~> 1.0)
348
+ thor (0.19.1)
349
+ thread_safe (0.3.5)
350
+ tilt (1.4.1)
351
+ timers (4.0.1)
352
+ hitimes
353
+ twitter (5.14.0)
354
+ addressable (~> 2.3)
355
+ buftok (~> 0.2.0)
356
+ equalizer (~> 0.0.9)
357
+ faraday (~> 0.9.0)
358
+ http (~> 0.6.0)
359
+ http_parser.rb (~> 0.6.0)
360
+ json (~> 1.8)
361
+ memoizable (~> 0.4.0)
362
+ naught (~> 1.0)
363
+ simple_oauth (~> 0.3.0)
364
+ twitter-bootstrap-rails (3.2.0)
365
+ actionpack (~> 4.1)
366
+ execjs (~> 2.2)
367
+ rails (~> 4.1)
368
+ railties (~> 4.1)
369
+ tzinfo (1.2.2)
370
+ thread_safe (~> 0.1)
371
+ uglifier (2.7.2)
372
+ execjs (>= 0.3.0)
373
+ json (>= 1.8.0)
374
+ uniform_notifier (1.9.0)
375
+ vcr (2.9.3)
376
+ web-console (2.2.1)
377
+ activemodel (>= 4.0)
378
+ binding_of_caller (>= 0.7.2)
379
+ railties (>= 4.0)
380
+ sprockets-rails (>= 2.0, < 4.0)
381
+ webmock (1.21.0)
382
+ addressable (>= 2.3.6)
383
+ crack (>= 0.3.2)
384
+
385
+ PLATFORMS
386
+ ruby
387
+
388
+ DEPENDENCIES
389
+ bullet
390
+ byebug
391
+ carrierwave (~> 0.10.0)
392
+ carrierwave-aws
393
+ dotenv-rails (~> 2.0.2)
394
+ factory_girl_rails (= 4.5.0)
395
+ fog
396
+ foreman
397
+ guard-livereload (~> 2.4)
398
+ jquery-rails
399
+ mini_magick
400
+ pg
401
+ rack-livereload
402
+ rails (~> 4.2.5.1)
403
+ rails_12factor
404
+ rspec-rails (~> 3.3.3)
405
+ sass-rails (~> 5.0)
406
+ sidekiq (~> 3.4.2)
407
+ simplecov
408
+ thin
409
+ twitter (~> 5.14.0)
410
+ twitter-bootstrap-rails
411
+ uglifier (~> 2.7.2)
412
+ vcr
413
+ web-console (~> 2.0)
414
+ webmock
415
+
416
+ BUNDLED WITH
417
+ 1.11.2