-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
61 lines (53 loc) · 2.42 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
source 'https://rubygems.org'
ruby '2.2.4'
gem 'bundler', '>= 1.8.4'
gem 'rails', '4.2.5'
gem 'sqlite3'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'web-console', '~> 2.0', group: :development # better error
group :staging, :production do
gem 'airbrake' # error tracking / errbit
end
group :development, :test do
gem 'byebug' # debugger
gem 'spring' # speed cache
gem 'factory_girl_rails' # factories for tests
gem 'launchy' # save_and_open_page
gem 'minitest-rails-capybara' # tests features
gem 'capybara' # tests features
gem 'capybara-webkit' # tests features with javascript
gem 'minitest-reporters' # tests colors
gem 'letter_opener_web' # mailcatcher
end
source 'https://rails-assets.org' do
gem 'rails-assets-bootstrap'
gem 'rails-assets-bootstrap-datepicker'
end
gem 'activeadmin', '~> 1.0.0.pre1' # admin
gem 'active_skin' # admin css
gem 'activeadmin-xls', github: 'thambley/activeadmin-xls' # admin xlsx export
gem 'ckeditor' # admin wysiwyg
gem 'devise' # users
gem 'cancancan', '~> 1.10' # users permissions
gem 'pg' # database
gem 'capistrano', '~> 3.1' # deploy
gem 'capistrano-rails', '~> 1.1' # deploy
gem 'capistrano-rvm' # deploy
gem 'capistrano-bundler' # deploy
gem 'cocoon' # nested models forms
gem 'formtastic', '~> 3.0' # forms helpers
gem 'flag_shih_tzu' # tags
gem 'friendly_id' # slugs
gem 'rails-footnotes', '~> 4.0' # debug footnotes
gem 'google_calendar' # google calendar API
gem 'feedjira' # RSS
gem 'truncate_html' # for RSS body
#gem 'id_ecuador' # validates cedula Ecuador
#