diff --git a/checkpoint.gemspec b/checkpoint.gemspec index 13a782b..d133e6b 100644 --- a/checkpoint.gemspec +++ b/checkpoint.gemspec @@ -9,6 +9,7 @@ Gem::Specification.new do |spec| spec.version = Checkpoint::VERSION spec.authors = ["Noah Botimer"] spec.email = ["botimer@umich.edu"] + spec.license = "BSD-3-Clause" spec.summary = <<~SUMMARY Checkpoint provides a model and infrastructure for policy-based authorization, @@ -17,15 +18,6 @@ Gem::Specification.new do |spec| spec.homepage = "https://github.com/mlibrary/checkpoint" - # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' - # to allow pushing to a single host or delete this section to allow pushing to any host. - if spec.respond_to?(:metadata) - spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'" - else - raise "RubyGems 2.0 or newer is required to protect against " \ - "public gem pushes." - end - spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end diff --git a/lib/checkpoint/version.rb b/lib/checkpoint/version.rb index 3a4981c..330b786 100644 --- a/lib/checkpoint/version.rb +++ b/lib/checkpoint/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Checkpoint - VERSION = "0.1.0" + VERSION = "1.0.0" end