Sha256: 69f75a0c68cb9624c47a67857818cedd7db86ceaee954acf5f5c7cf4d3f44659

Contents?: true

Size: 1.19 KB

Versions: 10

Compression:

Stored size: 1.19 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 = 'maestrano-connector-rails'
  gem.homepage = 'http://github.com/maestrano/maestrano-connector-rails'
  gem.license = 'MIT'
  gem.summary = 'Rails framework to build connector with Maestrano'
  gem.description = 'Maestrano is the next generation marketplace for SME applications. See https://maestrano.com for details.'
  gem.email = 'developers@maestrano.com'
  gem.authors = ['Maestrano', 'Pierre Berard', 'Marco Bagnasco']
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__)
load 'rails/tasks/engine.rake'

require 'rspec/core'
require 'rspec/core/rake_task'

desc 'Run all specs in spec directory (excluding plugin specs)'
RSpec::Core::RakeTask.new(spec: 'app:db:test:prepare')

task default: :spec

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
maestrano-connector-rails-2.0.0.pre.RC8 Rakefile
maestrano-connector-rails-1.5.0 Rakefile
maestrano-connector-rails-2.0.0.pre.RC7 Rakefile
maestrano-connector-rails-2.0.0.pre.RC6 Rakefile
maestrano-connector-rails-2.0.0.pre.RC5 Rakefile
maestrano-connector-rails-2.0.0.pre.RC4 Rakefile
maestrano-connector-rails-2.0.0.pre.RC3 Rakefile
maestrano-connector-rails-2.0.0.pre.RC2 Rakefile
maestrano-connector-rails-2.0.0.pre.RC1 Rakefile
maestrano-connector-rails-1.4.0 Rakefile