0

I have a working project in my personal laptop using Rails 3. I checked out that project on my work laptop. When I'm in the office I can't use bundle install due to come company policies. Hence, unfortunately I have to manually install all the gems. How can I get my app running without wasting my time on resolving the gems dependencies that bundler would have done easily. Gemfile:

    source 'http://rubygems.org'

gem 'rails', '3.1.10'

# Bundle edge Rails instead:
# gem 'rails',     :git => 'git://github.com/rails/rails.git'

#gem 'sqlite3'
gem 'pg','0.12.2'
gem 'therubyracer'


# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails',   '~> 3.1.5'
  gem 'coffee-rails', '~> 3.1.1'

  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  # gem 'therubyracer'

  gem 'uglifier', '>= 1.0.3'
end

gem 'jquery-rails'
gem 'devise'

# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# Use unicorn as the web server
# gem 'unicorn'

# Deploy with Capistrano
# gem 'capistrano'

# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'

group :test do
  # Pretty printed test output
  gem 'turn', '0.8.2', :require => false
end
Mike Szyndel
  • 10,461
  • 10
  • 47
  • 63

1 Answers1

2

Simply wite the following commonds on terminal

gem install pg -v='0.12.2'
gem install therubyracer
gem install jquery-rails
gem install devise
gem install turn -v=0.8.2
Ravendra Kumar
  • 1,072
  • 10
  • 29