-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathguard-rake.gemspec
More file actions
23 lines (20 loc) · 822 Bytes
/
guard-rake.gemspec
File metadata and controls
23 lines (20 loc) · 822 Bytes
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 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'guard/rake/version'
Gem::Specification.new do |s|
s.name = 'guard-rake'
s.version = Guard::RakeVersion::VERSION
s.authors = ['Scott Barron']
s.email = ['scott@elitists.net']
s.homepage = 'http://github.com/rubyist/guard-rake'
s.summary = %q{Guard for running rake tasks}
s.description = %q{guard-rake automatically runs Rake tasks from your Rakefile}
s.license = "MIT"
s.add_dependency 'guard'
s.add_dependency 'guard-shell'
s.add_dependency 'rake'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map {|f| File.basename(f) }
s.require_paths = ['lib']
end