-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathblastr.gemspec
22 lines (19 loc) · 901 Bytes
/
blastr.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require File.expand_path("../lib/version.rb", __FILE__)
Gem::Specification.new do |s|
s.name = "blastr"
s.version = Blastr::VERSION
s.authors = ["Lasse Koskela"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/lkoskela/blastr"
s.summary = %q{Blastr is an audible commit radiator}
s.description = %q{Blastr observes a version control repository for commits and makes audible announcements out of the commit messages.}
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.require_paths = ["lib"]
s.add_development_dependency "mocha"
s.add_development_dependency "rake"
s.add_runtime_dependency "git"
end