-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
82 lines (74 loc) · 2.02 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
source 'http://rubygems.org'
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
gem 'rails', '3.2.22.5'
gem 'mysql2', '~> 0.3.17'
gem 'jquery-rails'
gem 'fancybox-rails'
gem 'haml-rails'
gem 'sass', '~> 3.1.10'
gem 'devise', '1.5.4'
gem 'enumerated_attribute', :git => "https://github.com/jeffp/enumerated_attribute.git"
gem 'nokogiri'
gem 'hpricot'
gem 'rest-client'
gem 'acts_as_list'
gem 'nuntium_api', :require => 'nuntium'
gem 'breadcrumbs_on_rails', "~> 2.3"
gem 'cancan', "~> 1.6.7"
gem 'kaminari'
gem 'fast_gettext'
gem 'gettext_i18n_rails'
gem 'mechanize'
gem 'ice_cube'
gem 'recurring_select', git: "https://github.com/instedd/recurring_select", branch: 'instedd'
gem 'delayed_job'
gem 'delayed_job_active_record'
gem 'foreman', '0.64.0'
gem 'knockoutjs-rails'
gem 'knockout_forms-rails', git: "https://github.com/manastech/knockout_forms-rails.git", tag: 'v1.0.2'
gem 'gon'
gem 'activerecord-import', '~> 0.3.1'
gem "guid"
gem 'rgviz'
gem 'rgviz-rails', '~> 1.0.0', :require => 'rgviz_rails'
gem 'instedd_telemetry', git: 'https://github.com/instedd/telemetry_rails.git'
gem 'intercom-rails'
gem "omniauth"
gem "omniauth-openid"
gem 'ruby-openid'
gem 'rack-oauth2'
gem 'alto_guisso', git: "https://github.com/instedd/alto_guisso.git", branch: 'master'
gem 'alto_guisso_rails', git: "https://github.com/instedd/alto_guisso_rails.git", branch: 'master'
gem 'hub_client', github: 'instedd/ruby-hub_client', branch: 'master'
gem 'listings'
gem 'lograge'
gem 'config', '~> 1.4.0'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.0'
gem 'coffee-rails', '~> 3.2.0'
gem 'uglifier'
end
group :test do
# Pretty printed test output
gem 'turn', :require => false
gem 'machinist'
gem 'mocha'
gem 'webmock'
gem 'test-unit'
end
group :development do
gem 'ruby_parser'
gem 'locale'
gem 'wirble'
gem 'licit'
end
group :test, :development do
gem 'pry-byebug'
gem 'rspec-rails'
gem 'faker'
end
group :webserver do
gem 'puma', '~> 3.0.2'
end