Sha256: db99caa76eaf4be3e7e3f411c0718fedbe5b2008b4030640d030ae2c8beb8a64

Contents?: true

Size: 832 Bytes

Versions: 12

Compression:

Stored size: 832 Bytes

Contents

require "bundler/gem_tasks"
require "fileutils"

include FileUtils

require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec)

require "rdoc/task"
RDoc::Task.new do |rdoc|
  rdoc.main = "README.rdoc"
  rdoc.rdoc_files.include("README.rdoc", "lib/*.rb")
end

def sh!(command)
  sh command do |ok,res|
    fail "Problem running '#{command}'" unless ok
  end
end

task :publish_rdoc do
  rm_rf "tmp"
  mkdir_p "tmp"
  chdir "tmp" do
    sh! "git clone git@github.com:stitchfix/immutable-struct.git"
    chdir "immutable-struct" do
      sh! "git checkout gh-pages"
      `rm -rf *`
    end
  end
  Rake::Task["rdoc"].invoke
  `cp -R html/* tmp/immutable-struct`
  chdir "tmp/immutable-struct" do
    sh! "git add -A ."
    sh! "git commit -m 'updated rdoc'"
    sh! "git push origin gh-pages"
  end
end

task :default => :spec


Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
immutable-struct-2.4.1 Rakefile
immutable-struct-2.4.0 Rakefile
immutable-struct-2.3.0 Rakefile
immutable-struct-2.3.0.rc1 Rakefile
immutable-struct-2.2.3 Rakefile
immutable-struct-2.2.2 Rakefile
immutable-struct-2.2.1 Rakefile
immutable-struct-2.2.0 Rakefile
immutable-struct-2.1.2 Rakefile
immutable-struct-2.1.1 Rakefile
immutable-struct-2.1.0 Rakefile
immutable-struct-2.0.0 Rakefile