Sha256: d549c1701634d9b526ed8699b2ae8420d77e6f515ced1c702db29f1b0e5bbd71
Contents?: true
Size: 815 Bytes
Versions: 2
Compression:
Stored size: 815 Bytes
Contents
require 'bundler' Bundler::GemHelper.install_tasks require 'rspec/core/rake_task' require 'ci/reporter/rake/rspec' # Rake tasks from https://github.com/mojombo/rakegem/blob/master/Rakefile # Helper Functions def name @name ||= Dir['*.gemspec'].first.split('.').first end def version line = File.read("lib/#{name}/version.rb")[/^\s*VERSION\s*=\s*.*/] line.match(/.*VERSION\s*=\s*['"](.*)['"]/)[1] end # Standard tasks RSpec::Core::RakeTask.new(:spec) task :test => :spec task :default => :spec require 'rdoc/task' Rake::RDocTask.new do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = "#{name} #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end desc "Open an irb session preloaded with this library" task :console do sh "irb -rubygems -r ./lib/#{name}.rb" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jbox-gitolite-1.1.11 | Rakefile |
jbox-gitolite-1.1.10 | Rakefile |