forked from afeld/mustachio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
37 lines (28 loc) · 749 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
source 'http://rubygems.org'
gem 'sinatra', '~> 1.2', :require => 'sinatra/base'
gem 'dragonfly', '~> 0.9'
gem('magickly',
:git => '[email protected]:afeld/magickly.git',
:ref => 'cd17608a9c4468da1f738815a96dc2a9473fc029')
#gem 'magickly', :path => '../magickly'
gem 'excon'
gem 'faraday'
gem 'addressable', :require => 'addressable/uri'
gem 'haml'
gem 'fastimage', :require => 'fastimage'
group :development do
gem 'jeweler'
end
group :development, :test do
gem 'rack-test', :require => 'rack/test'
gem 'rspec'
gem 'debugger', platforms: :mri_19
gem 'byebug', platforms: :mri_20
end
group :test do
gem 'webmock', :require => 'webmock/rspec'
gem 'vcr'
end
group :production do
gem 'newrelic_rpm', :require => false
end