forked from samg/diffy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
39 lines (32 loc) · 1.09 KB
/
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
31
32
33
34
35
36
37
38
require 'spec/rake/spectask'
require 'rake/rdoctask'
require 'rake/gempackagetask'
task :default => :spec
desc "Run all specs in spec directory"
Spec::Rake::SpecTask.new(:spec) do |t|
t.spec_files = FileList['spec/**/*_spec.rb']
t.spec_opts = %w{--color --format profile}
end
Rake::RDocTask.new do |rd|
rd.main = "README"
rd.rdoc_dir = 'doc'
rd.rdoc_files.include("README", "**/*.rb")
end
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = %q{diffy}
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Sam Goldstein"]
s.date = %q{2010-06-28}
s.description = %q{Convenient diffing in ruby}
s.has_rdoc = true
s.homepage = "http://github.com/samg/diffy/tree/master"
s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
s.require_paths = ["lib"]
s.summary = %q{A convenient way to diff string in ruby}
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end