Sha256: e6389f8ae7e79d03d89494804cbad0ba6d07d83dbe8ba7f647fc47759eecad1e

Contents?: true

Size: 1.5 KB

Versions: 12

Compression:

Stored size: 1.5 KB

Contents

# GEM TASK
require 'find'
require 'rubygems'
require 'rubygems/package'

# Unfortunately Rake::GemPackageTest cannot deal with files that are generated
# by Rake targets. So we have to write our own packaging task.
desc 'Build the gem package'
task :gem => [:clobber] do
  Rake::Task[:changelog].invoke
  Rake::Task[:permissions].invoke

  load 'fit4ruby.gemspec';

  # Build the gem file according to the loaded spec.
  if RUBY_VERSION >= "2.0.0"
    Gem::Package.build(GEM_SPEC)
  else
    Gem::Builder.new(GEM_SPEC).build
  end
  pkgBase = "#{GEM_SPEC.name}-#{GEM_SPEC.version}"
  # Create a pkg directory if it doesn't exist already.
  FileUtils.mkdir_p('pkg')
  # Move the gem file into the pkg directory.
  verbose(true) { FileUtils.mv("#{pkgBase}.gem", "pkg/#{pkgBase}.gem")}
end

desc 'Make sure all files and directories are readable'
task :permissions do
  # Find the bin and test directories relative to this file.
  baseDir = File.expand_path('..', File.dirname(__FILE__))

  execs = Dir.glob("#{baseDir}/bin/*") +
          Dir.glob("#{baseDir}/test/**/genrefs")

  Find.find(baseDir) do |f|
    # Ignore the whoke pkg directory as it may contain links to the other
    # directories.
    next if Regexp.new("#{baseDir}/pkg/*").match(f)

    FileUtils.chmod_R((FileTest.directory?(f) ||
                       execs.include?(f) ? 0755 : 0644), f)
  end
end

desc 'Run all tests and build scripts and create the gem package'
task :release do
  Rake::Task[:test].invoke
  Rake::Task[:yard].invoke
  Rake::Task[:gem].invoke
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
fit4ruby-0.0.12 tasks/gem.rake
fit4ruby-0.0.11 tasks/gem.rake
fit4ruby-0.0.10 tasks/gem.rake
fit4ruby-0.0.9 tasks/gem.rake
fit4ruby-0.0.8 tasks/gem.rake
fit4ruby-0.0.7 tasks/gem.rake
fit4ruby-0.0.6 tasks/gem.rake
fit4ruby-0.0.5 tasks/gem.rake
fit4ruby-0.0.4 tasks/gem.rake
fit4ruby-0.0.3 tasks/gem.rake
fit4ruby-0.0.2 tasks/gem.rake
fit4ruby-0.0.1 tasks/gem.rake