-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
79 lines (74 loc) · 1.74 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
source 'https://rubygems.org'
ruby '2.1.5'
gem 'rails', '4.0.3'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'foundation-rails', '~> 5.2'
gem 'haml-rails'
gem 'puma'
gem "mini_magick"
gem 'carrierwave'
gem "sinatra", "~> 1.4.4"
gem 'devise'
gem 'omniauth-github'
gem 'simple_token_authentication'
gem 'cancancan', '~> 1.7'
gem "rolify"
gem 'rails3-jquery-autocomplete'
gem 'jquery-ui-rails'
gem 'foundation-icons-sass-rails'
gem 'foundation_rails_helper'
gem 'will_paginate'
gem 'github-markdown', :require => 'github/markdown'
gem 'gravatar_image_tag'
gem 'best_in_place', :git => 'https://github.com/bernat/best_in_place.git'
gem 'remotipart'
gem 'google-analytics-turbolinks'
group :production do
gem 'pg'
gem "bugsnag"
gem 'newrelic_rpm'
gem 'fog', '~> 1.22.0'
gem 'rails_12factor'
end
group :development do
gem 'sqlite3'
gem 'jazz_hands'
gem 'railroady'
gem 'dotenv-rails'
gem 'rubocop'
gem "annotate", "~> 2.6.2"
gem 'ruby_gntp'
gem 'better_errors'
gem 'binding_of_caller', :platforms=>[:mri_19, :mri_20, :rbx]
gem 'guard-bundler'
gem 'guard-cucumber'
gem 'guard-redis'
gem 'guard-rspec'
gem 'guard-rails'
gem 'guard-livereload', require: false
gem 'html2haml'
gem 'rails_layout'
gem 'rb-fchange', :require=>false
gem 'rb-fsevent', :require=>false
gem 'rb-inotify', :require=>false
end
group :development, :test do
gem 'rspec-rails'
gem "shoulda-matchers", "~> 2.5.0"
end
group :production, :test do
end
group :test do
gem 'factory_girl_rails'
gem 'coveralls', require: false
gem 'capybara'
gem 'cucumber-rails', :require=>false
gem 'database_cleaner', '~> 1.2'
gem 'email_spec'
gem 'launchy'
end