-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
98 lines (76 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
95
96
97
98
# -*- coding: utf-8 -*-
source 'https://rubygems.org'
ruby '2.1.5'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~>4.1'
# Uncomment this for Heroku
# gem 'rails_12factor'
gem 'thin'
gem 'quiet_assets'
# Admin Interface
gem 'rails_admin'
# Use SCSS for stylesheets
gem 'sass-rails', '=5.0.0.beta1'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Needed for default layouts
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
gem 'underscore-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Adding Doorkeeper
gem 'doorkeeper'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
gem 'gmaps4rails'
gem 'geocoder'
gem 'devise', git: 'https://github.com/plataformatec/devise.git', :branch => 'lm-rails-4-2'
gem 'haml-rails'
gem 'cancan'
gem 'twitter-bootstrap-rails', :git => 'git://github.com/seyhunak/twitter-bootstrap-rails.git'
gem 'resque-web', require: 'resque_web'
gem 'resque-scheduler'
=begin
group :production do
gem 'pg'
gem 'activerecord-postgresql-adapter'
end
=end
gem 'therubyracer'
gem 'less-rails'
gem 'formtastic'
gem 'formtastic-bootstrap', github: 'siruguri/formtastic-bootstrap'
gem 'capistrano', '~> 3.1'
gem 'capistrano-rails', '~> 1.1'
# integrate bundler with capistrano
gem 'capistrano-bundler'
gem 'capistrano-rvm'
gem 'capistrano-passenger'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
group :development do
# Rails 4.2 Web Console!
gem 'web-console', '~> 2.0'
end
group :development, :test do
gem 'dotenv-rails'
gem 'pry'
gem 'pry-remote'
gem 'pry-stack_explorer'
gem 'pry-byebug'
end
#testing with minitest
group :test do
gem 'minitest-spec-rails'
gem 'minitest-rails-capybara'
gem 'capybara-webkit'
gem 'mocha'
gem 'simplecov', require: false
end