Sha256: dc4a375f64b706d84bb8710c06d0bab38dac6c1737cdcd6b89bc13bd5003fc3c
Contents?: true
Size: 1.6 KB
Versions: 4
Compression:
Stored size: 1.6 KB
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 = 'AlchemyDevise' rdoc.options << '--line-numbers' rdoc.rdoc_files.include('README.md') rdoc.rdoc_files.include('lib/**/*.rb') rdoc.rdoc_files.include('app/**/*.rb') end APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__) load 'rails/tasks/engine.rake' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task :default => ['alchemy:spec:prepare', :spec] Bundler::GemHelper.install_tasks namespace :alchemy do namespace :spec do desc "Prepares database for testing Alchemy" task :prepare do system <<-BASH cd spec/dummy export RAILS_ENV=test bin/rake railties:install:migrations bin/rake db:drop db:create db:migrate bin/rails g alchemy:install --force --auto-accept bin/rails g alchemy:devise:install --force cd - BASH end end namespace :changelog do desc "Update changelog" task :update do original_file = './CHANGELOG.md' new_file = original_file + '.new' backup = original_file + '.old' changes = `git rev-list v#{ENV['PREVIOUS_VERSION']}...main | bundle exec github_fast_changelog AlchemyCMS/alchemy-devise` File.open(new_file, 'w') do |fo| fo.puts changes File.foreach(original_file) do |li| fo.puts li end fo.puts "" end File.rename(original_file, backup) File.rename(new_file, original_file) File.delete(backup) end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
alchemy-devise-6.0.0 | Rakefile |
alchemy-devise-5.1.0 | Rakefile |
alchemy-devise-5.0.1 | Rakefile |
alchemy-devise-5.0.0 | Rakefile |