forked from brpoplpush/brpoplpush-redis_script
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
67 lines (57 loc) · 1.51 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
# 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 --format fuubar]
end
task style: [:reek, :rubocop]
RSpec::Core::RakeTask.new(:rspec) do |t|
t.rspec_opts = "--format Fuubar"
end
require "yard"
YARD::Rake::YardocTask.new(:yard) do |t|
t.files = %w[lib/brpoplpush/**/*.rb]
t.options = %w[
--no-private
--embed-mixins
--markup=markdown
--markup-provider=redcarpet
--readme README.md
--files CHANGELOG.md,LICENSE
]
t.stats_options = %w[
--no-private
--compact
--list-undoc
]
end
task default: [:style, :rspec, :yard]
desc "Cut a new gem version"
task :release do
sh("./update_docs.sh")
sh("gem release --tag --push")
Rake::Task["changelog"].invoke
sh("gem bump --file lib/brpoplpush/redis_script/version.rb")
end