-
Notifications
You must be signed in to change notification settings - Fork 23
/
Rakefile
37 lines (32 loc) · 1.08 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
require 'rake'
require 'rake/testtask'
require 'rdoc/task'
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "open_gem"
s.summary = "Gem Command to easily open a ruby gem with the editor of your choice."
s.description = <<-DESC
Open a gem's source directory with either the default editor, or a specified command.
DESC
s.email = "[email protected]"
s.homepage = "http://github.com/adamsanderson/open_gem"
s.rubyforge_project = "opengem"
s.authors = ["Adam Sanderson"]
s.has_rdoc = false
s.files = FileList["[A-Z]*", "{bin,lib,test}/**/*"]
s.required_rubygems_version = ">= 1.8.0"
s.add_dependency 'launchy', '~> 2.0'
# Testing
s.test_files = FileList["test/**/*_test.rb"]
s.add_development_dependency 'mocha', '~> 0.9.5'
end
rescue LoadError
puts "Jeweler not available. Install it for jeweler-related tasks with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
Rake::TestTask.new do |t|
t.libs << 'lib'
t.pattern = 'test/**/*_test.rb'
t.verbose = false
end
task :default => :test