forked from vizjerai/guard-spin
-
Notifications
You must be signed in to change notification settings - Fork 10
/
guard-zeus.gemspec
23 lines (19 loc) · 990 Bytes
/
guard-zeus.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/guard/zeus/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "guard-zeus"
gem.version = Guard::ZeusVersion::VERSION
gem.version = "#{gem.version}-alpha-#{ENV['TRAVIS_BUILD_NUMBER']}" if ENV['TRAVIS']
gem.platform = Gem::Platform::RUBY
gem.authors = ["jonathangreenberg", "Andrew Assarattanakul", "Rob Sharp"]
gem.description = %q{Guard::Zeus automatically manage zeus}
gem.summary = %q{Pushes watched files to Zeus}
gem.homepage = "https://github.com/guard/guard-zeus"
gem.add_runtime_dependency 'guard', '~> 2.0'
gem.add_runtime_dependency 'guard-compat', '~> 1.1'
gem.add_runtime_dependency 'zeus', '~> 0'
gem.add_development_dependency 'bundler', '~> 1.0'
gem.files = Dir.glob('{lib}/**/*') + %w[LICENSE README.md]
gem.require_path = 'lib'
end