55
66Gem ::Specification . new do |s |
77 s . name = %q{git-commit-notifier}
8- s . version = "0.8.0 "
8+ s . version = "0.8.1 "
99
1010 s . required_rubygems_version = Gem ::Requirement . new ( ">= 0" ) if s . respond_to? :required_rubygems_version=
1111 s . authors = [ "Bodo Tasche" ]
12- s . date = %q{2010-08-06 }
12+ s . date = %q{2010-11-03 }
1313 s . default_executable = %q{git-commit-notifier}
1414 s . description = %q{This git commit notifier sends html mails with nice diffs for every changed file.}
15- s . email = %q{bodo@wannawork .de}
15+ s . email = %q{bodo@bitboxer .de}
1616 s . executables = [ "git-commit-notifier" ]
1717 s . extra_rdoc_files = [
1818 "LICENSE" ,
@@ -32,35 +32,43 @@ Gem::Specification.new do |s|
3232 "lib/diff_to_html.rb" ,
3333 "lib/emailer.rb" ,
3434 "lib/git.rb" ,
35+ "lib/logger.rb" ,
3536 "lib/result_processor.rb" ,
37+ "spec/fixtures/existing_file_one_line.txt" ,
38+ "spec/fixtures/git-notifier-group-email-by-push.yml" ,
39+ "spec/fixtures/git-notifier-ignore-merge.yml" ,
40+ "spec/fixtures/git-notifier-with-merge.yml" ,
41+ "spec/fixtures/git_log" ,
42+ "spec/fixtures/git_show_055850e7d925110322b8db4e17c3b840d76e144c" ,
43+ "spec/fixtures/git_show_51b986619d88f7ba98be7d271188785cbbb541a0" ,
44+ "spec/fixtures/git_show_a4629e707d80a5769f7a71ca6ed9471015e14dc9" ,
45+ "spec/fixtures/git_show_dce6ade4cdc2833b53bd600ef10f9bce83c7102d" ,
46+ "spec/fixtures/git_show_e28ad77bba0574241e6eb64dfd0c1291b221effe" ,
47+ "spec/fixtures/git_show_ff037a73fc1094455e7bbf506171a3f3cf873ae6" ,
48+ "spec/fixtures/new_file_one_line.txt" ,
49+ "spec/lib/commit_hook_spec.rb" ,
50+ "spec/lib/diff_to_html_spec.rb" ,
51+ "spec/lib/emailer_spec.rb" ,
52+ "spec/lib/git_spec.rb" ,
53+ "spec/lib/logger_spec.rb" ,
54+ "spec/lib/result_processor_spec.rb" ,
55+ "spec/spec_helper.rb" ,
3656 "template/email.html.erb" ,
37- "template/styles.css" ,
38- "test/fixtures/existing_file_one_line.txt" ,
39- "test/fixtures/git-notifier-group-email-by-push.yml" ,
40- "test/fixtures/git-notifier-ignore-merge.yml" ,
41- "test/fixtures/git-notifier-with-merge.yml" ,
42- "test/fixtures/git_log" ,
43- "test/fixtures/git_show_055850e7d925110322b8db4e17c3b840d76e144c" ,
44- "test/fixtures/git_show_51b986619d88f7ba98be7d271188785cbbb541a0" ,
45- "test/fixtures/git_show_a4629e707d80a5769f7a71ca6ed9471015e14dc9" ,
46- "test/fixtures/git_show_dce6ade4cdc2833b53bd600ef10f9bce83c7102d" ,
47- "test/fixtures/git_show_e28ad77bba0574241e6eb64dfd0c1291b221effe" ,
48- "test/fixtures/new_file_one_line.txt" ,
49- "test/test_helper.rb" ,
50- "test/unit/test_commit_hook.rb" ,
51- "test/unit/test_diff_to_html.rb" ,
52- "test/unit/test_result_processor.rb"
57+ "template/styles.css"
5358 ]
54- s . homepage = %q{http://github.com/bodo /git-commit-notifier}
59+ s . homepage = %q{http://github.com/bitboxer /git-commit-notifier}
5560 s . rdoc_options = [ "--charset=UTF-8" ]
5661 s . require_paths = [ "lib" ]
5762 s . rubygems_version = %q{1.3.7}
5863 s . summary = %q{Sends git commit messages with diffs}
5964 s . test_files = [
60- "test/test_helper.rb" ,
61- "test/unit/test_commit_hook.rb" ,
62- "test/unit/test_diff_to_html.rb" ,
63- "test/unit/test_result_processor.rb"
65+ "spec/lib/commit_hook_spec.rb" ,
66+ "spec/lib/diff_to_html_spec.rb" ,
67+ "spec/lib/emailer_spec.rb" ,
68+ "spec/lib/git_spec.rb" ,
69+ "spec/lib/logger_spec.rb" ,
70+ "spec/lib/result_processor_spec.rb" ,
71+ "spec/spec_helper.rb"
6472 ]
6573
6674 if s . respond_to? :specification_version then
@@ -72,17 +80,35 @@ Gem::Specification.new do |s|
7280 s . add_runtime_dependency ( %q<mocha> , [ ">= 0" ] )
7381 s . add_runtime_dependency ( %q<hpricot> , [ ">= 0" ] )
7482 s . add_runtime_dependency ( %q<tamtam> , [ ">= 0" ] )
83+ s . add_development_dependency ( %q<rspec-core> , [ ">= 0" ] )
84+ s . add_development_dependency ( %q<rspec-expectations> , [ ">= 0" ] )
85+ s . add_development_dependency ( %q<rr> , [ ">= 0" ] )
86+ s . add_development_dependency ( %q<faker> , [ ">= 0" ] )
87+ s . add_development_dependency ( %q<rcov> , [ ">= 0" ] )
88+ s . add_development_dependency ( %q<metric_fu> , [ ">= 0" ] )
7589 else
7690 s . add_dependency ( %q<diff-lcs> , [ ">= 0" ] )
7791 s . add_dependency ( %q<mocha> , [ ">= 0" ] )
7892 s . add_dependency ( %q<hpricot> , [ ">= 0" ] )
7993 s . add_dependency ( %q<tamtam> , [ ">= 0" ] )
94+ s . add_dependency ( %q<rspec-core> , [ ">= 0" ] )
95+ s . add_dependency ( %q<rspec-expectations> , [ ">= 0" ] )
96+ s . add_dependency ( %q<rr> , [ ">= 0" ] )
97+ s . add_dependency ( %q<faker> , [ ">= 0" ] )
98+ s . add_dependency ( %q<rcov> , [ ">= 0" ] )
99+ s . add_dependency ( %q<metric_fu> , [ ">= 0" ] )
80100 end
81101 else
82102 s . add_dependency ( %q<diff-lcs> , [ ">= 0" ] )
83103 s . add_dependency ( %q<mocha> , [ ">= 0" ] )
84104 s . add_dependency ( %q<hpricot> , [ ">= 0" ] )
85105 s . add_dependency ( %q<tamtam> , [ ">= 0" ] )
106+ s . add_dependency ( %q<rspec-core> , [ ">= 0" ] )
107+ s . add_dependency ( %q<rspec-expectations> , [ ">= 0" ] )
108+ s . add_dependency ( %q<rr> , [ ">= 0" ] )
109+ s . add_dependency ( %q<faker> , [ ">= 0" ] )
110+ s . add_dependency ( %q<rcov> , [ ">= 0" ] )
111+ s . add_dependency ( %q<metric_fu> , [ ">= 0" ] )
86112 end
87113end
88114
0 commit comments