-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
105 lines (79 loc) · 2.57 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
95
96
97
98
99
100
101
102
103
104
105
source 'https://rubygems.org'
gem 'rails', '3.2.11'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'mysql2'
gem 'schema_plus', '~> 1.0.0'
gem 'schema_validations', '~> 0.2.0'
gem 'schema_associations', '~> 0.1.2'
gem 'seed-fu', '~> 2.2.0'
# Authentication and access control
# OAuth providers list https://github.com/intridea/omniauth/wiki/List-of-Strategies
gem 'devise', '~> 2.2.3'
gem 'omniauth', '~> 1.1.1'
gem 'omniauth-linkedin'
gem 'omniauth-facebook'
gem 'cancan', '~> 1.6.8'
# Views
gem 'slim-rails', '~> 1.1.0'
gem 'ember-rails', '~> 0.8.0'
gem 'simple_form', '~> 2.0.4'
gem 'kaminari', '~> 0.14.1'
gem 'tabs_on_rails', '~> 2.1.1'
# Textarea advanced editor
gem 'bootstrap-wysihtml5-rails', '~> 0.3.1.17'
gem 'simple-navigation', '~> 3.9.0'
gem 'simple-navigation-bootstrap'
gem 'jquery-rails', '~> 2.1.4'
gem 'jquery-ui-rails', '~> 3.0.1'
gem 'cache_digests', '~> 0.2.0'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'compass-rails', '~> 1.0.3'
gem 'anjlab-bootstrap-rails', '~> 2.2', :require => 'bootstrap-rails'
# gem 'font-awesome-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', '~> 0.11.2'
gem 'execjs', '~> 1.4.0'
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'better_errors', '~> 0.3.2'
gem 'binding_of_caller', '~> 0.6.8'
gem 'better_logging', '~> 1.0.3'
gem 'meta_request', '~> 0.2.1'
gem 'capistrano', '~> 2.14.2'
gem 'capistrano-ext', '~> 1.2.1'
end
group :development, :test do
gem 'rspec-rails', '~> 2.12.2'
gem 'factory_girl_rails', '~> 4.0'
gem 'bullet', '~> 4.3.0'
end
group :test do
gem 'cucumber-rails', '~> 1.3.0', :require => false
gem 'database_cleaner', '~> 0.9.1'
gem 'ffaker', '~> 1.15.0'
gem 'email_spec', '~> 1.2.1'
end
# Detect mobile devices
gem 'mobile-fu', '~> 1.1.1'
# Automate scraping
# gem 'mechanize', '~> 2.5.1'
gem 'delayed_job', '~> 3.0.4'
gem 'carrierwave', '~> 0.8.0'
# slugs generator
gem 'stringex', '~> 1.5.1'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'