timeboss 0.0.5 → 0.0.6

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.
Files changed (4) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +4 -1
  3. data/lib/timeboss/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 5bd79ad6e3e02088a3dc23390a8aef1a37d2db8a
4
- data.tar.gz: 43e17929b3ffc20b7372282db1ca9024e87e11e3
2
+ SHA256:
3
+ metadata.gz: ee958579489d0d8f97632d40fb34b6f34e050967c4797327b57a7b654dc88db4
4
+ data.tar.gz: dc7cafc993f99f87b883b723d93091b8d8b7153e28919b52c137203ec3b921ac
5
5
  SHA512:
6
- metadata.gz: d72e587075701c343742b094537502127206ef2bc8beac51759d5e05bf35eb8306b1cea2161d3de76ed187a85cf04166e91273249ca399a44babeca35f4c17fd
7
- data.tar.gz: 37660d7992674849d783c35c662bf6c1fa921363a25c7a95afbdb1855d94583d3d469e8374ab67b2a6edeb8d8c8ef0e11e509a1cb46e6da27a40f07ee66d8cf5
6
+ metadata.gz: 9567778218c98eba8c81fe6d46010d4c197e265a0f4b0a9466ded1172ed72a4b38a2a4a1262ee8e8337e1aeb9b7c819f6d6085f17c06ff0d7498759953dc5f0a
7
+ data.tar.gz: 8cc13419812cd26806289d2b1dfae991209e3a7ee622a45884c53986ae6a8b837685ee6ffb51ef4cb77daf03217ac800c6ffc25003ec1c66d352a53d6475d719
data/README.md CHANGED
@@ -7,7 +7,7 @@ _This is a work in progress. Check back soon for the initial release!_
7
7
  Add this line to your application's Gemfile:
8
8
  ```ruby
9
9
  # update with the version of your choice
10
- gem 'timeboss', '0.0.1', git: "https://github.com/kevinstuffandthings/timeboss.git"
10
+ gem 'timeboss'
11
11
  ```
12
12
 
13
13
  And then execute:
@@ -20,6 +20,8 @@ Or install it yourself as:
20
20
  $ gem install timeboss
21
21
  ```
22
22
 
23
+ You can find the gem on [RubyGems](https://rubygems.org/gems/timeboss).
24
+
23
25
  ## Usage
24
26
  Supports `year`, `half`, `quarter`, `month`, `week`, and `day`.
25
27
 
@@ -74,6 +76,7 @@ entry.format(:quarter)
74
76
  entry.format(:quarter, :month)
75
77
  # => "2020Q2M3W2"
76
78
  ```
79
+ _Note: all parsable descriptors should be ordered by chronological specificity (from least to most)_
77
80
 
78
81
  Each type of period can give you information about its constituent periods:
79
82
  ```ruby
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module TimeBoss
3
- VERSION = "0.0.5"
3
+ VERSION = "0.0.6"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: timeboss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin McDonald
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
173
173
  version: '0'
174
174
  requirements: []
175
175
  rubyforge_project:
176
- rubygems_version: 2.6.14
176
+ rubygems_version: 2.7.7
177
177
  signing_key:
178
178
  specification_version: 4
179
179
  summary: Broadcast Calendar navigation in Ruby made simple