forked from johnbintz/guard-rails
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathguard-rails.gemspec
23 lines (19 loc) · 892 Bytes
/
guard-rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "guard-rails"
s.version = File.open('VERSION') { |f| f.read }
s.platform = Gem::Platform::RUBY
s.authors = ["John Bintz", "Wanzhang Sheng"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/ranmocy/guard-rails"
s.summary = %q{Guard your Rails to always be there.}
s.description = %q{Restart Rails when things change in your app}
s.license = 'MIT'
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"]
s.required_ruby_version = '>= 2.2.3'
s.add_dependency 'guard', '~> 2.14'
s.add_dependency('guard-compat', '~> 1.0')
end