forked from tengcong/KnowledgeSharing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
53 lines (41 loc) · 878 Bytes
/
Gemfile
File metadata and controls
53 lines (41 loc) · 878 Bytes
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 'https://rubygems.org'
gem 'rails'
gem 'mysql2'
group :assets do
gem 'compass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
gem 'jquery-rails'
gem 'underscore-rails'
gem 'angularjs-rails'
gem 'angular-ui-rails'
gem 'angular-ui-bootstrap-rails'
group :test, :development do
gem 'rspec-rails', '~> 2.12.0'
gem 'debugger'
end
group :test do
gem 'factory_girl_rails', '~> 3.5.0'
gem 'database_cleaner'
gem 'capybara', '~> 2.0.1'
end
group :development do
gem 'quiet_assets', '~> 1.0.1'
gem 'awesome_print'
gem 'better_errors'
end
group :production do
gem 'pg'
end
gem 'haml-rails'
gem 'devise'
gem 'cancan'
gem 'kaminari'
gem 'rabl'
gem 'oj'
gem 'redcarpet'
gem 'coderay'
gem 'thin', '~> 1.5.0'
gem 'anjlab-bootstrap-rails', :require => 'bootstrap-rails',
:git => 'git://github.com/anjlab/bootstrap-rails.git'