-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
93 lines (72 loc) · 2.22 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
83
84
85
86
87
88
89
90
91
92
93
source 'http://rubygems.org'
gem 'rails', '3.2.17'
#gem 'rake'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'pg'
# We need 'em arrays; this shouldn't be needed in Rails 4.0 >=
gem 'postgres_ext'
# For PostgreSQL’s full text search
gem 'pg_search'
# For the Thinking Sphinx search engine
# sudo apt-get install sphinxsearch
# sudo apt-get install libmysqlclient-dev
gem 'mysql2', '0.3.12b4' #b5 ?
gem 'thinking-sphinx', '3.0.5'
# NB. for the engine to work you need to do
# be rake ts:index
# be rake ts:start
# I encountered encoding problems which were fixed by:
# ref: https://github.com/pat/thinking-sphinx/issues/430
# Use unicorn as the web server
# gem 'unicorn'
#gem 'mongrel', '>= 1.2.0.pre2'
group :assets do
#gem 'lodash-rails'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
# For Bootstrap & Less (incl. Sass)
gem 'therubyracer' # See https://github.com/sstephenson/execjs#readme
gem 'jquery-rails', '~> 2.1'
gem 'jquery-ui-rails', '~> 3.0'
#gem 'less-rails-bootstrap', git: 'git://github.com/metaskills/less-rails-bootstrap.git'
gem 'less-rails-bootstrap', '~> 2.3.2'
#gem 'eco'
end
group :test do
gem 'shoulda'
gem 'factory_girl', '~> 4.0'
end
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug'
# gem 'debugger'
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'
gem 'authlogic'
gem 'cancan'
gem 'fastercsv'
#gem 'acts_as_list'
#gem 'deep_cloneable', :git => 'git://github.com/moiristo/deep_cloneable.git'
gem 'deep_cloneable', '~> 1.6.0'
gem 'delayed_job_active_record', :git => 'git://github.com/collectiveidea/delayed_job_active_record.git'
gem 'daemons'
# For model object serialization
gem 'active_model_serializers'
## For simple form
#gem 'simple_form'
# development
#group :development do
# gem "rails-erd" # entity relationship diagrams
#end
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
# group :development, :test do
# gem 'webrat'
# end