quarter 1.2.0 → 1.2.1

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 +4 -4
  2. data/CHANGES.md +27 -0
  3. data/quarter.gemspec +3 -3
  4. metadata +4 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43375d0c4b1028806f1a4e065d6da6b910b23e354377270125ac8953c629b15d
4
- data.tar.gz: b40a713d14c5b278fe823571413117e7da417734d19fb5e522f6829e34a2ab79
3
+ metadata.gz: 384016705bf5edf9dc2b6c543b40c3edd022e5b2e45e49bec214c8a9c4827b70
4
+ data.tar.gz: 05cbc50b52a969dcbe83c171e55d96910ad1abb42e8af6eca2ca380c06ecb204
5
5
  SHA512:
6
- metadata.gz: d417b09e7c7aba1451fdbe4dd4c1c5672c5043622e8b076497e2c5af3d5e83aa7ec42efbbe36dd6a5a0dc04b91a8a02a4ac85c2d36145a80abae908db49212c8
7
- data.tar.gz: 84932606227d90523473be6ee607b9c746211568b76e430f9b082c30270bb17931b5db6a10aa8cad5c03c15392b452b3b7e68de6338a3425c4adcbcc0841f1cd
6
+ metadata.gz: a039b83ec9f0a267236ffdfe3e5bdc4841463934c2be706aeb6292dca19f01ceb08993f0af9c8bf0dac9b548c656db5b598baa0e93630a72d19427a8fe1284f0
7
+ data.tar.gz: c10541c9480908c817aa1c2f0335e1e42cdf4ff84aba7c9579ef66984ace751e0f348b0ba1b9a6f03baa5d1c479708638a980ac8b56f00558ce6bf0d66111d63
@@ -0,0 +1,27 @@
1
+ # 1.2.1
2
+
3
+ * Added CHANGES.md to gem files
4
+
5
+ * Fixed outdated changelog_uri
6
+
7
+ # 1.2.0
8
+
9
+ * Added Quarter::Methods module
10
+
11
+ * Added Quarter::Constants module
12
+
13
+ # 1.1.0
14
+
15
+ * Added optional YAML integration
16
+
17
+ This makes it possible to dump/load quarter objects to/from YAML as scalar values. For example:
18
+
19
+ require 'quarter/yaml'
20
+
21
+ puts YAML.dump([Quarter.today])
22
+
23
+ This functionality is not enabled by default, due to the use of Module#prepend.
24
+
25
+ # 1.0.0
26
+
27
+ * First version!
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'quarter'
3
- s.version = '1.2.0'
3
+ s.version = '1.2.1'
4
4
  s.license = 'LGPL-3.0'
5
5
  s.platform = Gem::Platform::RUBY
6
6
  s.authors = ['Tim Craft']
@@ -8,12 +8,12 @@ Gem::Specification.new do |s|
8
8
  s.homepage = 'https://github.com/readysteady/quarter'
9
9
  s.description = 'Ruby gem for working with standard calendar quarters'
10
10
  s.summary = 'See description'
11
- s.files = Dir.glob('lib/**/*.rb') + %w[LICENSE.txt README.md quarter.gemspec]
11
+ s.files = Dir.glob('lib/**/*.rb') + %w[CHANGES.md LICENSE.txt README.md quarter.gemspec]
12
12
  s.require_path = 'lib'
13
13
  s.metadata = {
14
14
  'homepage' => 'https://github.com/readysteady/quarter',
15
15
  'source_code_uri' => 'https://github.com/readysteady/quarter',
16
16
  'bug_tracker_uri' => 'https://github.com/readysteady/quarter/issues',
17
- 'changelog_uri' => 'https://github.com/readysteady/quarter/blob/master/CHANGES.md'
17
+ 'changelog_uri' => 'https://github.com/readysteady/quarter/blob/main/CHANGES.md'
18
18
  }
19
19
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quarter
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Craft
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-13 00:00:00.000000000 Z
11
+ date: 2020-11-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Ruby gem for working with standard calendar quarters
14
14
  email:
@@ -17,6 +17,7 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
+ - CHANGES.md
20
21
  - LICENSE.txt
21
22
  - README.md
22
23
  - lib/quarter.rb
@@ -29,7 +30,7 @@ metadata:
29
30
  homepage: https://github.com/readysteady/quarter
30
31
  source_code_uri: https://github.com/readysteady/quarter
31
32
  bug_tracker_uri: https://github.com/readysteady/quarter/issues
32
- changelog_uri: https://github.com/readysteady/quarter/blob/master/CHANGES.md
33
+ changelog_uri: https://github.com/readysteady/quarter/blob/main/CHANGES.md
33
34
  post_install_message:
34
35
  rdoc_options: []
35
36
  require_paths: