forked from banta/Dhaka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
67 lines (58 loc) · 1.79 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
56
57
58
59
60
61
62
63
64
65
66
67
source "https://rubygems.org"
gem 'rails', '>= 3.2.11'
gem 'rack'
gem 'rspec-rails'
# gem 'ruby-debug19'
gem 'therubyracer'
gem 'timecop'
gem 'multi_json'
gem 'foreman' # Simple process management
gem 'cancan' # User authorization
gem 'rdiscount' # Markdown processor
gem 'high_voltage' # Easy static pages
gem 'paperclip' # Easy file attachments
gem 'aws-sdk', '< 2.0'
gem 'paper_trail' # For versioning, undo
gem 'nokogiri' # Scraping old marketplace
gem 'devise' # User authentication
gem 'ransack' # Successor to MetaSearch
# gem 'impressionist' # Simple page view counter
gem 'newrelic_rpm' # Performance and monitoring
gem 'rails-observers'
gem 'protected_attributes'
gem 'puma'
gem 'amatch'
gem 'whenever', :require => false
gem 'htmlentities'
gem 'rinku'
gem 'acts-as-taggable-on', :git => 'https://github.com/mbleigh/acts-as-taggable-on.git'
gem 'kaminari', :git => 'git://github.com/amatsuda/kaminari'
gem 'bootstrap-sass'
group :assets do
gem 'sprockets' # The asset pipline
gem 'coffee-script' # Like JavaScript, but better
# gem 'coffee-filter' # Use CoffeeScript in HAML
gem 'jquery-rails' # You know what it is
gem 'uglifier' # Minifier for production
gem 'haml' # Slim and sexy templates
gem 'haml-rails' # Use HAML in generators
gem 'tinymce-rails' # Simple WYSIWYG editor
gem 'sass'
gem 'sass-rails', :git => 'git://github.com/rails/sass-rails.git', :branch => :master
gem 'compass', :git => 'git://github.com/chriseppstein/compass.git', :branch => :master
end
group :development do
gem 'thin'
gem 'sqlite3'
gem 'brakeman'
end
group :production do
gem 'pg'
gem 'rails_12factor'
end
group :test do
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'capybara'
gem 'turn', :require => false
end