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.7.0 Rakefile
muflax-0.6.1 Rakefile
muflax-0.6.0 Rakefile
muflax-0.5.5 Rakefile
muflax-0.5.3 Rakefile
muflax-0.5.2 Rakefile
muflax-0.5.1 Rakefile
muflax-0.5.0 Rakefile
muflax-0.4.2 Rakefile
muflax-0.4.1 Rakefile
muflax-0.4.0 Rakefile
muflax-0.3.23 Rakefile
muflax-0.3.22 Rakefile
muflax-0.3.21 Rakefile
muflax-0.3.20 Rakefile
muflax-0.3.19 Rakefile
muflax-0.3.18 Rakefile
muflax-0.3.17 Rakefile
muflax-0.3.16 Rakefile
muflax-0.3.14 Rakefile