-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathguard-webrick.gemspec
30 lines (25 loc) · 1.06 KB
/
guard-webrick.gemspec
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "guard/webrick/version"
Gem::Specification.new do |s|
s.name = "guard-webrick"
s.version = Guard::WEBrickVersion::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Fletcher Nichol']
s.email = ['[email protected]']
s.homepage = 'http://rubygems.org/gems/guard-webrick'
s.summary = %q{Guard gem for WEBrick}
s.description = %q{Guard::WEBrick automatically starts and restarts WEBrick when needed.}
s.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = "guard-webrick"
s.add_dependency 'guard', '~> 1.0'
s.add_dependency 'spoon', '~> 0.0.1'
s.add_dependency 'ffi'
s.add_dependency 'launchy', '~> 2.1.0'
s.add_development_dependency 'rspec', '~> 2.5'
s.add_development_dependency 'guard-rspec'
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