diff --git a/Rakefile b/Rakefile index 1a9b2d79..796b4036 100644 --- a/Rakefile +++ b/Rakefile @@ -5,8 +5,6 @@ require 'appraisal' require 'erb' require_relative 'lib/shoulda/matchers/version' -CURRENT_VERSION = Shoulda::Matchers::VERSION - RSpec::Core::RakeTask.new('spec:unit') do |t| t.ruby_opts = '-w -r ./spec/report_warnings' t.pattern = "spec/unit/**/*_spec.rb" @@ -34,45 +32,57 @@ task :appraise do exec 'appraisal install && appraisal rake' end +CURRENT_VERSION = Shoulda::Matchers::VERSION GH_PAGES_DIR = '.gh-pages' +# GITHUB_USERNAME = 'thoughtbot' +GITHUB_USERNAME = 'mcmire' namespace :docs do file GH_PAGES_DIR do - sh "git clone git@github.com:thoughtbot/shoulda-matchers.git #{GH_PAGES_DIR} --branch gh-pages" + create_reference_to_gh_pages_branch end task :setup => GH_PAGES_DIR do - within_gh_pages do - sh 'git fetch origin' - sh 'git reset --hard origin/gh-pages' - end + reset_repo_directory end desc 'Generate docs for a particular version' task :generate, [:version, :latest_version] => :setup do |t, args| - generate_docs(args.version, latest_version: latest_version) + generate_docs_for(args.version, latest_version: latest_version) end desc 'Generate docs for a particular version and push them to GitHub' task :publish, [:version, :latest_version] => :setup do |t, args| - generate_docs(args.version, latest_version: latest_version) - publish_docs(args.version, latest_version: latest_version) + generate_docs_for(args.version, latest_version: latest_version) + publish_docs_for(args.version, latest_version: latest_version) end desc "Generate docs for version #{CURRENT_VERSION} and push them to GitHub" task :publish_latest => :setup do version = Gem::Version.new(CURRENT_VERSION) + options = {} unless version.prerelease? - latest_version = version.to_s + options[:latest_version] = version.to_s end - generate_docs(CURRENT_VERSION, latest_version: latest_version) - publish_docs(CURRENT_VERSION, latest_version: latest_version) + generate_docs_for(CURRENT_VERSION, options) + publish_docs_for(CURRENT_VERSION, options) end - def rewrite_index_to_inject_version(ref, version) - within_gh_pages do + def create_reference_to_gh_pages_branch + sh "git clone git@github.com:#{GITHUB_USERNAME}/shoulda-matchers.git #{GH_PAGES_DIR} --branch gh-pages" + end + + def reset_repo_directory + within_gh_pages_dir do + sh 'git fetch origin' + sh 'git reset --hard origin/gh-pages' + end + end + + def add_version_to_index_page_for(ref, version) + within_gh_pages_dir do filename = "#{ref}/index.html" content = File.read(filename) content.sub!(%r{