Sha256: 6bd6acef225642803acd291e133706a730ad905256820d98e91d1d9e2854380d

Contents?: true

Size: 1.57 KB

Versions: 15

Compression:

Stored size: 1.57 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
  gem.name = "totally_lazy"
  gem.homepage = "http://github.com/kingsleyh/totally_lazy"
  gem.license = "MIT"
  gem.summary = %Q{Port of java functional library totally lazy to ruby}
  gem.description = %Q{Port of java functional library totally lazy to ruby}
  gem.email = "kingsleyhendrickse@me.com"
  gem.authors = ["Kingsley Hendrickse"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

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

desc "Code coverage detail"
task :simplecov do
  ENV['COVERAGE'] = "true"
  Rake::Task['spec'].execute
end

task :default => :spec

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "totally_lazy #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

desc 'run rspec guard'
task :guard do
  system('bundle exec guard')
end

desc 'rebuild gem'
task :re do
  system('gem uninstall totally_lazy && rake build && gem install -l pkg/totally_lazy-' + File.read('VERSION') + '.gem')
end


Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
totally_lazy-0.0.20 Rakefile
totally_lazy-0.0.19 Rakefile
totally_lazy-0.0.18 Rakefile
totally_lazy-0.0.16 Rakefile
totally_lazy-0.0.15 Rakefile
totally_lazy-0.0.14 Rakefile
totally_lazy-0.0.13 Rakefile
totally_lazy-0.0.12 Rakefile
totally_lazy-0.0.11 Rakefile
totally_lazy-0.0.10 Rakefile
totally_lazy-0.0.9 Rakefile
totally_lazy-0.0.8 Rakefile
totally_lazy-0.0.7 Rakefile
totally_lazy-0.0.6 Rakefile
totally_lazy-0.0.5 Rakefile