forked from nedap/mordor-auditing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
24 lines (18 loc) · 672 Bytes
/
Rakefile
File metadata and controls
24 lines (18 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require "rubygems"
require "bundler"
Bundler.setup
load('tasks/github-gem.rake')
task :default => :spec
# Register the gem release tasks in the gem namespace
GithubGem::RakeTasks.new(:gem) do |config|
# Note that the following values are all default values and can
# therefore be omitted if they are not changed.
config.gemspec_file = GithubGem.detect_gemspec_file
config.main_include = GithubGem.detect_main_include
config.root_dir = Dir.pwd
config.test_pattern = 'test/**/*_test.rb'
config.spec_pattern = 'spec/**/*_spec.rb'
config.local_branch = 'master'
config.remote = 'origin'
config.remote_branch = 'master'
end