mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-09 12:56:14 +10:00
48 lines
808 B
Ruby
48 lines
808 B
Ruby
source 'https://rubygems.org'
|
|
|
|
#source 'http://ruby.taobao.org'
|
|
|
|
gem 'rails','4.0.0'
|
|
|
|
# Bundle edge Rails instead:
|
|
# gem 'rails', :git => 'git://github.com/rails/rails.git'
|
|
|
|
gem 'pg'
|
|
gem 'thin'
|
|
gem 'slim'
|
|
gem 'will_paginate'
|
|
gem 'nokogiri'
|
|
|
|
|
|
|
|
gem 'jquery-rails'
|
|
|
|
# To use ActiveModel has_secure_password
|
|
# gem 'bcrypt-ruby', '~> 3.0.0'
|
|
|
|
# To use Jbuilder templates for JSON
|
|
# gem 'jbuilder'
|
|
|
|
# Use unicorn as the app server
|
|
# gem 'unicorn'
|
|
|
|
# Deploy with CapistranoCapistrano
|
|
# gem 'capistrano'
|
|
# To use debugger
|
|
# gem 'debugger'
|
|
|
|
gem 'protected_attributes'
|
|
|
|
group :development, :test do
|
|
gem 'rspec-rails'
|
|
gem 'tddium'
|
|
gem "flay"
|
|
gem 'simplecov'
|
|
gem 'machinist'
|
|
gem 'cucumber-rails' , :require => false
|
|
gem 'capybara'
|
|
gem 'database_cleaner'
|
|
gem 'selenium-webdriver'
|
|
gem 'rails_best_practices'
|
|
end
|