-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
57 lines (43 loc) · 1.04 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
source 'https://rubygems.org'
# Padrino supports Ruby version 1.9 and later
# ruby '2.3.1'
# Distribute your app as a gem
# gemspec
# Server requirements
# gem 'thin' # or mongrel
# gem 'trinidad', :platform => 'jruby'
# Optional JSON codec (faster performance)
# gem 'oj'
gem 'pry'
# Project requirements
gem 'rake', '~> 12.0'
gem 'google_drive'
gem 'sinatra-flash'
# Component requirements
gem 'padrino-contrib'
gem 'sass'
gem 'erubis', '~> 2.7.0'
gem 'activerecord', '>= 3.1', :require => 'active_record'
gem 'sqlite3'
# Test requirements
gem 'rspec', :group => 'test'
gem 'rack-test', :require => 'rack/test', :group => 'test'
# Padrino Stable Gem
gem 'padrino', '0.13.3.3'
gem 'unicorn'
gem 'foreman'
gem 'airbrake', '~> 6.1'
# Or Padrino Edge
# gem 'padrino', :github => 'padrino/padrino-framework'
# Or Individual Gems
# %w(core support gen helpers cache mailer admin).each do |g|
# gem 'padrino-' + g, '0.13.3.3'
# end
gem 'prawn'
gem 'prawn-table'
gem "prawn-labels"
gem 'twilio-ruby'
group :development do
gem 'guard'
gem 'guard-rspec'
end