forked from rusrails/rusrails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
44 lines (35 loc) · 796 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
source 'https://rubygems.org'
gem 'rails', " ~> 4.1.5"
gem 'russian'
gem 'static_docs' #, path: "/Users/mikdiet/projects/opensource/static_docs"
gem 'pg'
gem 'textacular', '~> 3.0'
gem 'nokogiri'
gem 'sass-rails', '~> 4.0.0'
gem "less-rails"
gem 'haml-rails'
gem 'RedCloth'
gem 'redcarpet'
gem 'rails_config'
gem 'twitter-bootstrap-rails'
gem 'jquery-rails'
gem 'capistrano', '~> 2.15'
gem 'therubyracer'
gem 'unicorn'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'git', require: false
group :development do
gem 'quiet_assets'
# Need for cap tasks for 3.2 branch
# gem 'thinking-sphinx', require: false
end
group :development, :test do
gem "rspec-rails"
gem 'webrat'
gem 'pry-rails'
end
group :test do
gem 'factory_girl_rails'
gem 'database_cleaner'
end