Sha256: 22b8f37045d6e52b49cc398d0c4616c116e82ed8e15ec67104e1ba46a89b69ed

Contents?: true

Size: 1.25 KB

Versions: 11

Compression:

Stored size: 1.25 KB

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Maestrano-rails'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

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"]

  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

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
maestrano-rails-0.15.4 Rakefile
maestrano-rails-0.15.2 Rakefile
maestrano-rails-0.15.1 Rakefile
maestrano-rails-0.15.0 Rakefile
maestrano-rails-0.14.0 Rakefile
maestrano-rails-0.13.0 Rakefile
maestrano-rails-0.12.0 Rakefile
maestrano-rails-0.11.0 Rakefile
maestrano-rails-0.10.0 Rakefile
maestrano-rails-0.9.5 Rakefile
maestrano-rails-0.9.4 Rakefile