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.3.13 Rakefile
muflax-0.3.12 Rakefile
muflax-0.3.11 Rakefile
muflax-0.3.10 Rakefile
muflax-0.3.9 Rakefile
muflax-0.3.8 Rakefile
muflax-0.3.7 Rakefile
muflax-0.3.6 Rakefile
muflax-0.3.5 Rakefile
muflax-0.3.4 Rakefile
muflax-0.3.3 Rakefile
muflax-0.3.2 Rakefile
muflax-0.3.1 Rakefile
muflax-0.3.0 Rakefile
muflax-0.2.6 Rakefile
muflax-0.2.5 Rakefile
muflax-0.2.4 Rakefile
muflax-0.2.3 Rakefile
muflax-0.2.2 Rakefile
muflax-0.2.1 Rakefile