forked from git-commit-notifier/git-commit-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit-commit-notifier.gemspec
42 lines (36 loc) · 1.73 KB
/
git-commit-notifier.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
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{git-commit-notifier}
s.version = IO.read('VERSION').chomp
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Bodo Tasche", "Akzhan Abdulin"]
s.date = Time.now.strftime('%Y-%m-%d')
s.description = %q{This git commit notifier sends html mails with nice diffs for every changed file.}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
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.homepage = %q{http://git-commit-notifier.github.com/}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{Sends git commit messages with diffs}
s.specification_version = 3
s.add_runtime_dependency(%q<diff-lcs>, ["~> 1.1.2"])
s.add_runtime_dependency(%q<nntp>, ["~> 1.0"])
s.add_runtime_dependency(%q<premailer>, ["~> 1.7", ">= 1.7.1", "!= 1.7.2"])
s.add_runtime_dependency(%q<nokogiri>, ["~> 1.4"])
s.add_runtime_dependency(%q<yajl-ruby>, ["~> 1.0"])
s.add_development_dependency(%q<rake>, ["~> 0.8", "!= 0.9.0"])
s.add_development_dependency(%q<bundler>, ["~> 1.0", ">=1.0.10"])
s.add_development_dependency(%q<code-cleaner>, [">= 0"])
s.add_development_dependency(%q<rspec-core>, [">= 0"])
s.add_development_dependency(%q<rspec-expectations>, [">= 0"])
s.add_development_dependency(%q<rr>, ["~> 1.0"])
s.add_development_dependency(%q<faker>, ["~> 1.1.2"])
s.add_development_dependency(%q<yard>, ["~> 0.8.1"])
s.add_development_dependency(%q<redcarpet>, ["~> 2.1"])
end