forked from ytti/asetus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
41 lines (33 loc) · 738 Bytes
/
Rakefile
File metadata and controls
41 lines (33 loc) · 738 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
require 'bundler/gem_tasks'
require 'rake/testtask'
require 'bundler'
gemspec = eval(File.read(Dir['*.gemspec'].first))
gemfile = [gemspec.name, gemspec.version].join('-') + '.gem'
desc 'Validate gemspec'
task :gemspec do
gemspec.validate
end
desc 'Run minitest'
task :test do
Rake::TestTask.new do |t|
t.libs << 'spec'
t.test_files = FileList['spec/**/*_spec.rb']
t.warning = true
t.verbose = true
end
end
desc 'Build gem'
task :build
desc 'Install gem'
task install: :build do
system "sudo -E sh -c 'umask 022; gem install gems/#{gemfile}'"
end
desc 'Remove gems'
task :clean do
FileUtils.rm_rf 'pkg'
end
desc 'Push to rubygems'
task :push do
system "gem push pkg/#{gemfile}"
end
task default: :test