-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnotifyor.gemspec
29 lines (23 loc) · 967 Bytes
/
notifyor.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
$:.push File.expand_path("../lib", __FILE__)
require "notifyor/version"
Gem::Specification.new do |s|
s.name = "notifyor"
s.version = Notifyor::VERSION
s.authors = ["Erwin Schens"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/ndea/notifyer"
s.summary = "Get realtime notifications on your desktop if something happens in your Rails app."
s.description = "Notifyer creates growl notifications on your desktop if something happens in your Rails app."
s.license = "MIT"
s.executables = ["notify_me"]
s.require_paths = ["lib"]
s.files = Dir["{app,config,db,lib,bin}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["spec/**/*"]
s.add_dependency 'redis'
s.add_dependency 'connection_pool'
s.add_dependency 'terminal-notifier'
s.add_dependency 'net-ssh'
s.add_dependency 'net-ssh-gateway'
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec", "~> 3.4.0"
end