Sha256: 1ea91de5e155480254f209638fb4327cf82cb7963e9c7bff8e64078914305e34
Contents?: true
Size: 317 Bytes
Versions: 6
Compression:
Stored size: 317 Bytes
Contents
require "bundler/gem_tasks" require "rspec/core/rake_task" RSpec::Core::RakeTask.new(:spec) def run *cmd sh(cmd.join(" ")) end task :console do |task| cmd = [ 'irb', "-r './lib/nyaplot.rb'" ] run *cmd end task :pry do |task| cmd = [ 'pry', "-r './lib/nyaplot.rb'" ] run *cmd end task :default => :spec
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
nyaplot-0.1.6 | Rakefile |
nyaplot-0.1.5 | Rakefile |
nyaplot-0.1.4 | Rakefile |
nyaplot-0.2.0.rc1 | Rakefile |
nyaplot-0.1.3 | Rakefile |
nyaplot-0.1.2 | Rakefile |