Sha256: 834731195ae985a2b49663f6b7ee47d0bac806dcc493e968c6d12d3d18f20ef9

Contents?: true

Size: 459 Bytes

Versions: 16

Compression:

Stored size: 459 Bytes

Contents

# -*- coding: utf-8; -*-
require "bundler/gem_tasks"

begin
  require 'rspec/core/rake_task'
  RSpec::Core::RakeTask.new :spec do |spec|
    spec.pattern = FileList['spec/**/*_spec.rb']
  end
  task default: :spec
rescue LoadError, NameError
  # OK, they can be absent on non-development mode.
end

desc "irb console"
task :console do
  require_relative "lib/alerty"
  require 'irb'
  require 'irb/completion'
  ARGV.clear
  IRB.start
end
task :c => :console

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
alerty-0.4.0 Rakefile
alerty-0.3.0 Rakefile
alerty-0.2.3 Rakefile
alerty-0.2.2 Rakefile
alerty-0.2.1 Rakefile
alerty-0.2.0 Rakefile
alerty-0.1.1 Rakefile
alerty-0.1.0 Rakefile
alerty-0.0.9 Rakefile
alerty-0.0.8 Rakefile
alerty-0.0.7 Rakefile
alerty-0.0.6 Rakefile
alerty-0.0.5 Rakefile
alerty-0.0.4 Rakefile
alerty-0.0.2 Rakefile
alerty-0.0.1 Rakefile