-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
60 lines (44 loc) · 899 Bytes
/
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
54
55
56
57
58
59
60
source 'https://rubygems.org'
## Rails
gem 'rails', '4.2.1'
## Rails pipeline
gem 'jquery-rails'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
#gem 'turbolinks'
# generate rails app to static content
gem 'actionpack-page_caching'
# database
gem 'sqlite3'
gem 'mongoid'
case RUBY_PLATFORM
when /darwin/
# use apple's built-in javascript
else
gem 'therubyracer'
end
# Views and frontend gem
gem 'kramdown'
gem 'haml-rails'
gem 'haml-kramdown'
## Utilities
gem 'highline', require: false
gem 'rest-client'
gem 'passenger'
group :development do
gem 'thin'
gem 'powder'
gem 'guard-pow'
end
group :development, :test do
gem 'byebug'
gem 'web-console', '~> 2.0'
gem 'spring'
gem 'guard-bundler'
gem 'jazz_hands', github: 'camerontaylor/jazz_hands'
gem 'rb-fsevent', group: :darwin
end
group :development, :doc do
gem 'yard'
end