forked from backup/backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
32 lines (25 loc) · 750 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
# encoding: utf-8
# RubyGems Source
source 'http://rubygems.org'
# Include gem dependencies from the gemspec for development purposes
gemspec
# Dynamically define the dependencies specified in Backup::Dependency.all
require File.expand_path("../lib/backup/dependency", __FILE__)
Backup::Dependency.all.each do |name, gemspec|
gem(name, gemspec[:version])
end
gem 'rspec'
gem 'mocha', '0.12.7'
gem 'timecop'
# Omitted from Travis CI Environment
group :development do
gem 'guard'
gem 'guard-rspec'
gem 'fuubar'
gem 'rb-fsevent' # guard notifications for osx
gem 'growl' # $ brew install growlnotify
gem 'rb-inotify' # guard notifications for linux
gem 'libnotify' # $ apt-get install ???
gem 'yard'
gem 'redcarpet'
end