-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
83 lines (65 loc) · 1.52 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
source 'http://rubygems.org'
gem 'rails', '3.0.7'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'mysql2'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'moneta'
gem 'yajl-ruby', :require => 'yajl'
gem 'nokogiri'
gem "jquery-rails"
gem "meta_where"
gem "meta_search"
gem "annotate"
# Paginator
# gem "kaminari"
gem 'will_paginate', '3.0.pre2'
# File Uploads
# gem 'paperclip'
#gem 'rmagick'
gem 'carrierwave'
gem 'devise'
# gem "cancan"
# gem "simple_form"
# gem 'fastercsv' # for Ruby 1.8.7+
# gem 'prawn'
# gem "haml"
# gem "haml-rails"
# gem 'validates_timeliness', '~> 3.0.5'
# gem 'acts-as-taggable-on'
# gem 'hoptoad_notifier'
# gem 'newrelic_rpm'
gem 'SystemTimer' if RUBY_VERSION =~ /^1.8/
group :test, :development do
gem "rspec", "~> 2.0"
gem "rspec-rails", "~> 2.0"
gem "factory_girl_rails"
gem "shoulda-matchers"
gem "rcov"
gem "delorean"
gem "watchr"
gem "web-app-theme"
# gem "capybara"
# gem 'yard'
# gem "bluecloth"
end
# State machine
# gem 'aasm'
# gem 'state_machine'
# HTTP client
# gem 'typhoeus'
# gem 'rest-client', :require => 'restclient'
# Memcached client
# gem "dalli"
# gem "memcache-client", :require => "memcache"
# Deployment tool
# gem 'capistrano'
# gem 'whiskey_disk'
# Debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
# gem 'ruby-debug'
# gem 'ruby-debug19'
# Background Processing
gem 'delayed_job'
# gem 'resque'
# Full-text search engine
# gem 'thinking-sphinx', '~> 2.0.2', :require => 'thinking_sphinx'