84 lines
2.1 KiB
Ruby
84 lines
2.1 KiB
Ruby
source 'https://rubygems.org'
|
|
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
gem 'rails', '4.0.0'
|
|
|
|
# Use sqlite3 as the database for Active Record
|
|
# gem 'sqlite3'
|
|
|
|
# Use SCSS for stylesheets
|
|
gem 'sass-rails', '~> 4.0.0'
|
|
|
|
# Use Uglifier as compressor for JavaScript assets
|
|
gem 'uglifier', '>= 1.3.0'
|
|
|
|
# Use CoffeeScript for .js.coffee assets and views
|
|
gem 'coffee-rails', '~> 4.0.0'
|
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
|
# gem 'therubyracer', platforms: :ruby
|
|
|
|
# Use jquery as the JavaScript library
|
|
gem 'jquery-rails'
|
|
|
|
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
|
|
# Funky side-effects - so we better not use Turbolinks
|
|
#gem 'turbolinks'
|
|
|
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
gem 'jbuilder', '~> 1.2'
|
|
|
|
group :doc do
|
|
# bundle exec rake doc:rails generates the API under doc/api.
|
|
gem 'sdoc', require: false
|
|
end
|
|
|
|
# Use ActiveModel has_secure_password
|
|
# gem 'bcrypt-ruby', '~> 3.0.0'
|
|
|
|
# Use unicorn as the app server
|
|
# gem 'unicorn'
|
|
|
|
# Use Capistrano for deployment
|
|
# gem 'capistrano', group: :development
|
|
|
|
# Use debugger
|
|
# gem 'debugger', group: [:development, :test]
|
|
|
|
# PostgreSQL support
|
|
gem 'pg'
|
|
|
|
group :development do
|
|
gem "better_errors"
|
|
gem "binding_of_caller"
|
|
|
|
# Chrome Rails debugging app
|
|
gem 'meta_request'
|
|
end
|
|
|
|
# Twitter Bootstrap template
|
|
#gem 'bootstrap-sass'
|
|
#gem 'anjlab-bootstrap-rails', '>= 3.0.0.0'
|
|
# gem 'anjlab-bootstrap-rails', :require => 'bootstrap-rails',
|
|
# :github => 'anjlab/bootstrap-rails'
|
|
|
|
# Zurb Foundation
|
|
gem 'foundation-rails'
|
|
|
|
# Pagination
|
|
gem 'will_paginate'
|
|
|
|
# Lightbox image viewer for full-sized images
|
|
gem 'fancybox2-rails', '~> 0.2.4'
|
|
|
|
# Full-text search… texticle is nowadays called textacular… and it's very inflexible
|
|
#gem 'textacular', require: 'textacular/rails'
|
|
|
|
# Trying pg_search for full-text search… too slow with ranking… screw PostgreSQL
|
|
#gem 'pg_search'
|
|
|
|
# Let's use Elasticsearch. "tire" has been retired but there is not yet a worthy alternative.
|
|
#gem 'tire'
|
|
|
|
# Use SLIM as our templating language
|
|
gem 'slim-rails'
|