Created
April 30, 2012 18:58
-
-
Save ornerymoose/2561314 to your computer and use it in GitHub Desktop.
Terminal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source "http://rubygems.org" | |
gem "rails", "3.0.7" | |
gem "active_hash" | |
gem "dynamic_form" | |
gem "formtastic" | |
gem "geocoder", ">= 1.0.1" | |
gem "humanizer" | |
gem 'httparty' | |
gem "hoptoad_notifier" | |
gem "mysql2", "~> 0.2.10" | |
gem "rake", "= 0.8.7" | |
gem "paperclip" | |
gem "sortable", :git => "git://github.com/shuber/sortable.git" | |
gem "spree", "0.50.2" | |
gem "validates_timeliness", "~>3.0.5" | |
gem "tagging", :require => "tagging", :path => "tagging" | |
gem "spree_paypal_express", :git => "git://github.com/spree/spree_paypal_express.git" | |
gem "spree_static_content" | |
gem 'haml' | |
gem 'sass' | |
gem "spree_checkout_profiles", :path => 'spree_checkout_profiles' | |
gem "tweet-button" | |
gem "require_relative" | |
gem "backup" | |
gem "fog", "~> 0.7.0" | |
gem "whenever" | |
gem "subscriptions", :path => "vendor/gems/subscriptions" | |
gem "activesupport", "3.0.7" | |
gem "aws-s3" | |
gem "delayed_job" | |
gem "curb" | |
gem "acts_as_commentable" | |
gem "fastercsv" | |
gem "devise_oauth2_facebook" | |
gem "sitemap_notifier" | |
gem 'sunspot_rails' | |
gem 'sunspot_solr' | |
gem 'jammit' | |
# client gem for memcache | |
gem 'dalli' | |
group :development do | |
gem "tinder", "1.4.4" | |
gem "capistrano", "2.5.19" # 2.5.20 makes Gemfile.lock change *all the time* | |
gem "capistrano-ext", "1.2.1" | |
gem "rails3-generators" | |
gem "thin" | |
gem "rails-dev-boost", :git => 'git://github.com/thedarkone/rails-dev-boost.git', :require => 'rails_development_boost' | |
gem "heroku" | |
gem "taps" | |
gem "rspec-rails", ">= 2.2.1" | |
gem "ruby-debug" | |
gem "curb" | |
end | |
group :test do | |
gem "capybara" | |
gem "growl" | |
gem "guard-rspec" | |
gem "guard-spork" | |
gem "hpricot" | |
gem "rb-fsevent" | |
gem "shoulda" | |
gem "spork", "~> 0.9.0.rc" | |
gem "rspec-rails", ">= 2.2.1" | |
gem "ruby-debug" | |
gem "factory_girl_rails" | |
gem "webmock" | |
gem "cucumber-rails" | |
gem "database_cleaner" | |
gem "sunspot_test" | |
gem "jasmine" | |
end | |
group :production do | |
gem 'hirefireapp' | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo install libmysqlclient15-dev | |
usage: install [-bCcpSsv] [-B suffix] [-f flags] [-g group] [-m mode] | |
[-o owner] file1 file2 | |
install [-bCcpSsv] [-B suffix] [-f flags] [-g group] [-m mode] | |
[-o owner] file1 ... fileN directory | |
install -d [-v] [-g group] [-m mode] [-o owner] directory ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment