forked from guard/listen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
listen.gemspec
26 lines (21 loc) · 895 Bytes
/
listen.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'listen/version'
Gem::Specification.new do |s|
s.name = 'listen'
s.version = Listen::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Thibaud Guillaume-Gentil']
s.email = ['[email protected]']
s.homepage = 'https://github.com/guard/listen'
s.summary = 'Listen to file modifications'
s.description = 'The Listen gem listens to file modifications and notifies you about the changes. Works everywhere!'
s.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = 'listen'
s.add_dependency 'rb-fsevent', '~> 0.9.0'
s.add_dependency 'rb-inotify', '~> 0.8.8'
s.add_dependency 'rb-fchange', '~> 0.0.5'
s.add_development_dependency 'bundler'
s.files = Dir.glob('{lib}/**/*') + %w[CHANGELOG.md LICENSE README.md]
s.require_path = 'lib'
end