makena 0.0.5

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 (76) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +37 -0
  3. data/Gemfile +139 -0
  4. data/Gemfile.lock +469 -0
  5. data/README.rdoc +28 -0
  6. data/Rakefile +6 -0
  7. data/app/assets/images/.keep +0 -0
  8. data/app/assets/javascripts/application.js +16 -0
  9. data/app/assets/stylesheets/application.css +13 -0
  10. data/app/controllers/application_controller.rb +5 -0
  11. data/app/controllers/concerns/.keep +0 -0
  12. data/app/helpers/application_helper.rb +2 -0
  13. data/app/mailers/.keep +0 -0
  14. data/app/models/.keep +0 -0
  15. data/app/models/concerns/.keep +0 -0
  16. data/app/views/layouts/application.html.erb +14 -0
  17. data/bin/bundle +3 -0
  18. data/bin/rails +4 -0
  19. data/bin/rake +4 -0
  20. data/config.ru +4 -0
  21. data/config/application.rb +23 -0
  22. data/config/boot.rb +4 -0
  23. data/config/database.yml +39 -0
  24. data/config/environment.rb +5 -0
  25. data/config/environments/development.rb +29 -0
  26. data/config/environments/production.rb +80 -0
  27. data/config/environments/test.rb +36 -0
  28. data/config/initializers/backtrace_silencers.rb +7 -0
  29. data/config/initializers/filter_parameter_logging.rb +4 -0
  30. data/config/initializers/inflections.rb +16 -0
  31. data/config/initializers/mime_types.rb +5 -0
  32. data/config/initializers/secret_token.rb +12 -0
  33. data/config/initializers/session_store.rb +3 -0
  34. data/config/initializers/wrap_parameters.rb +14 -0
  35. data/config/locales/en.yml +23 -0
  36. data/config/routes.rb +56 -0
  37. data/db/seeds.rb +7 -0
  38. data/lib/assets/.keep +0 -0
  39. data/lib/generators/connection/USAGE +26 -0
  40. data/lib/generators/connection/connection_generator.rb +195 -0
  41. data/lib/generators/connection/templates/extensions/alpha_alphas.rb +17 -0
  42. data/lib/generators/connection/templates/extensions/alpha_betas.rb +17 -0
  43. data/lib/generators/connection/templates/extensions/geocoder.rb +23 -0
  44. data/lib/generators/connection/templates/extensions/image.rb +12 -0
  45. data/lib/generators/copy/USAGE +7 -0
  46. data/lib/generators/copy/copy_generator.rb +41 -0
  47. data/lib/generators/git/USAGE +8 -0
  48. data/lib/generators/git/git_generator.rb +59 -0
  49. data/lib/generators/setup/USAGE +8 -0
  50. data/lib/generators/setup/setup_generator.rb +151 -0
  51. data/lib/generators/success/USAGE +44 -0
  52. data/lib/generators/success/success_generator.rb +18 -0
  53. data/lib/tasks/.keep +0 -0
  54. data/makena/.gitignore +17 -0
  55. data/makena/Gemfile +4 -0
  56. data/makena/LICENSE.txt +22 -0
  57. data/makena/README.md +32 -0
  58. data/makena/Rakefile +1 -0
  59. data/makena/lib/makena.rb +21 -0
  60. data/makena/lib/makena/controllers.rb +218 -0
  61. data/makena/lib/makena/gps.rb +2 -0
  62. data/makena/lib/makena/image.rb +2 -0
  63. data/makena/lib/makena/layouts.rb +41 -0
  64. data/makena/lib/makena/models.rb +2 -0
  65. data/makena/lib/makena/tree.rb +181 -0
  66. data/makena/lib/makena/version.rb +3 -0
  67. data/makena/lib/makena/views.rb +225 -0
  68. data/makena/makena.gemspec +23 -0
  69. data/public/404.html +58 -0
  70. data/public/422.html +58 -0
  71. data/public/500.html +57 -0
  72. data/public/favicon.ico +0 -0
  73. data/public/robots.txt +5 -0
  74. data/vendor/assets/javascripts/.keep +0 -0
  75. data/vendor/assets/stylesheets/.keep +0 -0
  76. metadata +150 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 82455c265e2734b6831948ee832146f7bb3a721e
