Sha256: c35349a910d4be72363951c25c6e903f48df3833f1be28455d1b259f925323c6

Contents?: true

Size: 1.36 KB

Versions: 22

Compression:

Stored size: 1.36 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://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "tengine_support"
  gem.homepage = "http://github.com/tengine/tengine_support"
  gem.license = "MPL/LGPL"
  gem.summary = "tengine_support provides utility classes/modules which isn't included in active_support."
  gem.description = "tengine_support provides utility classes/modules which is not included in active_support. It doesn't depend on other tengine gems."
  gem.email = "tengine@nautilus-technologies.com"
  gem.authors = %w[saishu w-irie taigou totty hiroshinakao g-morita guemon aoetk hattori-at-nt t-yamada y-karashima akm]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :default => :spec
task :test => :spec # for rubygems-test

require 'yard'
YARD::Rake::YardocTask.new

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
tengine_support-0.3.24 Rakefile
tengine_support-0.3.22 Rakefile
tengine_support-0.3.21 Rakefile
tengine_support-0.3.20 Rakefile
tengine_support-0.3.19 Rakefile
tengine_support-0.3.18 Rakefile
tengine_support-0.3.17 Rakefile
tengine_support-0.3.16 Rakefile
tengine_support-0.3.15 Rakefile
tengine_support-0.3.14 Rakefile
tengine_support-0.3.13 Rakefile
tengine_support-0.3.12 Rakefile
tengine_support-0.3.11 Rakefile
tengine_support-0.3.10 Rakefile
tengine_support-0.3.9 Rakefile
tengine_support-0.3.8 Rakefile
tengine_support-0.3.7 Rakefile
tengine_support-0.3.6 Rakefile
tengine_support-0.3.5 Rakefile
tengine_support-0.3.4 Rakefile