Sha256: 4e45dd990ed4edbeff9099249968b5daa3e7342d0a07a865b978eaa60d1a8476
Contents?: true
Size: 1.34 KB
Versions: 4
Compression:
Stored size: 1.34 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
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
totally_lazy-0.0.4 | Rakefile |
totally_lazy-0.0.3 | Rakefile |
totally_lazy-0.0.2 | Rakefile |
totally_lazy-0.0.1 | Rakefile |