We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b67eb2b commit a471532Copy full SHA for a471532
Rakefile
@@ -1,3 +1,16 @@
1
+require 'rubygems'
2
require 'rspec/core/rake_task'
3
+require_relative 'lib/unitypods/version'
4
+
5
RSpec::Core::RakeTask.new
6
task :default => :spec
7
8
+desc "Build the gem"
9
+task :build do
10
+ system "gem build unitypods.gemspec"
11
+end
12
13
+desc "Build and install the gem"
14
+task :install_local => :build do
15
+ system "gem install -l unitypods-#{Unitypods::VERSION}.gem"
16
0 commit comments