mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-09 04:46:07 +10:00
77 lines
1.4 KiB
Ruby
77 lines
1.4 KiB
Ruby
source 'https://rubygems.org'
|
|
|
|
# source 'http://ruby.taobao.org'
|
|
|
|
ruby '2.1.0'
|
|
|
|
gem 'rails', '4.1.0'
|
|
|
|
# Bundle edge Rails instead:
|
|
# gem 'rails', :git => 'git://github.com/rails/rails.git'
|
|
|
|
gem 'pg'
|
|
gem 'slim'
|
|
gem 'thin'
|
|
gem 'will_paginate'
|
|
gem 'nokogiri'
|
|
gem 'unicorn'
|
|
gem 'devise'
|
|
|
|
|
|
gem 'activesupport', '4.1.0'
|
|
|
|
gem 'jquery-rails'
|
|
gem 'rest-client'
|
|
|
|
# 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'
|
|
|
|
# Cache
|
|
|
|
gem 'rack-cache'
|
|
gem 'dalli'
|
|
gem 'kgio'
|
|
gem 'memcachier'
|
|
|
|
gem 'protected_attributes'
|
|
gem 'newrelic_rpm'
|
|
gem 'gis-distance'
|
|
gem 'acts_as_commentable_with_threading'
|
|
|
|
gem 'gravatar-ultimate'
|
|
gem 'sidekiq'
|
|
|
|
# gem 'awesome_nested_set'
|
|
gem 'awesome_nested_set', '3.0.0.rc.3'
|
|
|
|
#admin interface
|
|
gem 'activeadmin', github: 'gregbell/active_admin'
|
|
#lock version
|
|
gem 'sass-rails', github: 'rails/sass-rails'
|
|
gem 'bourbon', '< 4'
|
|
gem 'activeresource', require: 'active_resource'
|
|
gem 'active-resource-pagination'
|
|
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
|