termodoro 0.3.10 → 0.3.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3db9c6c962a0dc82df4abca7c64002f80c296744
4
- data.tar.gz: 1da22fe2151c4784ee994868a6cb486bd76ede4a
3
+ metadata.gz: 7244c90d83fbbad7fabc205e4ab797f194433a78
4
+ data.tar.gz: 5f7d9b93040b3621f9caac7f8fdbe8f280ad9b91
5
5
  SHA512:
6
- metadata.gz: 24d2ec284e3ee888b08a785af8defa5f6ee3a41d6c9f7d7d4f32c8eeec36e5864f116b85bd17ceedaca9634e329e370d39b3894e16095ab61f43762cce01a502
7
- data.tar.gz: ce46e1c306fa3254b788c815a56be97b2a586a8c8e86afc33c4dc4d5433da4b780e6450ef1aef980f875a7562df94270193d6efd44e520f6f434d25bc5070f52
6
+ metadata.gz: 88a6e8fe89a169b2b3b75af14816922d12a8a5c566435bb3a2e7a9ba9b399dc282fde78d469c4ed72c36217f90e77d4fd65af7bcc5ee8ca026025a8cf819f07e
7
+ data.tar.gz: 82adebbfbc43852be2be20414ae2ab892cdf8c09127c27bc1daabc8406b4669f33faf2e694373da4f6f1ed30bc1ac81638c6ffb3a57fd05eaf11a99f9185b92e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 0.3.11 (10/30/2013)
2
+
3
+ - Fix namespace issue on VERSION stuff. - [@vcavallo](http://github.com/vcavallo)
4
+
1
5
  ### 0.3.10 (10/30/2013)
2
6
 
3
7
  - Fix typo that was actually breaking code. - [@vcavallo](http://github.com/vcavallo)
@@ -5,7 +5,7 @@ require_relative './version'
5
5
  # a terminal-notifier message appears with the message - if the message was omitted,
6
6
  # the word "Termodoro" appears instead.
7
7
  class Termodoro
8
- include Version
8
+ include VersionModule
9
9
  attr_accessor :time_unit, :number_of_units, :message
10
10
  attr_reader :arguments
11
11
  # @!attribute time_unit
@@ -1,4 +1,4 @@
1
- module Version
2
- VERSION = "0.3.10"
1
+ module VersionModule
2
+ VERSION = "0.3.11"
3
3
  end
4
4
 
data/termodoro.gemspec CHANGED
@@ -4,7 +4,7 @@ require './lib/termodoro/termodoro'
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = 'termodoro'
7
- s.version = Termodoro::Version::VERSION
7
+ s.version = Termodoro::VERSION
8
8
  s.date = Time.now.utc.strftime("%Y-%m-%d")
9
9
  s.summary = "A lightweight CL reminder app"
10
10
  s.description = "Use this little utility to set simple reminders from the command line. See the github page below for more information"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: termodoro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.10
4
+ version: 0.3.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vinney Cavallo