-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
53 lines (45 loc) · 1.48 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
source 'http://rubygems.org'
# source 'http://ruby.taobao.org'
gem 'rails', '3.1.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
#
# Gems used for styling html pages
gem 'paperclip'
gem 'jquery-rails'
gem 'therubyracer'
gem 'haml'
gem 'best_in_place' # used for in place edition
gem 'devise' #used for authentication
gem 'mathjax-rails', :git => "git://github.com/ukisami/mathjax-rails.git" # used for rendering math formula
gem 'wombat' #used for parsing douban book page
gem "less-rails" #twitter bootstrap require this
gem "twitter-bootstrap-rails"
gem 'bootstrap-will_paginate' # for paginate in book view
#gem 'tinymce-rails'
#gem 'tinymce-rails-langs'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', "3.1.4"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
end
gem 'mysql2'
group :development do
gem 'sqlite3'
gem 'ruby-debug19', :require => 'ruby-debug'
end
group :test do
gem 'capybara'
gem 'database_cleaner', '~> 0.6.7' # cucumber rails needs this
gem 'factory_girl_rails', :require => false # generate model during testing
gem 'spork' # preload fixed rails resouces
gem 'guard-rspec'
end
group :test, :development do
gem 'rspec-rails', "~> 2.0"
gem 'rb-inotify', :require => false
gem 'rb-fsevent', :require => false
gem 'rb-fchange', :require => false
end