Sha256: 3d6e7ce30087c2ac1c5f58bb5dce52bbd51f55d85df380257a97039af6ad9af1
Contents?: true
Size: 1.17 KB
Versions: 8
Compression:
Stored size: 1.17 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 = 'pierre.berard@maestrano.com' gem.authors = ['Pierre Berard'] # 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
8 entries across 8 versions & 1 rubygems