Unable to load application: LoadError: cannot load such file — rack/mount`require': cannot load such file — rack-webconsole (LoadError)Install mysql2 gem on Snow Leopard for Rails 3 with rvm`require': no such file to load — mkmf (LoadError)Libv8 error when deploying a rails app to a Ubuntu 10.04 VPSundefined local variable or method `user_params' rails 4I get error when try go to backend after to install refinerycms-portfolioThere was an error while trying to load the gem 'sass-rails'. (Bundler::GemRequireError)How do i use d3.js to create a bar chart in my Rails5 appRails server quits right when it startsRuby on Rails - rails server exits immediately after starting (SystemStackError)rails s command no longer working
Is there really no realistic way for a skeleton monster to move around without magic?
What is the command to reset a PC without deleting any files
Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?
Patience, young "Padovan"
Is Social Media Science Fiction?
What are these boxed doors outside store fronts in New York?
How is this relation reflexive?
Why is "Reports" in sentence down without "The"
Extreme, but not acceptable situation and I can't start the work tomorrow morning
Are white and non-white police officers equally likely to kill black suspects?
Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?
"which" command doesn't work / path of Safari?
I probably found a bug with the sudo apt install function
Prevent a directory in /tmp from being deleted
whey we use polarized capacitor?
How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?
Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)
Are tax years 2016 & 2017 back taxes deductible for tax year 2018?
What is the offset in a seaplane's hull?
Is it possible to make sharp wind that can cut stuff from afar?
TGV timetables / schedules?
Can a German sentence have two subjects?
How do you conduct xenoanthropology after first contact?
Why Is Death Allowed In the Matrix?
Unable to load application: LoadError: cannot load such file — rack/mount
`require': cannot load such file — rack-webconsole (LoadError)Install mysql2 gem on Snow Leopard for Rails 3 with rvm`require': no such file to load — mkmf (LoadError)Libv8 error when deploying a rails app to a Ubuntu 10.04 VPSundefined local variable or method `user_params' rails 4I get error when try go to backend after to install refinerycms-portfolioThere was an error while trying to load the gem 'sass-rails'. (Bundler::GemRequireError)How do i use d3.js to create a bar chart in my Rails5 appRails server quits right when it startsRuby on Rails - rails server exits immediately after starting (SystemStackError)rails s command no longer working
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am trying to run a local rails server and cannot get it to start with
rails s
OR
bundle exec puma
I am getting the following error?
Unable to load application: LoadError: cannot load such file -- rack/mount
BUNDLE ENV produces
## Environment
```
Bundler 2.0.1
Platforms ruby, x86_64-darwin-17
Ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-darwin17]
Full Path /Users/jn/.rbenv/versions/2.3.1/bin/ruby
Config Dir /Users/jn/.rbenv/versions/2.3.1/etc
RubyGems 2.5.1
Gem Home /Users/jn/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0
Gem Path /Users/jn/.gem/ruby/2.3.0:/Users/jn/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0
User Path /Users/jn/.gem/ruby/2.3.0
Bin Dir /Users/jn/.rbenv/versions/2.3.1/bin
Tools
Git 2.15.2 (Apple Git-101.1)
RVM not installed
rbenv rbenv 1.1.1
chruby not installed
```
## Bundler Build Metadata
```
Built At 2019-01-04
Git SHA ffff33
Released Version true
```
## Bundler settings
```
build.libv8
Set for the current user (/Users/jn/.bundle/config): "--with-system-v8"
build.therubyracer
Set for the current user (/Users/jn/.bundle/config): "--with-system-v8"
```
## Gemfile
### Gemfile
```ruby
source 'https://rubygems.org'
ruby '2.3.1'
gem 'rails', '~> 4.2.4'
gem 'mongo'
gem 'bson_ext'
gem 'mongoid', '~> 5.0.0'
# mongoid seemed to want these to run the generator
gem 'execjs'
#gem 'therubyracer'
gem 'devise'
gem 'grape'
#gem 'grape-swagger'
#gem 'thin'
#gem 'puma'
gem 'geocoder'
#gem 'mongoid_geospatial'
gem 'kaminari' # pagination
gem 'iron_worker_ng'
gem 'newrelic_rpm'
gem 'newrelic-grape'
gem "opentok", "~> 2.2"
gem 'mandrill-api'
gem 'aws-sdk', "~> 1"
gem 'nexmo'
gem 'rmagick'
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
gem 'twilio-ruby'
gem 'gcm'
gem 'chronic'
gem 'oauth2' # for stripe connect
gem 'houston'
gem 'hashids'
gem 'rack-cors', :require => 'rack/cors'
gem 'mail'
gem 'sendgrid-ruby'
group :production, :staging do
gem 'rails_12factor'
gem "puma"
#gem 'thin'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'timecop'
#gem 'debugger'
gem 'typhoeus'
gem 'foreman'
#gem 'thin'
#gem "puma"
#gem 'rbnacl'
end
# Gems used only for assets and not required
# in production environments by default.
#group :assets do
# gem 'sass-rails'
# gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
# gem 'uglifier'
#end
gem 'uglifier'
gem 'jquery-rails'
```
### Gemfile.lock
```
GIT
remote: https://github.com/stripe/stripe-ruby
revision: df8c141bb8601f1a4574ad2e78f205721007e332
specs:
stripe (4.9.0)
faraday (~> 0.13)
net-http-persistent (~> 3.0)
GEM
remote: https://rubygems.org/
specs:
actionmailer (4.2.11)
actionpack (= 4.2.11)
actionview (= 4.2.11)
activejob (= 4.2.11)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5)
actionpack (4.2.11)
actionview (= 4.2.11)
activesupport (= 4.2.11)
rack (~> 1.6)
rack-test (~> 0.6.2)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (4.2.11)
activesupport (= 4.2.11)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (4.2.11)
activesupport (= 4.2.11)
globalid (>= 0.3.0)
activemodel (4.2.11)
activesupport (= 4.2.11)
builder (~> 3.1)
activerecord (4.2.11)
activemodel (= 4.2.11)
activesupport (= 4.2.11)
arel (~> 6.0)
activesupport (4.2.11)
i18n (~> 0.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
addressable (2.3.8)
arel (6.0.3)
aws-sdk (1.66.0)
aws-sdk-v1 (= 1.66.0)
aws-sdk-v1 (1.66.0)
json (~> 1.4)
nokogiri (~> 1)
axiom-types (0.1.1)
descendants_tracker (~> 0.0.4)
ice_nine (~> 0.11.0)
thread_safe (~> 0.3, >= 0.3.1)
bcrypt (3.1.12)
bson (4.4.2)
bson_ext (1.5.1)
builder (3.2.3)
chronic (0.10.2)
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
commander (4.4.7)
highline (~> 2.0.0)
concurrent-ruby (1.1.4)
connection_pool (2.2.2)
crass (1.0.4)
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
devise (4.6.1)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 6.0)
responders
warden (~> 1.2.3)
equalizer (0.0.11)
erubis (2.7.0)
ethon (0.12.0)
ffi (>= 1.3.0)
excon (0.62.0)
execjs (2.7.0)
factory_girl (4.9.0)
activesupport (>= 3.0.0)
factory_girl_rails (4.9.0)
factory_girl (~> 4.9.0)
railties (>= 3.0.0)
faraday (0.15.4)
multipart-post (>= 1.2, < 3)
ffi (1.10.0)
foreman (0.85.0)
thor (~> 0.19.1)
gcm (0.1.1)
httparty
json
geocoder (1.2.11)
globalid (0.3.6)
activesupport (>= 4.1.0)
grape (0.13.0)
activesupport
builder
mustermann-grape (~> 1.0.0)
rack (>= 1.3.0)
rack-accept
virtus (>= 1.0.0)
hashids (1.0.5)
highline (2.0.1)
houston (2.4.0)
commander (~> 4.4)
json
httparty (0.14.0)
multi_xml (>= 0.5.2)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
ice_nine (0.11.2)
iron_core (1.0.9)
rest (>= 3.0.4)
iron_worker_ng (1.6.10)
bundler
iron_core (>= 1.0.6)
rubyzip (>= 1.0.0)
jquery-rails (4.3.3)
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
json (1.8.6)
jwt (1.5.6)
kaminari (1.1.1)
activesupport (>= 4.1.0)
kaminari-actionview (= 1.1.1)
kaminari-activerecord (= 1.1.1)
kaminari-core (= 1.1.1)
kaminari-actionview (1.1.1)
actionview
kaminari-core (= 1.1.1)
kaminari-activerecord (1.1.1)
activerecord
kaminari-core (= 1.1.1)
kaminari-core (1.1.1)
loofah (2.2.3)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
mail (2.7.1)
mini_mime (>= 0.1.1)
mandrill-api (1.0.53)
excon (>= 0.16.0, < 1.0)
json (>= 1.7.7, < 2.0)
mini_mime (1.0.1)
mini_portile2 (2.4.0)
minitest (5.11.3)
mongo (2.7.1)
bson (>= 4.4.2, < 5.0.0)
mongoid (5.0.2)
activemodel (~> 4.0)
mongo (~> 2.1)
origin (~> 2.1)
tzinfo (>= 0.3.37)
multi_json (1.13.1)
multi_xml (0.6.0)
multipart-post (2.0.0)
mustermann (1.0.3)
mustermann-grape (1.0.0)
mustermann (~> 1.0.0)
net-http-persistent (3.0.0)
connection_pool (~> 2.2)
netrc (0.11.0)
newrelic-grape (2.1.0)
grape
newrelic_rpm
newrelic_rpm (6.1.0.352)
nexmo (5.2.0)
jwt
nokogiri (1.10.1)
mini_portile2 (~> 2.4.0)
oauth2 (1.4.1)
faraday (>= 0.8, < 0.16.0)
jwt (>= 1.0, < 3.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
opentok (2.5.0)
activesupport (>= 2.0)
addressable (~> 2.3)
httparty (~> 0.14.0)
jwt (~> 1.5.6)
origin (2.3.1)
orm_adapter (0.5.0)
public_suffix (3.0.3)
puma (3.12.0)
rack (1.6.11)
rack-accept (0.4.5)
rack (>= 0.4)
rack-cors (1.0.2)
rack-protection (1.5.5)
rack
rack-test (0.6.3)
rack (>= 1.0)
rails (4.2.11)
actionmailer (= 4.2.11)
actionpack (= 4.2.11)
actionview (= 4.2.11)
activejob (= 4.2.11)
activemodel (= 4.2.11)
activerecord (= 4.2.11)
activesupport (= 4.2.11)
bundler (>= 1.3.0, < 2.0)
railties (= 4.2.11)
sprockets-rails
rails-deprecated_sanitizer (1.0.3)
activesupport (>= 4.2.0.alpha)
rails-dom-testing (1.0.9)
activesupport (>= 4.2.0, < 5.0)
nokogiri (~> 1.6)
rails-deprecated_sanitizer (>= 1.0.1)
rails-html-sanitizer (1.0.4)
loofah (~> 2.2, >= 2.2.2)
rails_12factor (0.0.3)
rails_serve_static_assets
rails_stdout_logging
rails_serve_static_assets (0.0.5)
rails_stdout_logging (0.0.5)
railties (4.2.11)
actionpack (= 4.2.11)
activesupport (= 4.2.11)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rake (10.4.2)
responders (2.1.0)
railties (>= 4.2.0, < 5)
rest (3.0.6)
net-http-persistent (>= 2.9.1)
netrc
rmagick (3.0.0)
ruby_http_client (3.3.0)
rubyzip (1.2.2)
sendgrid-ruby (5.3.0)
ruby_http_client (~> 3.3.0)
sinatra (>= 1.4.7, < 3)
sinatra (1.4.8)
rack (~> 1.5)
rack-protection (~> 1.4)
tilt (>= 1.3, < 3)
sprockets (3.7.2)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-rails (3.2.1)
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets (>= 3.0.0)
thor (0.19.4)
thread_safe (0.3.6)
tilt (2.0.9)
timecop (0.9.1)
twilio-ruby (5.21.1)
faraday (~> 0.9)
jwt (>= 1.5, <= 2.5)
nokogiri (>= 1.6, < 2.0)
typhoeus (1.3.1)
ethon (>= 0.9.0)
tzinfo (1.2.5)
thread_safe (~> 0.1)
uglifier (4.1.20)
execjs (>= 0.3.0, < 3)
virtus (1.0.5)
axiom-types (~> 0.1)
coercible (~> 1.0)
descendants_tracker (~> 0.0, >= 0.0.3)
equalizer (~> 0.0, >= 0.0.9)
warden (1.2.7)
rack (>= 1.0)
PLATFORMS
ruby
DEPENDENCIES
aws-sdk (~> 1)
bson_ext
chronic
devise
execjs
factory_girl_rails
foreman
gcm
geocoder
grape
hashids
houston
iron_worker_ng
jquery-rails
kaminari
mail
mandrill-api
mongo
mongoid (~> 5.0.0)
newrelic-grape
newrelic_rpm
nexmo
oauth2
opentok (~> 2.2)
puma
rack-cors
rails (~> 4.2.4)
rails_12factor
rmagick
sendgrid-ruby
stripe!
timecop
twilio-ruby
typhoeus
uglifier
RUBY VERSION
ruby 2.3.1p112
BUNDLED WITH
1.17.1
```
ruby-on-rails ruby-on-rails-4
add a comment |
I am trying to run a local rails server and cannot get it to start with
rails s
OR
bundle exec puma
I am getting the following error?
Unable to load application: LoadError: cannot load such file -- rack/mount
BUNDLE ENV produces
## Environment
```
Bundler 2.0.1
Platforms ruby, x86_64-darwin-17
Ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-darwin17]
Full Path /Users/jn/.rbenv/versions/2.3.1/bin/ruby
Config Dir /Users/jn/.rbenv/versions/2.3.1/etc
RubyGems 2.5.1
Gem Home /Users/jn/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0
Gem Path /Users/jn/.gem/ruby/2.3.0:/Users/jn/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0
User Path /Users/jn/.gem/ruby/2.3.0
Bin Dir /Users/jn/.rbenv/versions/2.3.1/bin
Tools
Git 2.15.2 (Apple Git-101.1)
RVM not installed
rbenv rbenv 1.1.1
chruby not installed
```
## Bundler Build Metadata
```
Built At 2019-01-04
Git SHA ffff33
Released Version true
```
## Bundler settings
```
build.libv8
Set for the current user (/Users/jn/.bundle/config): "--with-system-v8"
build.therubyracer
Set for the current user (/Users/jn/.bundle/config): "--with-system-v8"
```
## Gemfile
### Gemfile
```ruby
source 'https://rubygems.org'
ruby '2.3.1'
gem 'rails', '~> 4.2.4'
gem 'mongo'
gem 'bson_ext'
gem 'mongoid', '~> 5.0.0'
# mongoid seemed to want these to run the generator
gem 'execjs'
#gem 'therubyracer'
gem 'devise'
gem 'grape'
#gem 'grape-swagger'
#gem 'thin'
#gem 'puma'
gem 'geocoder'
#gem 'mongoid_geospatial'
gem 'kaminari' # pagination
gem 'iron_worker_ng'
gem 'newrelic_rpm'
gem 'newrelic-grape'
gem "opentok", "~> 2.2"
gem 'mandrill-api'
gem 'aws-sdk', "~> 1"
gem 'nexmo'
gem 'rmagick'
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
gem 'twilio-ruby'
gem 'gcm'
gem 'chronic'
gem 'oauth2' # for stripe connect
gem 'houston'
gem 'hashids'
gem 'rack-cors', :require => 'rack/cors'
gem 'mail'
gem 'sendgrid-ruby'
group :production, :staging do
gem 'rails_12factor'
gem "puma"
#gem 'thin'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'timecop'
#gem 'debugger'
gem 'typhoeus'
gem 'foreman'
#gem 'thin'
#gem "puma"
#gem 'rbnacl'
end
# Gems used only for assets and not required
# in production environments by default.
#group :assets do
# gem 'sass-rails'
# gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
# gem 'uglifier'
#end
gem 'uglifier'
gem 'jquery-rails'
```
### Gemfile.lock
```
GIT
remote: https://github.com/stripe/stripe-ruby
revision: df8c141bb8601f1a4574ad2e78f205721007e332
specs:
stripe (4.9.0)
faraday (~> 0.13)
net-http-persistent (~> 3.0)
GEM
remote: https://rubygems.org/
specs:
actionmailer (4.2.11)
actionpack (= 4.2.11)
actionview (= 4.2.11)
activejob (= 4.2.11)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5)
actionpack (4.2.11)
actionview (= 4.2.11)
activesupport (= 4.2.11)
rack (~> 1.6)
rack-test (~> 0.6.2)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (4.2.11)
activesupport (= 4.2.11)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (4.2.11)
activesupport (= 4.2.11)
globalid (>= 0.3.0)
activemodel (4.2.11)
activesupport (= 4.2.11)
builder (~> 3.1)
activerecord (4.2.11)
activemodel (= 4.2.11)
activesupport (= 4.2.11)
arel (~> 6.0)
activesupport (4.2.11)
i18n (~> 0.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
addressable (2.3.8)
arel (6.0.3)
aws-sdk (1.66.0)
aws-sdk-v1 (= 1.66.0)
aws-sdk-v1 (1.66.0)
json (~> 1.4)
nokogiri (~> 1)
axiom-types (0.1.1)
descendants_tracker (~> 0.0.4)
ice_nine (~> 0.11.0)
thread_safe (~> 0.3, >= 0.3.1)
bcrypt (3.1.12)
bson (4.4.2)
bson_ext (1.5.1)
builder (3.2.3)
chronic (0.10.2)
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
commander (4.4.7)
highline (~> 2.0.0)
concurrent-ruby (1.1.4)
connection_pool (2.2.2)
crass (1.0.4)
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
devise (4.6.1)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 6.0)
responders
warden (~> 1.2.3)
equalizer (0.0.11)
erubis (2.7.0)
ethon (0.12.0)
ffi (>= 1.3.0)
excon (0.62.0)
execjs (2.7.0)
factory_girl (4.9.0)
activesupport (>= 3.0.0)
factory_girl_rails (4.9.0)
factory_girl (~> 4.9.0)
railties (>= 3.0.0)
faraday (0.15.4)
multipart-post (>= 1.2, < 3)
ffi (1.10.0)
foreman (0.85.0)
thor (~> 0.19.1)
gcm (0.1.1)
httparty
json
geocoder (1.2.11)
globalid (0.3.6)
activesupport (>= 4.1.0)
grape (0.13.0)
activesupport
builder
mustermann-grape (~> 1.0.0)
rack (>= 1.3.0)
rack-accept
virtus (>= 1.0.0)
hashids (1.0.5)
highline (2.0.1)
houston (2.4.0)
commander (~> 4.4)
json
httparty (0.14.0)
multi_xml (>= 0.5.2)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
ice_nine (0.11.2)
iron_core (1.0.9)
rest (>= 3.0.4)
iron_worker_ng (1.6.10)
bundler
iron_core (>= 1.0.6)
rubyzip (>= 1.0.0)
jquery-rails (4.3.3)
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
json (1.8.6)
jwt (1.5.6)
kaminari (1.1.1)
activesupport (>= 4.1.0)
kaminari-actionview (= 1.1.1)
kaminari-activerecord (= 1.1.1)
kaminari-core (= 1.1.1)
kaminari-actionview (1.1.1)
actionview
kaminari-core (= 1.1.1)
kaminari-activerecord (1.1.1)
activerecord
kaminari-core (= 1.1.1)
kaminari-core (1.1.1)
loofah (2.2.3)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
mail (2.7.1)
mini_mime (>= 0.1.1)
mandrill-api (1.0.53)
excon (>= 0.16.0, < 1.0)
json (>= 1.7.7, < 2.0)
mini_mime (1.0.1)
mini_portile2 (2.4.0)
minitest (5.11.3)
mongo (2.7.1)
bson (>= 4.4.2, < 5.0.0)
mongoid (5.0.2)
activemodel (~> 4.0)
mongo (~> 2.1)
origin (~> 2.1)
tzinfo (>= 0.3.37)
multi_json (1.13.1)
multi_xml (0.6.0)
multipart-post (2.0.0)
mustermann (1.0.3)
mustermann-grape (1.0.0)
mustermann (~> 1.0.0)
net-http-persistent (3.0.0)
connection_pool (~> 2.2)
netrc (0.11.0)
newrelic-grape (2.1.0)
grape
newrelic_rpm
newrelic_rpm (6.1.0.352)
nexmo (5.2.0)
jwt
nokogiri (1.10.1)
mini_portile2 (~> 2.4.0)
oauth2 (1.4.1)
faraday (>= 0.8, < 0.16.0)
jwt (>= 1.0, < 3.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
opentok (2.5.0)
activesupport (>= 2.0)
addressable (~> 2.3)
httparty (~> 0.14.0)
jwt (~> 1.5.6)
origin (2.3.1)
orm_adapter (0.5.0)
public_suffix (3.0.3)
puma (3.12.0)
rack (1.6.11)
rack-accept (0.4.5)
rack (>= 0.4)
rack-cors (1.0.2)
rack-protection (1.5.5)
rack
rack-test (0.6.3)
rack (>= 1.0)
rails (4.2.11)
actionmailer (= 4.2.11)
actionpack (= 4.2.11)
actionview (= 4.2.11)
activejob (= 4.2.11)
activemodel (= 4.2.11)
activerecord (= 4.2.11)
activesupport (= 4.2.11)
bundler (>= 1.3.0, < 2.0)
railties (= 4.2.11)
sprockets-rails
rails-deprecated_sanitizer (1.0.3)
activesupport (>= 4.2.0.alpha)
rails-dom-testing (1.0.9)
activesupport (>= 4.2.0, < 5.0)
nokogiri (~> 1.6)
rails-deprecated_sanitizer (>= 1.0.1)
rails-html-sanitizer (1.0.4)
loofah (~> 2.2, >= 2.2.2)
rails_12factor (0.0.3)
rails_serve_static_assets
rails_stdout_logging
rails_serve_static_assets (0.0.5)
rails_stdout_logging (0.0.5)
railties (4.2.11)
actionpack (= 4.2.11)
activesupport (= 4.2.11)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rake (10.4.2)
responders (2.1.0)
railties (>= 4.2.0, < 5)
rest (3.0.6)
net-http-persistent (>= 2.9.1)
netrc
rmagick (3.0.0)
ruby_http_client (3.3.0)
rubyzip (1.2.2)
sendgrid-ruby (5.3.0)
ruby_http_client (~> 3.3.0)
sinatra (>= 1.4.7, < 3)
sinatra (1.4.8)
rack (~> 1.5)
rack-protection (~> 1.4)
tilt (>= 1.3, < 3)
sprockets (3.7.2)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-rails (3.2.1)
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets (>= 3.0.0)
thor (0.19.4)
thread_safe (0.3.6)
tilt (2.0.9)
timecop (0.9.1)
twilio-ruby (5.21.1)
faraday (~> 0.9)
jwt (>= 1.5, <= 2.5)
nokogiri (>= 1.6, < 2.0)
typhoeus (1.3.1)
ethon (>= 0.9.0)
tzinfo (1.2.5)
thread_safe (~> 0.1)
uglifier (4.1.20)
execjs (>= 0.3.0, < 3)
virtus (1.0.5)
axiom-types (~> 0.1)
coercible (~> 1.0)
descendants_tracker (~> 0.0, >= 0.0.3)
equalizer (~> 0.0, >= 0.0.9)
warden (1.2.7)
rack (>= 1.0)
PLATFORMS
ruby
DEPENDENCIES
aws-sdk (~> 1)
bson_ext
chronic
devise
execjs
factory_girl_rails
foreman
gcm
geocoder
grape
hashids
houston
iron_worker_ng
jquery-rails
kaminari
mail
mandrill-api
mongo
mongoid (~> 5.0.0)
newrelic-grape
newrelic_rpm
nexmo
oauth2
opentok (~> 2.2)
puma
rack-cors
rails (~> 4.2.4)
rails_12factor
rmagick
sendgrid-ruby
stripe!
timecop
twilio-ruby
typhoeus
uglifier
RUBY VERSION
ruby 2.3.1p112
BUNDLED WITH
1.17.1
```
ruby-on-rails ruby-on-rails-4
did yo try this? stackoverflow.com/questions/26856994/…
– Noriel
Mar 8 at 3:52
Don't see a solution over there. UPDATED
– jdog
Mar 8 at 19:14
add a comment |
I am trying to run a local rails server and cannot get it to start with
rails s
OR
bundle exec puma
I am getting the following error?
Unable to load application: LoadError: cannot load such file -- rack/mount
BUNDLE ENV produces
## Environment
```
Bundler 2.0.1
Platforms ruby, x86_64-darwin-17
Ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-darwin17]
Full Path /Users/jn/.rbenv/versions/2.3.1/bin/ruby
Config Dir /Users/jn/.rbenv/versions/2.3.1/etc
RubyGems 2.5.1
Gem Home /Users/jn/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0
Gem Path /Users/jn/.gem/ruby/2.3.0:/Users/jn/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0
User Path /Users/jn/.gem/ruby/2.3.0
Bin Dir /Users/jn/.rbenv/versions/2.3.1/bin
Tools
Git 2.15.2 (Apple Git-101.1)
RVM not installed
rbenv rbenv 1.1.1
chruby not installed
```
## Bundler Build Metadata
```
Built At 2019-01-04
Git SHA ffff33
Released Version true
```
## Bundler settings
```
build.libv8
Set for the current user (/Users/jn/.bundle/config): "--with-system-v8"
build.therubyracer
Set for the current user (/Users/jn/.bundle/config): "--with-system-v8"
```
## Gemfile
### Gemfile
```ruby
source 'https://rubygems.org'
ruby '2.3.1'
gem 'rails', '~> 4.2.4'
gem 'mongo'
gem 'bson_ext'
gem 'mongoid', '~> 5.0.0'
# mongoid seemed to want these to run the generator
gem 'execjs'
#gem 'therubyracer'
gem 'devise'
gem 'grape'
#gem 'grape-swagger'
#gem 'thin'
#gem 'puma'
gem 'geocoder'
#gem 'mongoid_geospatial'
gem 'kaminari' # pagination
gem 'iron_worker_ng'
gem 'newrelic_rpm'
gem 'newrelic-grape'
gem "opentok", "~> 2.2"
gem 'mandrill-api'
gem 'aws-sdk', "~> 1"
gem 'nexmo'
gem 'rmagick'
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
gem 'twilio-ruby'
gem 'gcm'
gem 'chronic'
gem 'oauth2' # for stripe connect
gem 'houston'
gem 'hashids'
gem 'rack-cors', :require => 'rack/cors'
gem 'mail'
gem 'sendgrid-ruby'
group :production, :staging do
gem 'rails_12factor'
gem "puma"
#gem 'thin'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'timecop'
#gem 'debugger'
gem 'typhoeus'
gem 'foreman'
#gem 'thin'
#gem "puma"
#gem 'rbnacl'
end
# Gems used only for assets and not required
# in production environments by default.
#group :assets do
# gem 'sass-rails'
# gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
# gem 'uglifier'
#end
gem 'uglifier'
gem 'jquery-rails'
```
### Gemfile.lock
```
GIT
remote: https://github.com/stripe/stripe-ruby
revision: df8c141bb8601f1a4574ad2e78f205721007e332
specs:
stripe (4.9.0)
faraday (~> 0.13)
net-http-persistent (~> 3.0)
GEM
remote: https://rubygems.org/
specs:
actionmailer (4.2.11)
actionpack (= 4.2.11)
actionview (= 4.2.11)
activejob (= 4.2.11)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5)
actionpack (4.2.11)
actionview (= 4.2.11)
activesupport (= 4.2.11)
rack (~> 1.6)
rack-test (~> 0.6.2)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (4.2.11)
activesupport (= 4.2.11)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (4.2.11)
activesupport (= 4.2.11)
globalid (>= 0.3.0)
activemodel (4.2.11)
activesupport (= 4.2.11)
builder (~> 3.1)
activerecord (4.2.11)
activemodel (= 4.2.11)
activesupport (= 4.2.11)
arel (~> 6.0)
activesupport (4.2.11)
i18n (~> 0.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
addressable (2.3.8)
arel (6.0.3)
aws-sdk (1.66.0)
aws-sdk-v1 (= 1.66.0)
aws-sdk-v1 (1.66.0)
json (~> 1.4)
nokogiri (~> 1)
axiom-types (0.1.1)
descendants_tracker (~> 0.0.4)
ice_nine (~> 0.11.0)
thread_safe (~> 0.3, >= 0.3.1)
bcrypt (3.1.12)
bson (4.4.2)
bson_ext (1.5.1)
builder (3.2.3)
chronic (0.10.2)
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
commander (4.4.7)
highline (~> 2.0.0)
concurrent-ruby (1.1.4)
connection_pool (2.2.2)
crass (1.0.4)
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
devise (4.6.1)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 6.0)
responders
warden (~> 1.2.3)
equalizer (0.0.11)
erubis (2.7.0)
ethon (0.12.0)
ffi (>= 1.3.0)
excon (0.62.0)
execjs (2.7.0)
factory_girl (4.9.0)
activesupport (>= 3.0.0)
factory_girl_rails (4.9.0)
factory_girl (~> 4.9.0)
railties (>= 3.0.0)
faraday (0.15.4)
multipart-post (>= 1.2, < 3)
ffi (1.10.0)
foreman (0.85.0)
thor (~> 0.19.1)
gcm (0.1.1)
httparty
json
geocoder (1.2.11)
globalid (0.3.6)
activesupport (>= 4.1.0)
grape (0.13.0)
activesupport
builder
mustermann-grape (~> 1.0.0)
rack (>= 1.3.0)
rack-accept
virtus (>= 1.0.0)
hashids (1.0.5)
highline (2.0.1)
houston (2.4.0)
commander (~> 4.4)
json
httparty (0.14.0)
multi_xml (>= 0.5.2)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
ice_nine (0.11.2)
iron_core (1.0.9)
rest (>= 3.0.4)
iron_worker_ng (1.6.10)
bundler
iron_core (>= 1.0.6)
rubyzip (>= 1.0.0)
jquery-rails (4.3.3)
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
json (1.8.6)
jwt (1.5.6)
kaminari (1.1.1)
activesupport (>= 4.1.0)
kaminari-actionview (= 1.1.1)
kaminari-activerecord (= 1.1.1)
kaminari-core (= 1.1.1)
kaminari-actionview (1.1.1)
actionview
kaminari-core (= 1.1.1)
kaminari-activerecord (1.1.1)
activerecord
kaminari-core (= 1.1.1)
kaminari-core (1.1.1)
loofah (2.2.3)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
mail (2.7.1)
mini_mime (>= 0.1.1)
mandrill-api (1.0.53)
excon (>= 0.16.0, < 1.0)
json (>= 1.7.7, < 2.0)
mini_mime (1.0.1)
mini_portile2 (2.4.0)
minitest (5.11.3)
mongo (2.7.1)
bson (>= 4.4.2, < 5.0.0)
mongoid (5.0.2)
activemodel (~> 4.0)
mongo (~> 2.1)
origin (~> 2.1)
tzinfo (>= 0.3.37)
multi_json (1.13.1)
multi_xml (0.6.0)
multipart-post (2.0.0)
mustermann (1.0.3)
mustermann-grape (1.0.0)
mustermann (~> 1.0.0)
net-http-persistent (3.0.0)
connection_pool (~> 2.2)
netrc (0.11.0)
newrelic-grape (2.1.0)
grape
newrelic_rpm
newrelic_rpm (6.1.0.352)
nexmo (5.2.0)
jwt
nokogiri (1.10.1)
mini_portile2 (~> 2.4.0)
oauth2 (1.4.1)
faraday (>= 0.8, < 0.16.0)
jwt (>= 1.0, < 3.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
opentok (2.5.0)
activesupport (>= 2.0)
addressable (~> 2.3)
httparty (~> 0.14.0)
jwt (~> 1.5.6)
origin (2.3.1)
orm_adapter (0.5.0)
public_suffix (3.0.3)
puma (3.12.0)
rack (1.6.11)
rack-accept (0.4.5)
rack (>= 0.4)
rack-cors (1.0.2)
rack-protection (1.5.5)
rack
rack-test (0.6.3)
rack (>= 1.0)
rails (4.2.11)
actionmailer (= 4.2.11)
actionpack (= 4.2.11)
actionview (= 4.2.11)
activejob (= 4.2.11)
activemodel (= 4.2.11)
activerecord (= 4.2.11)
activesupport (= 4.2.11)
bundler (>= 1.3.0, < 2.0)
railties (= 4.2.11)
sprockets-rails
rails-deprecated_sanitizer (1.0.3)
activesupport (>= 4.2.0.alpha)
rails-dom-testing (1.0.9)
activesupport (>= 4.2.0, < 5.0)
nokogiri (~> 1.6)
rails-deprecated_sanitizer (>= 1.0.1)
rails-html-sanitizer (1.0.4)
loofah (~> 2.2, >= 2.2.2)
rails_12factor (0.0.3)
rails_serve_static_assets
rails_stdout_logging
rails_serve_static_assets (0.0.5)
rails_stdout_logging (0.0.5)
railties (4.2.11)
actionpack (= 4.2.11)
activesupport (= 4.2.11)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rake (10.4.2)
responders (2.1.0)
railties (>= 4.2.0, < 5)
rest (3.0.6)
net-http-persistent (>= 2.9.1)
netrc
rmagick (3.0.0)
ruby_http_client (3.3.0)
rubyzip (1.2.2)
sendgrid-ruby (5.3.0)
ruby_http_client (~> 3.3.0)
sinatra (>= 1.4.7, < 3)
sinatra (1.4.8)
rack (~> 1.5)
rack-protection (~> 1.4)
tilt (>= 1.3, < 3)
sprockets (3.7.2)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-rails (3.2.1)
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets (>= 3.0.0)
thor (0.19.4)
thread_safe (0.3.6)
tilt (2.0.9)
timecop (0.9.1)
twilio-ruby (5.21.1)
faraday (~> 0.9)
jwt (>= 1.5, <= 2.5)
nokogiri (>= 1.6, < 2.0)
typhoeus (1.3.1)
ethon (>= 0.9.0)
tzinfo (1.2.5)
thread_safe (~> 0.1)
uglifier (4.1.20)
execjs (>= 0.3.0, < 3)
virtus (1.0.5)
axiom-types (~> 0.1)
coercible (~> 1.0)
descendants_tracker (~> 0.0, >= 0.0.3)
equalizer (~> 0.0, >= 0.0.9)
warden (1.2.7)
rack (>= 1.0)
PLATFORMS
ruby
DEPENDENCIES
aws-sdk (~> 1)
bson_ext
chronic
devise
execjs
factory_girl_rails
foreman
gcm
geocoder
grape
hashids
houston
iron_worker_ng
jquery-rails
kaminari
mail
mandrill-api
mongo
mongoid (~> 5.0.0)
newrelic-grape
newrelic_rpm
nexmo
oauth2
opentok (~> 2.2)
puma
rack-cors
rails (~> 4.2.4)
rails_12factor
rmagick
sendgrid-ruby
stripe!
timecop
twilio-ruby
typhoeus
uglifier
RUBY VERSION
ruby 2.3.1p112
BUNDLED WITH
1.17.1
```
ruby-on-rails ruby-on-rails-4
I am trying to run a local rails server and cannot get it to start with
rails s
OR
bundle exec puma
I am getting the following error?
Unable to load application: LoadError: cannot load such file -- rack/mount
BUNDLE ENV produces
## Environment
```
Bundler 2.0.1
Platforms ruby, x86_64-darwin-17
Ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-darwin17]
Full Path /Users/jn/.rbenv/versions/2.3.1/bin/ruby
Config Dir /Users/jn/.rbenv/versions/2.3.1/etc
RubyGems 2.5.1
Gem Home /Users/jn/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0
Gem Path /Users/jn/.gem/ruby/2.3.0:/Users/jn/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0
User Path /Users/jn/.gem/ruby/2.3.0
Bin Dir /Users/jn/.rbenv/versions/2.3.1/bin
Tools
Git 2.15.2 (Apple Git-101.1)
RVM not installed
rbenv rbenv 1.1.1
chruby not installed
```
## Bundler Build Metadata
```
Built At 2019-01-04
Git SHA ffff33
Released Version true
```
## Bundler settings
```
build.libv8
Set for the current user (/Users/jn/.bundle/config): "--with-system-v8"
build.therubyracer
Set for the current user (/Users/jn/.bundle/config): "--with-system-v8"
```
## Gemfile
### Gemfile
```ruby
source 'https://rubygems.org'
ruby '2.3.1'
gem 'rails', '~> 4.2.4'
gem 'mongo'
gem 'bson_ext'
gem 'mongoid', '~> 5.0.0'
# mongoid seemed to want these to run the generator
gem 'execjs'
#gem 'therubyracer'
gem 'devise'
gem 'grape'
#gem 'grape-swagger'
#gem 'thin'
#gem 'puma'
gem 'geocoder'
#gem 'mongoid_geospatial'
gem 'kaminari' # pagination
gem 'iron_worker_ng'
gem 'newrelic_rpm'
gem 'newrelic-grape'
gem "opentok", "~> 2.2"
gem 'mandrill-api'
gem 'aws-sdk', "~> 1"
gem 'nexmo'
gem 'rmagick'
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
gem 'twilio-ruby'
gem 'gcm'
gem 'chronic'
gem 'oauth2' # for stripe connect
gem 'houston'
gem 'hashids'
gem 'rack-cors', :require => 'rack/cors'
gem 'mail'
gem 'sendgrid-ruby'
group :production, :staging do
gem 'rails_12factor'
gem "puma"
#gem 'thin'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'timecop'
#gem 'debugger'
gem 'typhoeus'
gem 'foreman'
#gem 'thin'
#gem "puma"
#gem 'rbnacl'
end
# Gems used only for assets and not required
# in production environments by default.
#group :assets do
# gem 'sass-rails'
# gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
# gem 'uglifier'
#end
gem 'uglifier'
gem 'jquery-rails'
```
### Gemfile.lock
```
GIT
remote: https://github.com/stripe/stripe-ruby
revision: df8c141bb8601f1a4574ad2e78f205721007e332
specs:
stripe (4.9.0)
faraday (~> 0.13)
net-http-persistent (~> 3.0)
GEM
remote: https://rubygems.org/
specs:
actionmailer (4.2.11)
actionpack (= 4.2.11)
actionview (= 4.2.11)
activejob (= 4.2.11)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 1.0, >= 1.0.5)
actionpack (4.2.11)
actionview (= 4.2.11)
activesupport (= 4.2.11)
rack (~> 1.6)
rack-test (~> 0.6.2)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.2)
actionview (4.2.11)
activesupport (= 4.2.11)
builder (~> 3.1)
erubis (~> 2.7.0)
rails-dom-testing (~> 1.0, >= 1.0.5)
rails-html-sanitizer (~> 1.0, >= 1.0.3)
activejob (4.2.11)
activesupport (= 4.2.11)
globalid (>= 0.3.0)
activemodel (4.2.11)
activesupport (= 4.2.11)
builder (~> 3.1)
activerecord (4.2.11)
activemodel (= 4.2.11)
activesupport (= 4.2.11)
arel (~> 6.0)
activesupport (4.2.11)
i18n (~> 0.7)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
addressable (2.3.8)
arel (6.0.3)
aws-sdk (1.66.0)
aws-sdk-v1 (= 1.66.0)
aws-sdk-v1 (1.66.0)
json (~> 1.4)
nokogiri (~> 1)
axiom-types (0.1.1)
descendants_tracker (~> 0.0.4)
ice_nine (~> 0.11.0)
thread_safe (~> 0.3, >= 0.3.1)
bcrypt (3.1.12)
bson (4.4.2)
bson_ext (1.5.1)
builder (3.2.3)
chronic (0.10.2)
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
commander (4.4.7)
highline (~> 2.0.0)
concurrent-ruby (1.1.4)
connection_pool (2.2.2)
crass (1.0.4)
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
devise (4.6.1)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 6.0)
responders
warden (~> 1.2.3)
equalizer (0.0.11)
erubis (2.7.0)
ethon (0.12.0)
ffi (>= 1.3.0)
excon (0.62.0)
execjs (2.7.0)
factory_girl (4.9.0)
activesupport (>= 3.0.0)
factory_girl_rails (4.9.0)
factory_girl (~> 4.9.0)
railties (>= 3.0.0)
faraday (0.15.4)
multipart-post (>= 1.2, < 3)
ffi (1.10.0)
foreman (0.85.0)
thor (~> 0.19.1)
gcm (0.1.1)
httparty
json
geocoder (1.2.11)
globalid (0.3.6)
activesupport (>= 4.1.0)
grape (0.13.0)
activesupport
builder
mustermann-grape (~> 1.0.0)
rack (>= 1.3.0)
rack-accept
virtus (>= 1.0.0)
hashids (1.0.5)
highline (2.0.1)
houston (2.4.0)
commander (~> 4.4)
json
httparty (0.14.0)
multi_xml (>= 0.5.2)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
ice_nine (0.11.2)
iron_core (1.0.9)
rest (>= 3.0.4)
iron_worker_ng (1.6.10)
bundler
iron_core (>= 1.0.6)
rubyzip (>= 1.0.0)
jquery-rails (4.3.3)
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
json (1.8.6)
jwt (1.5.6)
kaminari (1.1.1)
activesupport (>= 4.1.0)
kaminari-actionview (= 1.1.1)
kaminari-activerecord (= 1.1.1)
kaminari-core (= 1.1.1)
kaminari-actionview (1.1.1)
actionview
kaminari-core (= 1.1.1)
kaminari-activerecord (1.1.1)
activerecord
kaminari-core (= 1.1.1)
kaminari-core (1.1.1)
loofah (2.2.3)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
mail (2.7.1)
mini_mime (>= 0.1.1)
mandrill-api (1.0.53)
excon (>= 0.16.0, < 1.0)
json (>= 1.7.7, < 2.0)
mini_mime (1.0.1)
mini_portile2 (2.4.0)
minitest (5.11.3)
mongo (2.7.1)
bson (>= 4.4.2, < 5.0.0)
mongoid (5.0.2)
activemodel (~> 4.0)
mongo (~> 2.1)
origin (~> 2.1)
tzinfo (>= 0.3.37)
multi_json (1.13.1)
multi_xml (0.6.0)
multipart-post (2.0.0)
mustermann (1.0.3)
mustermann-grape (1.0.0)
mustermann (~> 1.0.0)
net-http-persistent (3.0.0)
connection_pool (~> 2.2)
netrc (0.11.0)
newrelic-grape (2.1.0)
grape
newrelic_rpm
newrelic_rpm (6.1.0.352)
nexmo (5.2.0)
jwt
nokogiri (1.10.1)
mini_portile2 (~> 2.4.0)
oauth2 (1.4.1)
faraday (>= 0.8, < 0.16.0)
jwt (>= 1.0, < 3.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
opentok (2.5.0)
activesupport (>= 2.0)
addressable (~> 2.3)
httparty (~> 0.14.0)
jwt (~> 1.5.6)
origin (2.3.1)
orm_adapter (0.5.0)
public_suffix (3.0.3)
puma (3.12.0)
rack (1.6.11)
rack-accept (0.4.5)
rack (>= 0.4)
rack-cors (1.0.2)
rack-protection (1.5.5)
rack
rack-test (0.6.3)
rack (>= 1.0)
rails (4.2.11)
actionmailer (= 4.2.11)
actionpack (= 4.2.11)
actionview (= 4.2.11)
activejob (= 4.2.11)
activemodel (= 4.2.11)
activerecord (= 4.2.11)
activesupport (= 4.2.11)
bundler (>= 1.3.0, < 2.0)
railties (= 4.2.11)
sprockets-rails
rails-deprecated_sanitizer (1.0.3)
activesupport (>= 4.2.0.alpha)
rails-dom-testing (1.0.9)
activesupport (>= 4.2.0, < 5.0)
nokogiri (~> 1.6)
rails-deprecated_sanitizer (>= 1.0.1)
rails-html-sanitizer (1.0.4)
loofah (~> 2.2, >= 2.2.2)
rails_12factor (0.0.3)
rails_serve_static_assets
rails_stdout_logging
rails_serve_static_assets (0.0.5)
rails_stdout_logging (0.0.5)
railties (4.2.11)
actionpack (= 4.2.11)
activesupport (= 4.2.11)
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rake (10.4.2)
responders (2.1.0)
railties (>= 4.2.0, < 5)
rest (3.0.6)
net-http-persistent (>= 2.9.1)
netrc
rmagick (3.0.0)
ruby_http_client (3.3.0)
rubyzip (1.2.2)
sendgrid-ruby (5.3.0)
ruby_http_client (~> 3.3.0)
sinatra (>= 1.4.7, < 3)
sinatra (1.4.8)
rack (~> 1.5)
rack-protection (~> 1.4)
tilt (>= 1.3, < 3)
sprockets (3.7.2)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-rails (3.2.1)
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets (>= 3.0.0)
thor (0.19.4)
thread_safe (0.3.6)
tilt (2.0.9)
timecop (0.9.1)
twilio-ruby (5.21.1)
faraday (~> 0.9)
jwt (>= 1.5, <= 2.5)
nokogiri (>= 1.6, < 2.0)
typhoeus (1.3.1)
ethon (>= 0.9.0)
tzinfo (1.2.5)
thread_safe (~> 0.1)
uglifier (4.1.20)
execjs (>= 0.3.0, < 3)
virtus (1.0.5)
axiom-types (~> 0.1)
coercible (~> 1.0)
descendants_tracker (~> 0.0, >= 0.0.3)
equalizer (~> 0.0, >= 0.0.9)
warden (1.2.7)
rack (>= 1.0)
PLATFORMS
ruby
DEPENDENCIES
aws-sdk (~> 1)
bson_ext
chronic
devise
execjs
factory_girl_rails
foreman
gcm
geocoder
grape
hashids
houston
iron_worker_ng
jquery-rails
kaminari
mail
mandrill-api
mongo
mongoid (~> 5.0.0)
newrelic-grape
newrelic_rpm
nexmo
oauth2
opentok (~> 2.2)
puma
rack-cors
rails (~> 4.2.4)
rails_12factor
rmagick
sendgrid-ruby
stripe!
timecop
twilio-ruby
typhoeus
uglifier
RUBY VERSION
ruby 2.3.1p112
BUNDLED WITH
1.17.1
```
ruby-on-rails ruby-on-rails-4
ruby-on-rails ruby-on-rails-4
edited Mar 9 at 3:25
jdog
asked Mar 8 at 3:34
jdogjdog
4,4181662119
4,4181662119
did yo try this? stackoverflow.com/questions/26856994/…
– Noriel
Mar 8 at 3:52
Don't see a solution over there. UPDATED
– jdog
Mar 8 at 19:14
add a comment |
did yo try this? stackoverflow.com/questions/26856994/…
– Noriel
Mar 8 at 3:52
Don't see a solution over there. UPDATED
– jdog
Mar 8 at 19:14
did yo try this? stackoverflow.com/questions/26856994/…
– Noriel
Mar 8 at 3:52
did yo try this? stackoverflow.com/questions/26856994/…
– Noriel
Mar 8 at 3:52
Don't see a solution over there. UPDATED
– jdog
Mar 8 at 19:14
Don't see a solution over there. UPDATED
– jdog
Mar 8 at 19:14
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55056338%2funable-to-load-application-loaderror-cannot-load-such-file-rack-mount%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55056338%2funable-to-load-application-loaderror-cannot-load-such-file-rack-mount%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
did yo try this? stackoverflow.com/questions/26856994/…
– Noriel
Mar 8 at 3:52
Don't see a solution over there. UPDATED
– jdog
Mar 8 at 19:14