forked from mynyml/watchr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwatchr.gemspec
More file actions
20 lines (18 loc) · 787 Bytes
/
Copy pathwatchr.gemspec
File metadata and controls
20 lines (18 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'lib/watchr'
Gem::Specification.new do |s|
s.name = "watchr"
s.summary = "Modern continious testing (flexible alternative to autotest)"
s.description = "Modern continious testing (flexible alternative to autotest)."
s.author = "mynyml"
s.email = "mynyml@gmail.com"
s.homepage = "http://mynyml.com/ruby/flexible-continuous-testing"
s.rubyforge_project = "watchr"
s.require_path = "lib"
s.bindir = "bin"
s.executables = "watchr"
s.version = Watchr::VERSION
s.files = `git ls-files`.strip.split("\n")
s.add_development_dependency 'minitest'
s.add_development_dependency 'mocha'
s.add_development_dependency 'every'
end