Skip to content

Commit

Permalink
Finish 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Dec 16, 2019
2 parents f9a9fa1 + acf4ad5 commit 7bd6c37
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -12,3 +12,4 @@ gems.tags
Gemfile.lock
bin/
/.bundle/
/releases
12 changes: 12 additions & 0 deletions Rakefile
Expand Up @@ -4,6 +4,18 @@ require 'rspec/core/rake_task'
require 'bundler/gem_tasks'
require 'yard'

namespace :gem do
desc "Build the spira-#{File.read('VERSION').chomp}.gem file"
task :build do
sh "gem build spira.gemspec && mv spira-#{File.read('VERSION').chomp}.gem pkg/"
end

desc "Release the spira-#{File.read('VERSION').chomp}.gem file"
task :release do
sh "gem push pkg/spira-#{File.read('VERSION').chomp}.gem"
end
end

YARD::Rake::YardocTask.new

desc 'Run specs'
Expand Down
2 changes: 1 addition & 1 deletion spira.gemspec
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |gem|

gem.name = 'spira'
gem.homepage = 'http://ruby-rdf.github.io/spira/'
gem.license = 'Public Domain' if gem.respond_to?(:license=)
gem.license = 'Unlicense'
gem.summary = 'A framework for using the information in RDF.rb repositories as model objects.'
gem.description = 'Spira is a framework for using the information in RDF.rb repositories as model objects.'

Expand Down

0 comments on commit 7bd6c37

Please sign in to comment.