forked from puppetlabs-toy-chest/puppet-webhooks
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
55 lines (42 loc) · 933 Bytes
/
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
source 'https://rubygems.org'
gem 'gepetto_hooks', '>= 0', :path => File.expand_path('.'), :require => false
gem 'rake'
gem 'thor'
gem 'sinatra'
gem 'ruby-trello'
gem 'jira-ruby', :require => 'jira'
gem 'octokit'
gem 'json'
gem 'liquid'
gem 'sinatra-activerecord'
gem 'delayed_job_active_record'
gem 'delayed_job'
gem 'workless', '1.1.3'
gem 'business_time'
gem 'rails', '~> 3.2'
group :development do
gem 'watchr'
gem 'hub'
gem 'wirb'
gem 'irbtools'
gem 'pry'
gem 'pry-debugger'
gem 'yard'
gem 'redcarpet'
gem 'terminal-notifier'
end
group :test do
gem 'rspec'
gem 'rack-test'
gem 'sqlite3'
end
group :production do
gem 'thin'
gem 'pg'
# A dev database add-on is provisioned if the Ruby application has the pg gem
# in the Gemfile. This populates the DATABASE_URL environment var.
end
if File.exists? "#{__FILE__}.local"
eval(File.read("#{__FILE__}.local"), binding)
end
# vim:ft=ruby