Sha256: 28c82690c58d175308ba0c516888951b675f97b860d4f23f03143bd730991b69
Contents?: true
Size: 982 Bytes
Versions: 5
Compression:
Stored size: 982 Bytes
Contents
begin require 'bundler/setup' rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end require 'rdoc/task' RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'Pageflow' rdoc.options << '--line-numbers' rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('lib/**/*.rb') end require 'semmy' Semmy::Tasks.install do |config| config.github_repository = 'codevise/pageflow' config.source_files_with_docs_tags = '{app,lib,node_package/src}/**/*.{js,jsx,rb,scss}' end require File.expand_path('spec/support/pageflow/rails_version', File.dirname(__FILE__)) APP_RAKEFILE = File.expand_path("../spec/dummy/rails-#{Pageflow::RailsVersion.detect}/Rakefile", __FILE__) load 'rails/tasks/engine.rake' if File.exists?(APP_RAKEFILE) load File.expand_path('lib/tasks/pageflow_tasks.rake', File.dirname(__FILE__)) Bundler::GemHelper.install_tasks task 'release:prepare' => 'pageflow:node_package:build'
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
pageflow-12.0.4 | Rakefile |
pageflow-12.0.3 | Rakefile |
pageflow-12.0.2 | Rakefile |
pageflow-12.0.1 | Rakefile |
pageflow-12.0.0 | Rakefile |