-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
65 lines (54 loc) · 1.64 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
source 'https://rubygems.org'
gem 'rails', '~> 3.2.17'
gem 'mysql2', '~> 0.3.18'
gem 'newrelic_rpm'
gem 'config'
gem 'jquery-rails'
gem 'devise'
gem 'omniauth'
gem 'omniauth-openid'
gem 'haml-rails'
gem 'angularjs-rails'
gem 'underscore-rails'
gem 'decent_exposure'
gem 'instedd-pigeon', git: "https://bitbucket.org/instedd/pigeon.git", branch: 'master', :require => 'pigeon'
gem 'ng-rails-csrf'
gem 'elasticsearch'
gem 'rack-cors', :require => 'rack/cors'
gem 'symbolize'
gem 'rest-client'
gem 'puma'
gem 'poirot'
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'
gem 'ruby-openid'
gem 'alto_guisso', github: "instedd/alto_guisso", branch: 'master'
gem 'alto_guisso_rails', github: "instedd/alto_guisso_rails", branch: 'master'
gem 'resource_map_api_client', git: "https://bitbucket.org/instedd/resource_map_api_client.git", branch: 'master'
gem 'listings'
gem 'oj'
gem 'guid'
gem 'instedd-bootstrap', github: "instedd/instedd-bootstrap", branch: 'master'
gem 'hub_client', github: 'instedd/ruby-hub_client', branch: 'master'
gem 'instedd_telemetry', github: 'instedd/telemetry_rails', branch: 'master'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'bootstrap-sass', '~> 2.3.2.1'
gem 'uglifier', '>= 1.0.3'
end
group :development, :test do
gem 'rspec'
gem 'rspec-rails'
gem 'pry-byebug'
gem 'faker'
gem 'fakefs', :require => 'fakefs/safe'
gem 'machinist'
gem 'capistrano', '2.15.4', require: false
gem 'rvm-capistrano', require: false
gem 'timecop'
gem 'rails-dev-tweaks'
end