-
Notifications
You must be signed in to change notification settings - Fork 40
/
Rakefile
66 lines (57 loc) · 1.74 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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
Dir.chdir("spec/dummy") do
system(
<<~SETUP
bin/rake railties:install:migrations
bin/rake db:drop db:create db:migrate
bin/rails g alchemy:install --force --auto-accept --force-babel-config
bin/rails g alchemy:devise:install --force
SETUP
)
exit($?.exitstatus) unless $?.success?
end
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