Rakefile in maestrano-rails-0.9.3 vs Rakefile in maestrano-rails-0.9.4
- old
+ new
@@ -18,21 +18,31 @@
rdoc.options << '--line-numbers'
rdoc.rdoc_files.include('README.rdoc')
rdoc.rdoc_files.include('lib/**/*.rb')
end
-
-
-
-Bundler::GemHelper.install_tasks
-
require 'rake/testtask'
-
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
t.verbose = false
end
+require 'jeweler'
+Jeweler::Tasks.new do |gem|
+ gem.name = "maestrano-rails"
+ gem.homepage = "https://maestrano.com"
+ gem.license = "MIT"
+ gem.summary = "Rails plugin for Maestrano API"
+ gem.description = "Maestrano is the next generation marketplace for SME applications. See https://maestrano.com for details."
+
+ gem.email = ["arnaud.lachaume@maestrano.com"]
+ gem.authors = ["Arnaud Lachaume"]
-task :default => :test
+ gem.files = FileList['app/**/*.rb', 'lib/**/*.rb', 'Gemfile*', 'LICENSE', 'README.md', 'Rakefile', 'maestrano-rails.gemspec']
+ gem.test_files = FileList['test/**/*']
+end
+Jeweler::RubygemsDotOrgTasks.new
+
+
+task :default => :test
\ No newline at end of file