Sha256: cad0583ffb50d828202bfc0416dfb6515101de18fff32abc891eb3171e5ad135
Contents?: true
Size: 1.02 KB
Versions: 6
Compression:
Stored size: 1.02 KB
Contents
# frozen_string_literal: true require 'bundler/gem_tasks' require 'bundler/setup' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e warn e.message warn 'Run `bundle install` to install missing gems' exit e.status_code end load './lib/dynamoid/tasks/database.rake' if defined?(Rails) require 'rake' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end require 'yard' YARD::Rake::YardocTask.new do |t| t.files = ['lib/**/*.rb', 'README', 'LICENSE'] # optional t.options = ['-m', 'markdown'] # optional end desc 'Publish documentation to gh-pages' task :publish do Rake::Task['yard'].invoke `git add .` `git commit -m 'Regenerated documentation'` `git checkout gh-pages` `git clean -fdx` `git checkout master -- doc` `cp -R doc/* .` `git rm -rf doc/` `git add .` `git commit -m 'Regenerated documentation'` `git pull` `git push` `git checkout master` end require 'wwtd/tasks' task default: :spec
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
dynamoid-3.4.1 | Rakefile |
dynamoid-3.4.0 | Rakefile |
dynamoid-3.3.0 | Rakefile |
dynamoid-3.2.0 | Rakefile |
dynamoid-3.1.0 | Rakefile |
dynamoid-3.0.0 | Rakefile |