Rakefile in totally_lazy-0.1.0 vs Rakefile in totally_lazy-0.1.9
- old
+ new
@@ -22,24 +22,24 @@
desc 'run rspec guard'
task :guard do
system('bundle exec guard')
end
-version = File.exist?('VERSION') ? File.read('VERSION') : ""
+version = "#{File.read('VERSION').to_s}.#{ENV['BUILD_NUMBER'].to_s}"
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.description = 'Port of java functional library totallylazy to ruby'
gem.email = 'rbarlow@raymanoz.com'
- gem.authors = ['Raymond Barlow']
+ gem.authors = ['Raymond Barlow', 'Kingsley Hendrickse']
+ gem.required_ruby_version = '2.0.0'
end
Jeweler::RubygemsDotOrgTasks.new
-
desc 'rebuild gem'
task :re do
system("gem uninstall totally_lazy && rake build && gem install -l pkg/totally_lazy-#{version}.gem")
end