Sha256: 63b42975aa7fd9895bc72e5b23c6260a46ceeac0837b9d87833707b06e52864d
Contents?: true
Size: 835 Bytes
Versions: 6
Compression:
Stored size: 835 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' 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
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
pageflow-0.11.4 | Rakefile |
pageflow-0.11.3 | Rakefile |
pageflow-0.11.2 | Rakefile |
pageflow-0.11.1 | Rakefile |
pageflow-0.11.0 | Rakefile |
pageflow-0.10.0 | Rakefile |