Skip to content

Instantly share code, notes, and snippets.

@shin1ohno
Created April 2, 2012 16:54
Show Gist options
  • Save shin1ohno/2285014 to your computer and use it in GitHub Desktop.
Save shin1ohno/2285014 to your computer and use it in GitHub Desktop.
なんとなくよく使うGemfile
source 'https://rubygems.org'
gem 'rails', '3.2.1'
gem 'haml-rails'
gem 'paperclip'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'unicorn'
gem 'capistrano'
gem 'simple_form'
gem 'jquery-rails'
gem 'twitter-bootstrap-rails', :git => 'http://github.com/seyhunak/twitter-bootstrap-rails.git'
gem 'formtastic-bootstrap', git: 'git://github.com/cgunther/formtastic-bootstrap.git', branch: 'bootstrap2-rails3-2-formtastic-2-1'
gem 'formtastic', git: 'git://github.com/justinfrench/formtastic.git', branch: '2.1-stable'
gem 'rspec-rails', :group => [:test, :development]
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'rails_best_practices'
gem 'sqlite3'
end
group :test do
gem 'rspec'
gem 'capybara'
#gem 'capybara-envjs'
gem 'cucumber'
gem 'cucumber-rails', '~>0.3.2'
gem 'database_cleaner'
gem 'pickle'
gem 'factory_girl'
gem 'factory_girl_rails'
gem 'launchy'
gem 'webmock'
gem 'vcr'
gem 'timecop'
gem 'watchr'
gem 'rb-fsevent'
gem "guard-rspec"
gem 'guard-bundler'
gem 'guard-rails-assets'
gem 'guard-livereload'
gem 'guard-livereload'
gem 'yajl-ruby'
gem 'spork'
gem 'guard-spork'
gem 'sqlite3'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment