-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
34 lines (25 loc) · 811 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '3.2.0'
gem 'crichton', git: '[email protected]:fosrias/crichton.git', tag: '0.0.3'
gem 'launchy'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
gem 'rack', '=1.4.1' # To silence deprecation warnings.
gem 'rack-accept', '~> 0.4'
gem 'strongly_typed_parameters', '~> 0.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'nokogiri'
# gem 'ffi-rzmq', '~> 2.0.1' Uncomment to use zeromq
gem 'yajl-ruby', '~> 1.2.0'
gem 'faraday', '~> 0.9.0'
group :test, :development do
gem 'debugger', '~> 1.5.0'
end
group :test do
gem 'webmock', '~> 1.13.0'
gem 'equivalent-xml', '~> 0.3.0'
gem 'rspec', '~> 2.13.0'
gem 'simplecov', '~> 0.7.1'
end