From 275c6419c22f36d848a7c4134cb30fadc4b82ad9 Mon Sep 17 00:00:00 2001 From: Parnic Date: Sun, 22 Apr 2018 14:34:50 -0500 Subject: [PATCH] Bumped minor version for new methods Set date to always be date gem was built Also fixed rake and rspec dependency versions while I was in there. I'm not sure where I saw the '~> 0' format from, but those versions were not working with my tests, so I replaced version 0 with the versions I have actually tested against and can run with my gem. --- shift_stats.gemspec | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shift_stats.gemspec b/shift_stats.gemspec index 3bca148..6d9a5a2 100644 --- a/shift_stats.gemspec +++ b/shift_stats.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |s| s.name = 'shift_stats' - s.version = '0.0.1' - s.date = '2018-04-05' + s.version = '0.1.0' + s.date = Date.today.to_s s.summary = 'Shift stats API' s.description = 'Interfaces with Digital Shift APIs (HockeyShift, BasketballShift, etc.)' s.authors = ['Chris Pickett'] @@ -10,6 +10,6 @@ Gem::Specification.new do |s| s.homepage = 'https://github.com/parnic/shift_stats' s.license = 'MIT' s.add_runtime_dependency 'httpclient', '~> 2' - s.add_development_dependency 'rake', '~> 0' - s.add_development_dependency 'rspec', '~> 0' + s.add_development_dependency 'rake', '~> 12' + s.add_development_dependency 'rspec', '~> 3' end