-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
34 lines (28 loc) · 834 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
# encoding: UTF-8
source "http://rubygems.org"
gem "activemodel", '4.2.11.3'
gem "activesupport", '4.2.11.3'
gem "typhoeus", '>= 1.0.1'
gem "ethon", ">= 0.8.0"
gem "kaminari", '~> 1.2.1'
group :development, :test do
#gem 'debugger'
gem 'rake'
gem 'activerecord'
gem "shoulda"
gem "bundler", ">= 1.2.2"
gem "jeweler", "~> 1.6.4"
#gem "rcov"
gem "sqlite3"
gem "sinatra", " ~> 1.2.6"
gem "json", '2.0.0'
gem 'gemcutter'
gem "rspec-rails", '2.11.0'
gem 'guard-rspec'
# guard notifications on Mac OS X
gem 'rb-fsevent', :require => false if RUBY_PLATFORM =~ /darwin/i
gem 'growl', :require => false if RUBY_PLATFORM =~ /darwin/i
# guard notifications on Linux
gem 'rb-inotify', :require => false if RUBY_PLATFORM =~ /linux/i
gem 'libnotify', :require => false if RUBY_PLATFORM =~ /linux/i
end