Sha256: 67acc2896f1061de6d0a8c16304084b637f426b70843998ec754f4f544909e2f
Contents?: true
Size: 896 Bytes
Versions: 1
Compression:
Stored size: 896 Bytes
Contents
require 'rubygems' require 'rspec/core/rake_task' require "#{File.dirname(__FILE__)}/lib/r509/version" task :default => :spec RSpec::Core::RakeTask.new(:spec) # define a new spec with suppressed stack trace RSpec::Core::RakeTask.new(:ntspec) do |t| t.fail_on_error = false end namespace :gem do desc 'Build the gem' task :build do puts `yard` puts `gem build r509.gemspec` end desc 'Install gem' task :install do puts `gem install r509-#{R509::VERSION}.gem` end desc 'Uninstall gem' task :uninstall do puts `gem uninstall r509` end end desc "Open an irb session with the lib dir included" task :irb do $:.unshift File.expand_path("../../lib", __FILE__) $:.unshift File.expand_path("../", __FILE__) require 'r509' require 'irb' ARGV.clear IRB.start end desc 'Build yard documentation' task :yard do puts `yard` `open doc/index.html` end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
r509-0.10.0 | Rakefile |