Sha256: effc145f270c033f8672117c8c3c9fa7b9d7f0f9ac0cbb87f4b89fe7124fe30f
Contents?: true
Size: 623 Bytes
Versions: 24
Compression:
Stored size: 623 Bytes
Contents
require 'rubygems' require "rake" require File.expand_path(File.join(File.dirname(__FILE__), 'lib', 'mandy')) require 'spec/rake/spectask' task :default => :spec Spec::Rake::SpecTask.new(:spec) do |t| t.spec_files = FileList['spec/lib/**/*_spec.rb'] t.spec_opts = %w{-f s -c -L mtime} end namespace :gem do task :build do `gem build mandy.gemspec` `mkdir pkg; mv mandy-*.gem pkg/` end task :install => :build do `sudo gem install pkg/mandy-*.gem --no-rdoc --no-ri` end task :push => :build do `gem push pkg/mandy-#{File.read(File.join(File.dirname(__FILE__), 'VERSION'))}.gem` end end
Version data entries
24 entries across 24 versions & 1 rubygems