forked from stringer-rss/stringer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
41 lines (35 loc) · 757 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
source 'https://rubygems.org'
gem "sinatra"
gem "sinatra-activerecord"
gem "sinatra-flash"
gem "sinatra-contrib", github: "sinatra/sinatra-contrib"
gem "sinatra-assetpack", :require => "sinatra/assetpack"
gem "i18n"
gem "rake"
gem "delayed_job_active_record"
gem "bcrypt-ruby"
gem "will_paginate"
gem "feedzirra", github: "swanson/feedzirra"
gem "loofah"
gem "nokogiri"
gem "feedbag", github: "dwillis/feedbag"
gem "coveralls", require: false
gem "highline", require: false
gem "thread"
group :production do
gem "unicorn"
gem "pg"
end
group :development do
gem "sqlite3"
end
group(:development, :testing) do
gem "pry"
gem "rspec"
gem "rspec-html-matchers"
gem "rack-test"
gem "shotgun"
gem "racksh"
gem "faker"
gem "foreman"
end