-
Notifications
You must be signed in to change notification settings - Fork 92
/
Rakefile
31 lines (26 loc) · 844 Bytes
/
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
# Setup bundler to avoid having to run bundle exec all the time.
require "rubygems"
require "bundler/setup"
require "rake/testtask"
require_relative "lib/symmetric_encryption/version"
task :gem do
system "gem build symmetric-encryption.gemspec"
end
task publish: :gem do
system "git tag -a v#{SymmetricEncryption::VERSION} -m 'Tagging #{SymmetricEncryption::VERSION}'"
system "git push --tags"
system "gem push symmetric-encryption-#{SymmetricEncryption::VERSION}.gem"
system "rm symmetric-encryption-#{SymmetricEncryption::VERSION}.gem"
end
Rake::TestTask.new(:test) do |t|
t.pattern = "test/**/*_test.rb"
t.verbose = true
t.warning = false
end
# By default run tests against all appraisals
if !ENV["APPRAISAL_INITIALIZED"] && !ENV["TRAVIS"]
require "appraisal"
task default: :appraisal
else
task default: :test
end