forked from teespring-labs/active_record_replica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
31 lines (26 loc) · 851 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/active_record_replica/version'
task :gem do
system "gem build active_record_replica.gemspec"
end
task :publish => :gem do
system "git tag -a v#{ActiveRecordReplica::VERSION} -m 'Tagging #{ActiveRecordReplica::VERSION}'"
system "git push --tags"
system "gem push active_record_replica-#{ActiveRecordReplica::VERSION}.gem"
system "rm active_record_replica-#{ActiveRecordReplica::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