From 85fd69e7d4681b0334c432c94cf144f5c24f8a26 Mon Sep 17 00:00:00 2001 From: Matthew Draper Date: Thu, 18 Apr 2019 14:48:33 +0900 Subject: [PATCH] Version bump for release Use 0.* for now... we'll worry about skipping 1.0.* later. --- Gemfile.lock | 2 +- gel.gemspec | 11 ++--------- lib/gel/version.rb | 2 +- 3 files changed, 4 insertions(+), 11 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index d84167a..562abc8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - gel (2.0.0.alpha2) + gel (0.2.0) GEM remote: https://rubygems.org/ diff --git a/gel.gemspec b/gel.gemspec index 385e3be..388b137 100644 --- a/gel.gemspec +++ b/gel.gemspec @@ -1,3 +1,5 @@ +# frozen_string_literal: true + require_relative "lib/gel/version" Gem::Specification.new do |spec| @@ -10,15 +12,6 @@ Gem::Specification.new do |spec| spec.homepage = "https://gel.dev" spec.license = "MIT" - # 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 exe lib *.md *.txt`.split("\x0") + Dir["man/man?/*.?"] spec.bindir = "exe" diff --git a/lib/gel/version.rb b/lib/gel/version.rb index d70687e..3a0b1e9 100644 --- a/lib/gel/version.rb +++ b/lib/gel/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Gel - VERSION = "2.0.0.alpha3" + VERSION = "0.2.0" end