forked from jpgbarbosa/active_campaign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
68 lines (58 loc) · 1.58 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
67
68
# frozen_string_literal: true
require 'reek/rake/task'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
Dir.glob("#{File.expand_path(__dir__)}/lib/tasks/**/*.rake").each { |f| import f }
Reek::Rake::Task.new(:reek) do |t|
t.name = 'reek'
t.config_file = '.reek.yml'
t.source_files = '.'
t.reek_opts = %w[
--line-numbers
--color
--documentation
--progress
--single-line
--sort-by smelliness
].join(' ')
t.fail_on_error = true
t.verbose = true
end
def changed_files(pedantry)
`git diff-tree --no-commit-id --name-only -r HEAD~#{pedantry} HEAD`
.split("\n").select { |f| f.match(/(\.rb\z)|Rakefile/) && File.exist?(f) && !f.include?('db') }
end
RuboCop::RakeTask.new(:rubocop) do |task|
# task.patterns = changed_files(5)
task.options = %w[-DEP --require fuubar --format fuubar]
end
desc 'Validate ruby style'
task style: %i[reek rubocop]
RSpec::Core::RakeTask.new(:rspec) do |t|
t.rspec_opts = '--require fuubar --format Fuubar --format Nc'
end
require 'yard'
YARD::Rake::YardocTask.new(:yard) do |t|
t.files = %w[lib/active_campaign/**/*.rb]
t.options = %w[
--no-private
--embed-mixins
--markup=markdown
--markup-provider=redcarpet
--readme README.md
--files CHANGELOG.md
]
t.stats_options = %w[
--no-private
--compact
--list-undoc
]
end
desc 'Release new version of the gem'
task :release do
sh('./update_docs.sh')
sh('gem release --tag --push')
Rake::Task['changelog'].invoke
sh('gem bump --file lib/active_campaign/version.rb')
end
task default: %i[style rspec yard]