Sha256: 0e457ea681ccc28f3daa34dc618e7d5f7680b5e49dac00185564b59efc95a180
Contents?: true
Size: 405 Bytes
Versions: 7
Compression:
Stored size: 405 Bytes
Contents
require 'bundler' require 'rake' require 'rspec/core/rake_task' require 'yard' task :default => :spec Bundler::GemHelper.install_tasks RSpec::Core::RakeTask.new(:spec) YARD::Rake::YardocTask.new do |t| t.files = %w( lib/maid/app.rb lib/maid/tools.rb lib/maid/numeric_extensions.rb ) t.options = %w(--no-private --markup markdown) end task :console do sh('irb -I lib -r maid') end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
maid-0.2.0 | Rakefile |
maid-0.2.0.rc.2 | Rakefile |
maid-0.2.0.rc.1 | Rakefile |
maid-0.2.0.beta.3 | Rakefile |
maid-0.2.0.beta.2 | Rakefile |
maid-0.2.0.beta.1 | Rakefile |
maid-0.2.0.alpha.1 | Rakefile |