-
Notifications
You must be signed in to change notification settings - Fork 0
/
emory.gemspec
26 lines (22 loc) · 1.1 KB
/
emory.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 'emory/version'
Gem::Specification.new do |s|
s.name = 'emory'
s.version = Emory::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Vladislav Gangan', 'Scott Askew', 'Ion Lenta']
s.homepage = 'http://tacitknowledge.com/emory'
s.summary = 'Invokes a configured action when something interesting happens to a monitored file'
s.description = 'The Emory gem listens to file modifications and runs an action against it (for example, upload to a remote location)'
s.files = `git ls-files`.split($\)
s.executables = %w(emory)
s.test_files = Dir.glob("{spec,test}/**/*.rb")
s.require_paths = ["lib"]
s.add_development_dependency 'rspec', '~> 2.14.1'
s.add_development_dependency 'simplecov', '0.8.2' if RUBY_VERSION =~ /1.9/
s.add_development_dependency 'rake'
s.add_runtime_dependency 'logging', '1.8.2'
s.add_runtime_dependency 'listen', '1.3.1'
end