-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
53 lines (46 loc) · 1.4 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
begin
require 'bundler/setup'
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
APP_RAKEFILE = File.expand_path('spec/dummy/Rakefile', __dir__)
require 'rspec/core'
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 db:create && \
bin/rake db:schema:load && \
cd -
BASH
) || fail
end
end
namespace :changelog do
desc "Update CHANGELOG from GitHub (Set GITHUB_ACCESS_TOKEN and PREVIOUS_VERSION to a version you want to write changelog changes for)"
task :update do
original_file = './CHANGELOG.md'
new_file = original_file + '.new'
backup = original_file + '.old'
changes = `git rev-list v#{ENV['PREVIOUS_VERSION']}..HEAD | bundle exec github_fast_changelog AlchemyCMS/alchemy_cms`
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