-
Notifications
You must be signed in to change notification settings - Fork 48
/
Gemfile
77 lines (62 loc) · 1.69 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
require 'rbconfig'
HOST_OS = RbConfig::CONFIG['host_os']
source 'https://rubygems.org'
gem 'rails', '~> 4.2.6'
gem 'mysql2'
# Gems used only for assets and not required
# in production environments by default.
gem 'sass-rails', '~> 5.0'
gem 'coffee-rails', '~> 4.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '~> 2.1', require: false
gem 'jquery-rails'
gem 'omniauth', '>= 1.1.0'
gem 'omniauth-github'
gem 'bootstrap-sass', '>= 2.3.2', '< 3.0'
gem 'coderay'
gem 'kaminari'
gem 'redcarpet'
# File Uploading
gem 'carrierwave'
# Comment Tree Structure
gem 'ancestry'
gem 'gravatar_image_tag'
group :development, :test do
gem 'rspec-rails', '~> 2.14.2', '< 2.99'
gem 'factory_girl_rails', '>= 3.3.0'
gem 'shoulda-matchers', '~> 2.8.0'
gem 'rspec-instafail'
gem 'capybara'
end
group :development do
# Use Capistrano for deployment
gem 'capistrano', '~> 3.2'
gem 'capistrano-rails', '~> 1.1'
gem 'quiet_assets'
gem 'byebug'
gem 'guard', '>= 0.6.2'
gem 'guard-bundler', '>= 0.1.3'
gem 'guard-rspec', '~> 4.3.1' # the 4.3 is latest version support rspec 2.14
#case HOST_OS
# when /darwin/i
# gem 'rb-fsevent'
# gem 'growl'
# when /linux/i
# gem 'libnotify'
# gem 'rb-inotify'
# when /mswin|windows/i
# gem 'rb-fchange'
# gem 'win32console'
# gem 'rb-notifu'
# end
gem 'annotate', '~> 2.7.0'
gem 'rails_best_practices'
end
group :test do
gem 'email_spec', '>= 1.2.1'
gem 'simplecov', require: false
end
gem 'hitimes'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem for Rails 4.1.0
gem 'tzinfo-data', platforms: [:mingw, :mswin]