-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathGemfile
55 lines (42 loc) · 1.74 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
54
55
source 'http://rubygems.org'
gem 'rake', require: false
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Application
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
gem 'activemodel', '3.2.2', require: 'active_model'
gem 'activesupport', '3.2.2', require: 'active_support/all'
gem 'active_attr', git: 'https://github.com/cgriego/active_attr.git'
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Backends
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
group :active_record_backend do
gem 'pg'
gem 'activerecord', require: 'active_record'
end
group :active_memory_backend do
end
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Frontends
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
group :web_frontend do
gem 'unicorn'
gem 'rails', '3.2.2' #, require: false
gem 'haml'
gem 'jquery-rails'
end
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'therubyracer' # See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'bootstrap-sass'
end
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Tests
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
group :test do
gem 'minitest', require: false
gem 'minitest-reporters', require: false
gem 'mocha', require: false
gem 'minitest-colorize', require: false
end
gem 'pry'