-
Notifications
You must be signed in to change notification settings - Fork 18
/
Gemfile
83 lines (76 loc) · 2.21 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
source 'http://rubygems.org'
git_source(:github) { |repo_name| "https://github.com/#{repo_name}.git" }
gem 'rails', '~> 3.2.0'
gem "puma", "2.16.0"
gem 'haml-rails'
gem "jquery-rails"
gem 'mysql2', '~> 0.3.21'
gem 'nokogiri'
gem 'guid'
gem 'devise'
gem "instedd-rails"
gem 'decent_exposure'
gem 'attr_encrypted'
gem 'foreman'
gem 'oauth2', :require => 'oauth2'
gem 'delayed_job_active_record'
gem 'rubyzip'
gem 'zip-zip'
gem 'rest-client', "1.8.0"
gem 'enumerated_attribute', :git => "https://github.com/edave/enumerated_attribute.git"
gem 'csv_builder'
gem 'newrelic_rpm'
gem 'hub_client', github: 'instedd/ruby-hub_client', branch: 'master'
gem 'language_list'
gem 'bertrpc'
gem 'formatted_rails_logger'
gem 'instedd-pigeon', :require => 'pigeon'
gem 'poirot_rails', git: 'https://github.com/instedd/poirot_rails.git', branch: 'master'
gem 'hercule', git: 'https://github.com/instedd/poirot.git', branch: 'master'
gem 'alto_guisso', github: "instedd/alto_guisso", branch: 'master'
gem 'alto_guisso_rails', github: "instedd/alto_guisso_rails", branch: 'master'
gem 'ruby-openid'
gem 'omniauth'
gem 'omniauth-openid'
gem 'recurring_select', git: "https://github.com/instedd/recurring_select", branch: 'instedd'
gem 'listings', "0.1.13"
gem 'instedd_telemetry', github: "instedd/telemetry_rails", branch: 'master'
gem 'rails-assets-material-components-web', source: 'https://rails-assets.org'
gem 'intercom-rails'
gem 'test-unit'
group :assets do
gem 'sass-rails', '~> 3.2.5'
gem 'sass', '~> 3.2.5'
gem 'coffee-rails', '~> 3.2.2'
gem 'uglifier', '>= 1.0.3'
end
group :development, :test do
gem 'machinist', git: 'https://github.com/instedd/machinist.git', branch: '1.0-maintenance'
gem 'ffaker'
gem 'mocha', :require => false
gem 'rspec'
gem 'rspec-rails'
gem 'rspec-collection_matchers'
gem 'ci_reporter'
gem 'equivalent-xml'
gem 'byebug'
gem 'syntax'
gem 'timecop'
gem 'quiet_assets'
gem 'json-schema'
end
group :development do
gem 'capistrano'
gem 'rvm'
gem 'rvm-capistrano', require: false
gem 'licit'
gem 'thin'
gem 'rails-dev-tweaks'
gem 'zeus'
end
group :test do
gem "shoulda-matchers", require: false
gem 'webmock'
gem 'fakefs', :require => 'fakefs/safe'
gem 'database_cleaner'
end