Browse Subversion Repository
Contents of /doxiv/Gemfile
Parent Directory
| Revision Log
Revision 6 -
( show annotations)
( download)
Mon Sep 16 14:28:08 2013 UTC
(10 years, 6 months ago)
by hidetoshi
File size: 820 byte(s)
add i18n etc...
| 1 |
source 'https://rubygems.org' |
| 2 |
|
| 3 |
gem 'rails', '3.2.13' |
| 4 |
|
| 5 |
# Bundle edge Rails instead: |
| 6 |
# gem 'rails', :git => 'git://github.com/rails/rails.git' |
| 7 |
|
| 8 |
gem 'sqlite3' |
| 9 |
gem 'rails-i18n' |
| 10 |
|
| 11 |
|
| 12 |
# Gems used only for assets and not required |
| 13 |
# in production environments by default. |
| 14 |
group :assets do |
| 15 |
gem 'sass-rails', '~> 3.2.3' |
| 16 |
gem 'coffee-rails', '~> 3.2.1' |
| 17 |
|
| 18 |
# See https://github.com/sstephenson/execjs#readme for more supported runtimes |
| 19 |
# gem 'therubyracer', :platforms => :ruby |
| 20 |
|
| 21 |
gem 'uglifier', '>= 1.0.3' |
| 22 |
end |
| 23 |
|
| 24 |
gem 'jquery-rails' |
| 25 |
|
| 26 |
# To use ActiveModel has_secure_password |
| 27 |
gem 'bcrypt-ruby', '~> 3.0.0', require: 'bcrypt' |
| 28 |
|
| 29 |
# To use Jbuilder templates for JSON |
| 30 |
# gem 'jbuilder' |
| 31 |
|
| 32 |
# Use unicorn as the app server |
| 33 |
# gem 'unicorn' |
| 34 |
|
| 35 |
# Deploy with Capistrano |
| 36 |
# gem 'capistrano' |
| 37 |
|
| 38 |
# To use debugger |
| 39 |
# gem 'debugger' |
| 40 |
|
| 41 |
gem 'therubyracer' |
| |