4
+ data.tar.gz: e1cbe0d2a95daf90a48ed9700d62c0aa30b568bd
5
+ SHA512:
6
+ metadata.gz: 97d6b3bcd37a0db8aed8662c7adf352de3a7043f02aebd0fc31ae45d771959aac6e71f58385e0a087ddfd35bfe7bf7dd24a7601e38d406e51b3cb62223c985b8
7
+ data.tar.gz: c9f186e7e1f7ee375dc209d595a4f93223a30b411862097c5ebf88dbd5eb03eac506c7799dc496fb59cad6547c5efc85738602e2dc2b53e2e9da6af6030064c6
data/.gitignore ADDED
@@ -0,0 +1,37 @@
1
+ # See http://help.github.com/ignore-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
+ config/local_env.yml
8
+ /.bundle
9
+ /db/*.sqlite3
10
+ /app/assets/images/big.ogg
11
+ /coverage
12
+ /public/image
13
+ /public/upload
14
+ /doc
15
+ /log/*.log
16
+ /spec
17
+ /test
18
+ /tmp
19
+ /public/uploads
20
+ /.sass-cache
21
+ *.swo
22
+ *.swp
23
+ *~
24
+ .bundle
25
+ doc
26
+ log
27
+ Notes
28
+ spec
29
+ test
30
+ tmp
31
+ *.swo
32
+ *.swp
33
+ *~
34
+
35
+ # Ignore application configuration
36
+ config/application.yml
37
+ config/secret.yml
data/Gemfile ADDED
@@ -0,0 +1,139 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # THOR: http://rubydoc.info/github/wycats/thor/master/Thor/Actions
4
+
5
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
6
+ #gem 'rails', '4.1.0'
7
+ gem 'rails', '4.0.3'
8
+ # Use mysql as the database for Active Record
9
+ gem 'mysql2' # https://github.com/brianmario/mysql2
10
+ # Use SCSS for stylesheets
11
+ gem 'sass-rails', '~> 4.0.3' # https://github.com/rails/sass-rails
12
+ # Use Uglifier as compressor for JavaScript assets
13
+ gem 'uglifier', '>= 1.3.0' # https://github.com/lautis/uglifier
14
+ # Use CoffeeScript for .js.coffee assets and views
15
+ gem 'coffee-rails', '~> 4.0.0' # https://github.com/rails/coffee-rails
16
+ # See https://github.com/sstephenson/execjs#readme for more supported runtimes
17
+ # gem 'therubyracer', platforms: :ruby
18
+
19
+ # Use jquery as the JavaScript library
20
+ gem 'jquery-rails' # https://github.com/indirect/jquery-rails
21
+ # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
22
+ gem 'turbolinks' # https://github.com/rails/turbolinks
23
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
24
+ gem 'jbuilder', '~> 2.0'
25
+ # bundle exec rake doc:rails generates the API under doc/api.
26
+ gem 'sdoc', '~> 0.4.0', group: :doc
27
+
28
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
29
+ gem 'spring', group: :development
30
+
31
+ # Use ActiveModel has_secure_password
32
+ # gem 'bcrypt', '~> 3.1.7'
33
+
34
+ # Use unicorn as the app server
35
+ # gem 'unicorn'
36
+
37
+ # Use Capistrano for deployment
38
+ # gem 'capistrano-rails', group: :development
39
+
40
+ # Use debugger
41
+ # gem 'debugger', group: [:development, :test]
42
+
43
+ gem 'makena', path: 'makena'
44
+ gem 'bcrypt-ruby', :require => 'bcrypt' # https://github.com/codahale/bcrypt-ruby
45
+ gem 'carrierwave' # https://github.com/jnicklas/carrierwave
46
+ gem 'chronic' # https://github.com/mojombo/chronic/
47
+ gem 'geocoder' # https://github.com/alexreisner/geocoder
48
+ gem 'albino' # https://github.com/github/albino
49
+ gem 'bootstrap-datepicker-rails' # https://github.com/Nerian/bootstrap-datepicker-rails
50
+ gem 'd3-rails' # https://github.com/iblue/d3-rails
51
+ gem 'exifr' # https://github.com/remvee/exifr
52
+ gem 'execjs' # https://github.com/sstephenson/execjs
53
+ gem 'iconv' # https://github.com/nurse/iconv
54
+ # rake figaro:heroku
55
+ # cp ../last_success/config/application.yml config/application.yml
56
+ gem 'figaro' # https://github.com/laserlemon/figaro
57
+ gem 'fog' # https://github.com/fog/fog
58
+ gem 'gherkin' # https://github.com/cucumber/gherkin
59
+ gem 'gmail' # https://github.com/nu7hatch/gmail
60
+ gem 'heroku' # https://github.com/heroku/heroku
61
+ gem 'jquery_mobile_rails' # https://github.com/dmarkow/jquery-mobile-rails
62
+ gem 'jquery-ui-rails' # https://github.com/joliss/jquery-ui-rails
63
+ gem 'json' #, '1.6.6' # https://github.com/flori/json
64
+ gem 'mandrill-rails' # https://github.com/evendis/mandrill-rails
65
+ gem 'nokogiri' # https://github.com/sparklemotion/nokogiri
66
+ gem 'numbers_in_words' # https://github.com/markburns/numbers_in_words
67
+ gem 'paypal-ipn', :require => 'paypal' # https://github.com/dwilkie/paypal
68
+ gem 'pg' # https://github.com/kamk/pg
69
+ gem 'postgres-pr' # https://github.com/mneumann/postgres-pr
70
+ gem 'phonegap-rails' # https://github.com/joscas/phonegap-rails
71
+ # rails g phonegap_rails:install
72
+ # rake phonegap:rails:android:create
73
+ # rake phonegap:rails:android:initall
74
+ gem 'rack' # https://github.com/chneukirchen/rack
75
+ gem 'rails_autolink' # https://github.com/tenderlove/rails_autolink
76
+ gem 'redcarpet', '1.17.2' # https://github.com/vmg/redcarpet
77
+ gem 'roadie' # https://github.com/Mange/roadie
78
+ gem 'rmagick' #...
79
+ gem 'sanitize' # https://github.com/rgrove/sanitize
80
+ gem 'sinatra' # https://github.com/sinatra/sinatra
81
+ gem 'therubyracer' # https://github.com/cowboyd/therubyracer
82
+ gem 'thin' # https://github.com/macournoyer/thin
83
+ gem 'twilio-ruby' # https://github.com/twilio/twilio-ruby
84
+ gem 'foreman'
85
+ gem 'unicorn'
86
+ gem 'will_paginate'
87
+ # https://github.com/mislav/will_paginate/wiki
88
+ # http://railscasts.com/episodes/240-search-sort-paginate-with-ajax?view=asciicast
89
+
90
+ group :development do
91
+
92
+ gem 'heroku_san' # http://pivotallabs.com/users/ken/blog/articles/2056-dry-devops-with-heroku-san
93
+ gem 'nifty-generators' # https://github.com/ryanb/nifty-generators
94
+ gem 'pry-plus' # https://github.com/rking/pry-plus
95
+ gem 'railroady' # https://github.com/preston/railroady
96
+
97
+ end
98
+
99
+ # BUNDLE bundle --without staging production
100
+ group :development, :test do
101
+
102
+ gem 'pry' # https://github.com/pry/pry
103
+ gem 'rspec' # https://github.com/rspec/rspec`
104
+ gem 'rspec-rails' # https://github.com/rspec/rspec-rails
105
+
106
+ end
107
+
108
+ group :test do
109
+
110
+ #gem 'minitest'
111
+ #gem 'shoulda-matchers'
112
+ gem 'autotest-rails' # https://github.com/seattlerb/autotest-rails
113
+ gem 'capybara' # https://github.com/jnicklas/capybara
114
+ gem 'cucumber' # https://github.com/cucumber/cucumber # https://github.com/cucumber/cucumber/wiki/Ruby-on-Rails
115
+ gem 'cucumber-rails', :require => false # https://github.com/cucumber/cucumber-rails
116
+ gem 'database_cleaner' # https://github.com/bmabey/database_cleaner
117
+ gem 'escape_utils' # https://github.com/brianmario/escape_utils
118
+ gem 'launchy' # https://github.com/copiousfreetime/launchy
119
+ gem 'letter_opener' # https://github.com/ryanb/letter_opener
120
+ gem 'pickle' # https://github.com/ianwhite/pickle
121
+ gem 'selenium-webdriver'
122
+ gem 'spork', '> 0.9.0.rc' # https://github.com/sporkrb/spork
123
+ gem 'simplecov', :require => false # https://github.com/colszowka/simplecov
124
+ gem 'turn', '< 0.8.3', :require => false # https://github.com/TwP/turn
125
+ gem 'webrat' # https://github.com/brynary/webrat
126
+ gem 'ZenTest' # https://github.com/seattlerb/zentest
127
+ gem "mocha" # https://github.com/visionmedia/mocha
128
+
129
+ end
130
+
131
+ # BUNDLE bundle --without staging production
132
+ group :production, :staging do
133
+
134
+ gem 'rails_12factor' # https://devcenter.heroku.com/articles/rails-integration-gems
135
+ gem 'newrelic_rpm' # https://github.com/newrelic/rpm
136
+ gem 'pry' # https://github.com/pry/pry
137
+
138
+ end
139
+
data/Gemfile.lock ADDED
@@ -0,0 +1,469 @@
1
+ PATH
2
+ remote: makena
3
+ specs:
4
+ makena (0.0.5)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ ZenTest (4.10.0)
10
+ actionmailer (4.0.3)
11
+ actionpack (= 4.0.3)
12
+ mail (~> 2.5.4)
13
+ actionpack (4.0.3)
14
+ activesupport (= 4.0.3)
15
+ builder (~> 3.1.0)
16
+ erubis (~> 2.7.0)
17
+ rack (~> 1.5.2)
18
+ rack-test (~> 0.6.2)
19
+ activemodel (4.0.3)
20
+ activesupport (= 4.0.3)
21
+ builder (~> 3.1.0)
22
+ activerecord (4.0.3)
23
+ activemodel (= 4.0.3)
24
+ activerecord-deprecated_finders (~> 1.0.2)
25
+ activesupport (= 4.0.3)
26
+ arel (~> 4.0.0)
27
+ activerecord-deprecated_finders (1.0.3)
28
+ activesupport (4.0.3)
29
+ i18n (~> 0.6, >= 0.6.4)
30
+ minitest (~> 4.2)
31
+ multi_json (~> 1.3)
32
+ thread_safe (~> 0.1)
33
+ tzinfo (~> 0.3.37)
34
+ addressable (2.3.6)
35
+ albino (1.3.3)
36
+ posix-spawn (>= 0.3.6)
37
+ ansi (1.4.3)
38
+ arel (4.0.2)
39
+ autotest-rails (4.2.1)
40
+ ZenTest (~> 4.5)
41
+ bcrypt (3.1.7)
42
+ bcrypt-ruby (3.1.5)
43
+ bcrypt (>= 3.1.3)
44
+ binding_of_caller (0.7.2)
45
+ debug_inspector (>= 0.0.1)
46
+ bond (0.5.1)
47
+ bootstrap-datepicker-rails (1.3.0.2)
48
+ railties (>= 3.0)
49
+ builder (3.1.4)
50
+ capybara (2.3.0)
51
+ mime-types (>= 1.16)
52
+ nokogiri (>= 1.3.3)
53
+ rack (>= 1.0.0)
54
+ rack-test (>= 0.5.4)
55
+ xpath (~> 2.0)
56
+ carrierwave (0.10.0)
57
+ activemodel (>= 3.2.0)
58
+ activesupport (>= 3.2.0)
59
+ json (>= 1.7)
60
+ mime-types (>= 1.16)
61
+ childprocess (0.5.3)
62
+ ffi (~> 1.0, >= 1.0.11)
63
+ chronic (0.10.2)
64
+ coderay (1.1.0)
65
+ coffee-rails (4.0.1)
66
+ coffee-script (>= 2.2.0)
67
+ railties (>= 4.0.0, < 5.0)
68
+ coffee-script (2.2.0)
69
+ coffee-script-source
70
+ execjs
71
+ coffee-script-source (1.7.0)
72
+ columnize (0.8.9)
73
+ crass (0.2.0)
74
+ css_parser (1.3.5)
75
+ addressable
76
+ cucumber (1.3.15)
77
+ builder (>= 2.1.2)
78
+ diff-lcs (>= 1.1.3)
79
+ gherkin (~> 2.12)
80
+ multi_json (>= 1.7.5, < 2.0)
81
+ multi_test (>= 0.1.1)
82
+ cucumber-rails (1.4.1)
83
+ capybara (>= 1.1.2, < 3)
84
+ cucumber (>= 1.3.8, < 2)
85
+ mime-types (~> 1.16)
86
+ nokogiri (~> 1.5)
87
+ rails (>= 3, < 5)
88
+ d3-rails (3.4.4)
89
+ railties (>= 3.1)
90
+ daemons (1.1.9)
91
+ database_cleaner (1.3.0)
92
+ debug_inspector (0.0.2)
93
+ debugger (1.6.8)
94
+ columnize (>= 0.3.1)
95
+ debugger-linecache (~> 1.2.0)
96
+ debugger-ruby_core_source (~> 1.3.5)
97
+ debugger-linecache (1.2.0)
98
+ debugger-ruby_core_source (1.3.5)
99
+ diff-lcs (1.2.5)
100
+ docile (1.1.5)
101
+ dotenv (0.11.1)
102
+ dotenv-deployment (~> 0.0.2)
103
+ dotenv-deployment (0.0.2)
104
+ erubis (2.7.0)
105
+ escape_utils (1.0.1)
106
+ eventmachine (1.0.3)
107
+ excon (0.37.0)
108
+ execjs (2.2.0)
109
+ exifr (1.1.3)
110
+ ffi (1.9.3)
111
+ figaro (0.7.0)
112
+ bundler (~> 1.0)
113
+ rails (>= 3, < 5)
114
+ fog (1.22.1)
115
+ fog-brightbox
116
+ fog-core (~> 1.22)
117
+ fog-json
118
+ ipaddress (~> 0.5)
119
+ nokogiri (~> 1.5, >= 1.5.11)
120
+ fog-brightbox (0.0.2)
121
+ fog-core
122
+ fog-json
123
+ fog-core (1.22.0)
124
+ builder
125
+ excon (~> 0.33)
126
+ formatador (~> 0.2)
127
+ mime-types
128
+ net-scp (~> 1.1)
129
+ net-ssh (>= 2.1.3)
130
+ fog-json (1.0.0)
131
+ multi_json (~> 1.0)
132
+ foreman (0.74.0)
133
+ dotenv (~> 0.11.1)
134
+ thor (~> 0.19.1)
135
+ formatador (0.2.5)
136
+ geocoder (1.2.2)
137
+ gherkin (2.12.2)
138
+ multi_json (~> 1.3)
139
+ gmail (0.4.0)
140
+ gmail_xoauth (>= 0.3.0)
141
+ mail (>= 2.2.1)
142
+ mime (>= 0.1)
143
+ gmail_xoauth (0.4.1)
144
+ oauth (>= 0.3.6)
145
+ heroku (3.8.4)
146
+ heroku-api (~> 0.3.17)
147
+ launchy (>= 0.3.2)
148
+ netrc (~> 0.7.7)
149
+ rest-client (~> 1.6.1)
150
+ rubyzip
151
+ heroku-api (0.3.18)
152
+ excon (~> 0.27)
153
+ multi_json (~> 1.8)
154
+ heroku_san (4.3.2)
155
+ heroku-api (>= 0.1.2)
156
+ json
157
+ rake
158
+ hike (1.2.3)
159
+ httparty (0.13.1)
160
+ json (~> 1.8)
161
+ multi_xml (>= 0.5.2)
162
+ i18n (0.6.9)
163
+ iconv (1.0.4)
164
+ interception (0.5)
165
+ ipaddress (0.8.0)
166
+ jbuilder (2.1.1)
167
+ activesupport (>= 3.0.0, < 5)
168
+ multi_json (~> 1.2)
169
+ jist (1.5.1)
170
+ json
171
+ jquery-rails (3.1.1)
172
+ railties (>= 3.0, < 5.0)
173
+ thor (>= 0.14, < 2.0)
174
+ jquery-ui-rails (4.2.1)
175
+ railties (>= 3.2.16)
176
+ jquery_mobile_rails (1.4.2)
177
+ railties (>= 3.1.0)
178
+ json (1.8.1)
179
+ jwt (1.0.0)
180
+ kgio (2.9.2)
181
+ launchy (2.4.2)
182
+ addressable (~> 2.3)
183
+ letter_opener (1.2.0)
184
+ launchy (~> 2.2)
185
+ libv8 (3.16.14.3)
186
+ mail (2.5.4)
187
+ mime-types (~> 1.16)
188
+ treetop (~> 1.4.8)
189
+ mandrill-rails (1.0.2)
190
+ activesupport (>= 3.0.3)
191
+ metaclass (0.0.4)
192
+ method_source (0.8.2)
193
+ mime (0.4.2)
194
+ mime-types (1.25.1)
195
+ mini_portile (0.6.0)
196
+ minitest (4.7.5)
197
+ mocha (1.1.0)
198
+ metaclass (~> 0.0.1)
199
+ multi_json (1.10.1)
200
+ multi_test (0.1.1)
201
+ multi_xml (0.5.5)
202
+ mysql2 (0.3.16)
203
+ net-scp (1.2.1)
204
+ net-ssh (>= 2.6.5)
205
+ net-ssh (2.9.1)
206
+ netrc (0.7.7)
207
+ newrelic_rpm (3.8.1.221)
208
+ nifty-generators (0.4.6)
209
+ nokogiri (1.6.2.1)
210
+ mini_portile (= 0.6.0)
211
+ nokogumbo (1.1.9)
212
+ nokogiri
213
+ numbers_in_words (0.2.0)
214
+ activesupport
215
+ oauth (0.4.7)
216
+ paypal-ipn (0.0.2)
217
+ httparty
218
+ pg (0.17.1)
219
+ phonegap-rails (0.0.12)
220
+ pickle (0.4.11)
221
+ cucumber (>= 0.8)
222
+ rake
223
+ polyglot (0.3.5)
224
+ posix-spawn (0.3.8)
225
+ postgres-pr (0.6.3)
226
+ pry (0.9.12.6)
227
+ coderay (~> 1.0)
228
+ method_source (~> 0.8)
229
+ slop (~> 3.4)
230
+ pry-debugger (0.2.2)
231
+ debugger (~> 1.3)
232
+ pry (~> 0.9.10)
233
+ pry-doc (0.6.0)
234
+ pry (~> 0.9)
235
+ yard (~> 0.8)
236
+ pry-docmore (0.1.1)
237
+ pry
238
+ pry-doc
239
+ pry-plus (1.0.0)
240
+ bond
241
+ jist
242
+ pry-debugger
243
+ pry-doc
244
+ pry-docmore
245
+ pry-rescue
246
+ pry-stack_explorer
247
+ pry-rescue (1.4.1)
248
+ interception (>= 0.5)
249
+ pry
250
+ pry-stack_explorer (0.4.9.1)
251
+ binding_of_caller (>= 0.7)
252
+ pry (>= 0.9.11)
253
+ rack (1.5.2)
254
+ rack-protection (1.5.3)
255
+ rack
256
+ rack-test (0.6.2)
257
+ rack (>= 1.0)
258
+ railroady (1.1.1)
259
+ rails (4.0.3)
260
+ actionmailer (= 4.0.3)
261
+ actionpack (= 4.0.3)
262
+ activerecord (= 4.0.3)
263
+ activesupport (= 4.0.3)
264
+ bundler (>= 1.3.0, < 2.0)
265
+ railties (= 4.0.3)
266
+ sprockets-rails (~> 2.0.0)
267
+ rails_12factor (0.0.2)
268
+ rails_serve_static_assets
269
+ rails_stdout_logging
270
+ rails_autolink (1.1.6)
271
+ rails (> 3.1)
272
+ rails_serve_static_assets (0.0.2)
273
+ rails_stdout_logging (0.0.3)
274
+ railties (4.0.3)
275
+ actionpack (= 4.0.3)
276
+ activesupport (= 4.0.3)
277
+ rake (>= 0.8.7)
278
+ thor (>= 0.18.1, < 2.0)
279
+ raindrops (0.13.0)
280
+ rake (10.3.2)
281
+ rdoc (4.1.1)
282
+ json (~> 1.4)
283
+ redcarpet (1.17.2)
284
+ ref (1.0.5)
285
+ rest-client (1.6.7)
286
+ mime-types (>= 1.16)
287
+ rmagick (2.13.2)
288
+ roadie (2.4.3)
289
+ actionmailer (> 3.0.0, < 5.0.0)
290
+ css_parser (~> 1.3.4)
291
+ nokogiri (> 1.5.0)
292
+ sprockets
293
+ rspec (3.0.0)
294
+ rspec-core (~> 3.0.0)
295
+ rspec-expectations (~> 3.0.0)
296
+ rspec-mocks (~> 3.0.0)
297
+ rspec-core (3.0.2)
298
+ rspec-support (~> 3.0.0)
299
+ rspec-expectations (3.0.2)
300
+ diff-lcs (>= 1.2.0, < 2.0)
301
+ rspec-support (~> 3.0.0)
302
+ rspec-mocks (3.0.2)
303
+ rspec-support (~> 3.0.0)
304
+ rspec-rails (3.0.1)
305
+ actionpack (>= 3.0)
306
+ activesupport (>= 3.0)
307
+ railties (>= 3.0)
308
+ rspec-core (~> 3.0.0)
309
+ rspec-expectations (~> 3.0.0)
310
+ rspec-mocks (~> 3.0.0)
311
+ rspec-support (~> 3.0.0)
312
+ rspec-support (3.0.2)
313
+ rubyzip (1.1.4)
314
+ sanitize (3.0.0)
315
+ crass (~> 0.2.0)
316
+ nokogiri (>= 1.4.4)
317
+ nokogumbo (= 1.1.9)
318
+ sass (3.2.19)
319
+ sass-rails (4.0.3)
320
+ railties (>= 4.0.0, < 5.0)
321
+ sass (~> 3.2.0)
322
+ sprockets (~> 2.8, <= 2.11.0)
323
+ sprockets-rails (~> 2.0)
324
+ sdoc (0.4.0)
325
+ json (~> 1.8)
326
+ rdoc (~> 4.0, < 5.0)
327
+ selenium-webdriver (2.42.0)
328
+ childprocess (>= 0.5.0)
329
+ multi_json (~> 1.0)
330
+ rubyzip (~> 1.0)
331
+ websocket (~> 1.0.4)
332
+ simplecov (0.8.2)
333
+ docile (~> 1.1.0)
334
+ multi_json
335
+ simplecov-html (~> 0.8.0)
336
+ simplecov-html (0.8.0)
337
+ sinatra (1.4.5)
338
+ rack (~> 1.4)
339
+ rack-protection (~> 1.4)
340
+ tilt (~> 1.3, >= 1.3.4)
341
+ slop (3.5.0)
342
+ spork (1.0.0rc4)
343
+ spring (1.1.3)
344
+ sprockets (2.11.0)
345
+ hike (~> 1.2)
346
+ multi_json (~> 1.0)
347
+ rack (~> 1.0)
348
+ tilt (~> 1.1, != 1.3.0)
349
+ sprockets-rails (2.0.1)
350
+ actionpack (>= 3.0)
351
+ activesupport (>= 3.0)
352
+ sprockets (~> 2.8)
353
+ therubyracer (0.12.1)
354
+ libv8 (~> 3.16.14.0)
355
+ ref
356
+ thin (1.6.2)
357
+ daemons (>= 1.0.9)
358
+ eventmachine (>= 1.0.0)
359
+ rack (>= 1.0.0)
360
+ thor (0.19.1)
361
+ thread_safe (0.3.4)
362
+ tilt (1.4.1)
363
+ treetop (1.4.15)
364
+ polyglot
365
+ polyglot (>= 0.3.1)
366
+ turbolinks (2.2.2)
367
+ coffee-rails
368
+ turn (0.8.2)
369
+ ansi (>= 1.2.2)
370
+ twilio-ruby (3.11.5)
371
+ builder (>= 2.1.2)
372
+ jwt (>= 0.1.2)
373
+ multi_json (>= 1.3.0)
374
+ tzinfo (0.3.39)
375
+ uglifier (2.5.1)
376
+ execjs (>= 0.3.0)
377
+ json (>= 1.8.0)
378
+ unicorn (4.8.3)
379
+ kgio (~> 2.6)
380
+ rack
381
+ raindrops (~> 0.7)
382
+ webrat (0.7.3)
383
+ nokogiri (>= 1.2.0)
384
+ rack (>= 1.0)
385
+ rack-test (>= 0.5.3)
386
+ websocket (1.0.7)
387
+ will_paginate (3.0.5)
388
+ xpath (2.0.0)
389
+ nokogiri (~> 1.3)
390
+ yard (0.8.7.4)
391
+
392
+ PLATFORMS
393
+ ruby
394
+
395
+ DEPENDENCIES
396
+ ZenTest
397
+ albino
398
+ autotest-rails
399
+ bcrypt-ruby
400
+ bootstrap-datepicker-rails
401
+ capybara
402
+ carrierwave
403
+ chronic
404
+ coffee-rails (~> 4.0.0)
405
+ cucumber
406
+ cucumber-rails
407
+ d3-rails
408
+ database_cleaner
409
+ escape_utils
410
+ execjs
411
+ exifr
412
+ figaro
413
+ fog
414
+ foreman
415
+ geocoder
416
+ gherkin
417
+ gmail
418
+ heroku
419
+ heroku_san
420
+ iconv
421
+ jbuilder (~> 2.0)
422
+ jquery-rails
423
+ jquery-ui-rails
424
+ jquery_mobile_rails
425
+ json
426
+ launchy
427
+ letter_opener
428
+ makena!
429
+ mandrill-rails
430
+ mocha
431
+ mysql2
432
+ newrelic_rpm
433
+ nifty-generators
434
+ nokogiri
435
+ numbers_in_words
436
+ paypal-ipn
437
+ pg
438
+ phonegap-rails
439
+ pickle
440
+ postgres-pr
441
+ pry
442
+ pry-plus
443
+ rack
444
+ railroady
445
+ rails (= 4.0.3)
446
+ rails_12factor
447
+ rails_autolink
448
+ redcarpet (= 1.17.2)
449
+ rmagick
450
+ roadie
451
+ rspec
452
+ rspec-rails
453
+ sanitize
454
+ sass-rails (~> 4.0.3)
455
+ sdoc (~> 0.4.0)
456
+ selenium-webdriver
457
+ simplecov
458
+ sinatra
459
+ spork (> 0.9.0.rc)
460
+ spring
461
+ therubyracer
462
+ thin
463
+ turbolinks
464
+ turn (< 0.8.3)
465
+ twilio-ruby
466
+ uglifier (>= 1.3.0)
467
+ unicorn
468
+ webrat
469
+ will_paginate