Sha256: 72e49e7ede72dadc3ea0e13f65974f92cb8bb13a6faab2985cb22cc45a0987c0

Contents?: true

Size: 364 Bytes

Versions: 27

Compression:

Stored size: 364 Bytes

Contents

# encoding: utf-8
require "bundler/gem_tasks"

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
    spec.pattern = FileList['spec/**/*_spec.rb']
end
task :default => :spec

desc 'Open an irb session preloaded with the gem library'
task :console do
    sh 'irb -rubygems -I lib -r frontkick.rb'
end
task :c => :console

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
frontkick-0.3.1 Rakefile
frontkick-0.2.1 Rakefile
frontkick-0.2.0 Rakefile
frontkick-0.1.0 Rakefile
frontkick-0.0.3 Rakefile
frontkick-0.0.2 Rakefile
frontkick-0.0.1 Rakefile