-
Notifications
You must be signed in to change notification settings - Fork 9
/
githubwatcher.gemspec
24 lines (21 loc) · 976 Bytes
/
githubwatcher.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "githubwatcher/version"
Gem::Specification.new do |s|
s.name = "githubwatcher"
s.version = Githubwatcher::VERSION
s.authors = ["Davide D'Agostino"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/DAddYE/githubwatcher"
s.summary = "Github Growl Watcher, watch any project and receive growl notification"
s.description = "Github Growl Watcher, watch any project and receive growl notification for updates, new watchers, forks and issues"
s.rubyforge_project = "githubwatcher"
s.files = Dir["**/*"].reject { |f| File.directory?(f) || f == "Gemfile.lock" }
s.test_files = []
s.executables = %w[githubwatcher]
s.require_paths = %w[lib]
s.add_dependency 'yajl-ruby', '~>1.1.0'
s.add_dependency 'httparty', '~>0.8.1'
s.add_dependency 'notifier', '~>0.1.4'
s.add_dependency 'foreverb', '~>0.3.0'
end