Sha256: 3f1447011f9054e43fa11b0c676005b87c6da5b8bbe6341438ab7cae0de1b151

Contents?: true

Size: 463 Bytes

Versions: 19

Compression:

Stored size: 463 Bytes

Contents

gem_version = File.read("VERSION").strip

task :build do
  system "gem build .gemspec"
end

task :release => :build do
  system "gem push epitools-#{gem_version}.gem"
end

task :install => :build do
  system "gem install --local epitools-#{gem_version}.gem"
end

task :pry do
  system "pry --gem"
end

task :spec do
  cmd = %w[rspec -fd -c spec]

  if system *%w[which rescue]
    system *(["rescue"]+cmd)
  else
    system *cmd
  end
end

task :default => :spec

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
epitools-0.5.134 Rakefile
epitools-0.5.133 Rakefile
epitools-0.5.131 Rakefile
epitools-0.5.130 Rakefile
epitools-0.5.129 Rakefile
epitools-0.5.128 Rakefile
epitools-0.5.126 Rakefile
epitools-0.5.125 Rakefile
epitools-0.5.124 Rakefile
epitools-0.5.123 Rakefile
epitools-0.5.122 Rakefile
epitools-0.5.121 Rakefile
epitools-0.5.119 Rakefile
epitools-0.5.118 Rakefile
epitools-0.5.116 Rakefile
epitools-0.5.115 Rakefile
epitools-0.5.114 Rakefile
epitools-0.5.113 Rakefile
epitools-0.5.112 Rakefile