Rakefile in totally_lazy-0.0.20 vs Rakefile in totally_lazy-0.1.0
- old
+ new
@@ -4,59 +4,44 @@
require 'bundler'
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
$stderr.puts e.message
- $stderr.puts "Run `bundle install` to install missing gems"
+ $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
+version = File.exist?('VERSION') ? File.read('VERSION') : ""
+
+require 'jeweler'
+Jeweler::Tasks.new do |gem|
+ gem.name = 'totally_lazy'
+ gem.version = version
+ gem.homepage = 'http://github.com/raymanoz/totally_lazy'
+ gem.license = 'Apache 2.0'
+ gem.summary = 'A lazy FP library for Ruby'
+ gem.description = 'Port of java functional library totally lazy to ruby'
+ gem.email = 'rbarlow@raymanoz.com'
+ gem.authors = ['Raymond Barlow']
+end
+Jeweler::RubygemsDotOrgTasks.new
+
+
desc 'rebuild gem'
task :re do
- system('gem uninstall totally_lazy && rake build && gem install -l pkg/totally_lazy-' + File.read('VERSION') + '.gem')
+ system("gem uninstall totally_lazy && rake build && gem install -l pkg/totally_lazy-#{version}.gem")
end
-