Skip to content

Instantly share code, notes, and snippets.

@lacostenycoder
Created April 22, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lacostenycoder/59482c41fb8ca4fc6a0e to your computer and use it in GitHub Desktop.
Save lacostenycoder/59482c41fb8ca4fc6a0e to your computer and use it in GitHub Desktop.
//= require jquery
//= require jquery_ujs
//= require twitter/bootstrap
//= require turbolinks
//= require_tree .
source 'https://rubygems.org'
ruby '2.1.2'
gem 'rails', '4.2.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'bcrypt'
gem 'responders'
group :development, :test do
gem 'byebug'
gem 'web-console', '~> 2.0'
gem 'spring'
end
gem "therubyracer"
gem 'less-rails-bootstrap', github: 'metaskills/less-rails-bootstrap', branch: 'sprockets3'
gem 'sprockets-rails', :require => 'sprockets/railtie'
gem 'high_voltage'
gem 'pg'
gem 'simple_form'
gem 'bootstrap_form' # , github: 'bootstrap-ruby/rails-bootstrap-forms'
group :development do
gem 'better_errors'
gem 'binding_of_caller', :platforms=>[:mri_21]
gem 'guard-bundler'
gem 'guard-rails'
gem 'guard-rspec'
gem 'quiet_assets'
gem 'rails_layout'
gem 'rb-fchange', :require=>false
gem 'rb-fsevent', :require=>false
gem 'rb-inotify', :require=>false
gem 'spring-commands-rspec'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'faker'
gem 'rspec-rails'
gem 'thin'
end
group :production do
gem 'rails_12factor'
gem 'unicorn'
end
group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'launchy'
gem 'selenium-webdriver'
end
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any styles
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
* file per style scope.
*
*= require_tree .
*= require custom_bootstrap/custom_bootstrap
*= require_self
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment