Created
January 9, 2014 04:10
-
-
Save yorzi/8329304 to your computer and use it in GitHub Desktop.
Gemfile for BibRave.com
This file contains hidden or 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' | |
| # source 'http://ruby.taobao.org' | |
| # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
| gem 'rails', '4.0.1' | |
| # | |
| # Use postgresql as the database for Active Record | |
| gem 'pg' | |
| # for heroku deployment | |
| ruby '2.0.0' | |
| gem 'rails_12factor', group: :production | |
| # web server on heroku | |
| gem 'puma' | |
| # Front end stuff | |
| gem 'jquery-rails' | |
| # gem 'sass-rails', '~> 4.0.0' | |
| gem 'less-rails' | |
| gem 'html5-rails' | |
| gem 'haml-rails' | |
| gem 'coffee-rails', '~> 4.0.0' | |
| # gem "compass-rails", "~> 2.0.alpha.0" | |
| # gem 'compass-h5bp' | |
| # Use Uglifier as compressor for JavaScript assets | |
| gem 'uglifier', '>= 1.3.0' | |
| # See https://github.com/sstephenson/execjs#readme for more supported runtimes | |
| gem 'therubyracer', platforms: :ruby | |
| gem 'gon', '4.0.2' | |
| # admin interface | |
| gem 'rails_admin' | |
| # global settings | |
| gem "settingslogic", "~> 2.0.6" | |
| # cache client | |
| gem 'memcachier' | |
| gem 'dalli' | |
| # fast json rendering | |
| gem 'oj' | |
| gem 'faker' | |
| gem "simple_form", github: "plataformatec/simple_form" | |
| # file upload | |
| gem 'carrierwave' | |
| gem 'fog' | |
| gem 'unf' | |
| # geo functions | |
| gem 'geocoder' | |
| # pagination | |
| gem 'kaminari' | |
| # pretty select box | |
| gem "select2-rails" | |
| # lightbox | |
| gem 'fancybox2-rails', '~> 0.2.4' | |
| # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | |
| gem 'jbuilder', '~> 1.2' | |
| # auth | |
| gem "devise", '3.2.0' | |
| gem "omniauth" | |
| gem "omniauth-instagram" | |
| gem "omniauth-twitter" | |
| # facebook API | |
| gem "koala", "~> 1.7.0rc1" | |
| gem "omniauth-facebook" | |
| group :doc do | |
| # bundle exec rake doc:rails generates the API under doc/api. | |
| gem 'sdoc', require: false | |
| end | |
| group :development, :test do | |
| gem 'rspec-rails' | |
| gem "database_cleaner", ">= 1.0.0.RC1" | |
| gem "rspec-rails" | |
| gem "email_spec", ">= 1.4.0" | |
| gem "capybara", :require => false | |
| gem 'factory_girl_rails' | |
| gem 'spork', '>= 0.9.0.rc' | |
| end | |
| group :development do | |
| gem 'mina' | |
| gem 'thin' | |
| # gem 'mina-sidekiq', :github => 'Mic92/mina-sidekiq' | |
| gem 'guard', '~> 2.1.1' | |
| gem 'guard-rspec' | |
| gem 'guard-spork' | |
| gem "guard-bundler" | |
| gem "guard-livereload" | |
| gem "guard-jasmine" | |
| gem "terminal-notifier-guard" | |
| gem "letter_opener" | |
| gem 'rb-fsevent', '~> 0.9' | |
| gem "better_errors", ">= 0.7.2" | |
| gem "binding_of_caller", ">= 0.7.1" | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment