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 e6be506 commit ff91703Copy full SHA for ff91703
Rakefile
@@ -0,0 +1,15 @@
1
+#!/usr/bin/env ruby
2
+$:.unshift(File.expand_path('../lib', __FILE__))
3
+require 'rubygems'
4
+
5
+namespace :gem do
6
+ desc "Build the rdf-ldp-#{File.read('VERSION').chomp}.gem file"
7
+ task :build do
8
+ sh "gem build rdf-ldp.gemspec && mv rdf-ldp-#{File.read('VERSION').chomp}.gem pkg/"
9
+ end
10
11
+ desc "Release the rdf-ldp-#{File.read('VERSION').chomp}.gem file"
12
+ task :release do
13
+ sh "gem push pkg/rdf-ldp-#{File.read('VERSION').chomp}.gem"
14
15
+end
VERSION
@@ -1 +1 @@
-2.0.0
+2.0.1
0 commit comments