Skip to content

Commit ff91703

Browse files
committed
Version 2.0.1.
1 parent e6be506 commit ff91703

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

Rakefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
end
15+
end

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.0.1

0 commit comments

Comments
 (0)