-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
28 lines (24 loc) · 815 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
source 'https://rubygems.org'
gem 'sinatra', :github => "sinatra/sinatra"
gem 'sinatra-contrib'
gem 'sinatra-param'
gem 'puma'
gem 'dotenv', '~> 2.0.1'
gem 'rake', '~> 10.4.2'
gem 'activerecord', '~> 4.2.0'
gem 'sinatra-activerecord', git: '[email protected]:janko-m/sinatra-activerecord.git', tag: 'v1.3.0'
gem 'rack-parser', :require => 'rack/parser'
gem 'rack-livereload', :group => :development
gem 'httparty'
gem 'nokogiri'
group :development, :test do
gem 'byebug'
end
group :test do
gem 'database_cleaner'
gem 'rspec', '~> 3.2.0'
gem 'rspec_api_documentation', git: '[email protected]:zipmark/rspec_api_documentation.git'
gem 'rack-test'
gem 'pry'
gem 'pry-byebug'
end