-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
94 lines (65 loc) · 2.06 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
94
source 'https://rubygems.org'
source 'https://rails-assets.org' # bridge between bundler and bower
gem 'rails', '~> 3.2'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3'
# needed for conversion
gem 'mysql2'
gem 'activerecord-mysql-adapter'
gem 'json'
gem 'active_model_serializers'
# run "rails generate audited:upgrade" when upgrading
gem 'audited-activerecord' ,'~> 3.0'
gem 'will_paginate', '~> 3.0'
# slug URL fragments for some models
gem 'friendly_id'
# mostly for String.to_ascii to help tokenization
gem 'stringex'
# record text search without needing to configure a separate search engine
gem 'acts_as_indexed'
# TODO this is just CSV in 1.9 and it complains loudly if you try to use
# FasterCSV. Figure out how to dispatch appropriately or whether to ditch
# 1.8 support entirely.
gem 'fastercsv'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2'
gem 'coffee-rails', '~> 3.2'
gem 'handlebars_assets'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'meta_request'
end
# JavaScript gems
gem 'jquery-rails', '< 3.0' # TODO jquery-ui-rails, jquery-ui-sass-rails
gem 'lodash-rails'
gem 'momentjs-rails'
# autocomplete search results
gem 'twitter-typeahead-rails'
# AngularJS gems
gem 'angularjs-rails'
gem 'rails-assets-restangular'
gem 'rails-assets-checklist-model'
gem 'haml-rails'
gem 'formtastic'
gem 'acts-as-taggable-on'
gem 'strong_parameters' # TODO this comes by default in Rails 4
# Patched to fix various stack overflow and sqlite compatibility errors
#gem "rails_sql_views", :git => "git://github.com/flwyd/rails_sql_views"
gem 'pundit'
gem 'devise'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug'