Sha256: 7f7ba8ab9110f6445579d686f050c959478805c699d066cd181151b8b275443c

Contents?: true

Size: 297 Bytes

Versions: 4

Compression:

Stored size: 297 Bytes

Contents

require "bundler/gem_tasks"
require "rspec/core/rake_task"

task :default => :spec

desc "Run all specs"
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

desc "Console with library"
task :console do
  sh "pry -I lib -r bundler/setup -r findable"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
findable-0.1.3 Rakefile
findable-0.1.2 Rakefile
findable-0.1.1 Rakefile
findable-0.1.0 Rakefile