forked from therubymug/hitch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
30 lines (27 loc) · 994 Bytes
/
Rakefile
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
require 'spec/rake/spectask'
task :default => :spec
desc "Run specs"
Spec::Rake::SpecTask.new do |t|
t.spec_files = FileList['spec/**/*_spec.rb']
t.spec_opts = %w(-ps --color)
end
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = %q{hitch}
gemspec.version = '0.6.0'
gemspec.summary = %q{Hitch allows developers to be properly credited when Pair Programming and using Git.}
gemspec.email = %q{[email protected]}
gemspec.homepage = %q{http://github.com/therubymug/hitch}
gemspec.has_rdoc = false
gemspec.authors = ["Rogelio J. Samour"]
gemspec.files = %w( README.rdoc Rakefile ) + Dir["{bin,lib}/**/*"].sort
gemspec.extra_rdoc_files = ["README.rdoc"]
gemspec.executables = ["hitch"]
gemspec.add_development_dependency "rspec", ">= 1.3.0"
gemspec.add_dependency('highline', '>= 1.5.0')
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end