Sha256: f370714d295967c2d3d3e9f1c004f2ab3954aac37c4f30d8defc1fa616de029c

Contents?: true

Size: 441 Bytes

Versions: 43

Compression:

Stored size: 441 Bytes

Contents

desc "open a pry session preloaded with this library"
task :pry do
  sh "pry -Ilib -rmuflax"
end

desc "build a gem from the gemspec"
task :build do
  sh "mkdir -p pkg"
  sh "gem build muflax.gemspec"
  sh "mv muflax-*.gem pkg/"
end

desc "clean pkg"
task :clean do
  sh "rm -f pkg/*"
end

desc "install a gem"
task :install => [:clean, :build] do
  sh "gem install -l --no-format-executable pkg/muflax-*.gem"
end

task :default => :install

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
muflax-0.2.0 Rakefile
muflax-0.1.35 Rakefile
muflax-0.1.34 Rakefile