Sha256: 18fd03b777987a25b11bcd1663410484f2dc27390ec04decc5aa54bacf75be1b

Contents?: true

Size: 730 Bytes

Versions: 5

Compression:

Stored size: 730 Bytes

Contents

# 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

# Define gems to be used in the 'test' environment
group :test do
  gem 'rspec'
  gem 'mocha', '0.12.7'
  gem 'timecop'
  gem 'fuubar'

  gem 'guard'
  gem 'guard-rspec'
  gem 'rb-fsevent' # guard notifications for osx
  gem 'growl'      # $ brew install growlnotify
  gem 'rb-inotify' # guard notifications for linux
  gem 'libnotify'  # $ apt-get install ???
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
backup-agoddard-3.0.28 Gemfile
backup-agoddard-3.0.27 Gemfile
ey-vendored-backup-3.0.27 Gemfile
backup-3.0.27 Gemfile
backup-3.0.26 Gemfile