date_by_example 0.1.0 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8467f9d24308479efdaf1fd7a0e1071f3fe37c97c90b36386153f72348ad0c92
4
- data.tar.gz: 5013f2e7a18cdcdf3f13ab21b1bb47981850a42934704f72aa9fd91fd3e646d2
3
+ metadata.gz: 74862debcb6394f3f0aaf22325748538b787eb472f3613374595c175dc693efb
4
+ data.tar.gz: b1b6bc89442f10ad7af4db300754d9d09785d607b358f4324829b7633d62de46
5
5
  SHA512:
6
- metadata.gz: 1560b2ef198d33fed16adfa0efedc8477691b6eb40ebea5cb5d0205e67afdbf9b30aa7537c64c956ad3952f64b96cec5bb4b23d94ef07eb311db133c228ff021
7
- data.tar.gz: 0f2472d0cd4db73ed9adf508bbb28e7f6c58edbd083037a828218ff00350cd681483700ba985521faa7ae464b360090b01969f1d0a32ba76e8939d2360d59195
6
+ metadata.gz: 81cc7b73af7208c8f854ed3d1aec8546d753e3d0a4b4e23189036646f455c81fff6b7b5b4deeec89e1b31c5c6d79bc5ccb0d4266a9d0966001f1ee63d2f05400
7
+ data.tar.gz: 2f8798d0049777a51141b8646c824657532f70d008a95469f749a469f7c409996b928eff62755cbfd6b934014797f078864c332d183bc01ea4e06579bdd1ad54
data/.gitignore CHANGED
@@ -9,3 +9,4 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
+ .DS_Store
@@ -0,0 +1,3 @@
1
+ ## Version 0.1.1 6/22/2018
2
+
3
+ * Adds "%l" for single digit hours
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- date_by_example (0.1.0)
4
+ date_by_example (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -53,4 +53,4 @@ DEPENDENCIES
53
53
  rubocop-rspec (~> 1.25)
54
54
 
55
55
  BUNDLED WITH
56
- 1.16.1
56
+ 1.16.2
Binary file
@@ -13,15 +13,6 @@ Gem::Specification.new do |spec|
13
13
  spec.homepage = "http://www.github.com/noelrappin/date_by_example"
14
14
  spec.license = "MIT"
15
15
 
16
- # # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
- # # to allow pushing to a single host or delete this section to allow pushing to any host.
18
- # if spec.respond_to?(:metadata)
19
- # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
20
- # else
21
- # raise "RubyGems 2.0 or newer is required to protect against " \
22
- # "public gem pushes."
23
- # end
24
-
25
16
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
26
17
  f.match(%r{^(test|spec|features)/})
27
18
  end
@@ -34,7 +34,8 @@ class ExampleFormatter
34
34
  "04" => "%M",
35
35
  "05" => "%S",
36
36
  "1" => "%-m",
37
- "2" => "%-e"}.freeze
37
+ "2" => "%-e",
38
+ "3" => "%l"}.freeze
38
39
 
39
40
  FORMAT_MATCHER = Regexp.union(FORMATS.keys)
40
41
 
@@ -1,3 +1,3 @@
1
1
  module DateByExample
2
- VERSION = "0.1.0".freeze
2
+ VERSION = "0.1.1".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: date_by_example
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Noel Rappin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-06-11 00:00:00.000000000 Z
11
+ date: 2018-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -92,6 +92,7 @@ files:
92
92
  - ".rspec"
93
93
  - ".rubocop.yml"
94
94
  - ".travis.yml"
95
+ - CHANGELOG.md
95
96
  - CODE_OF_CONDUCT.md
96
97
  - Gemfile
97
98
  - Gemfile.lock
@@ -100,6 +101,7 @@ files:
100
101
  - Rakefile
101
102
  - bin/console
102
103
  - bin/setup
104
+ - date_by_example-0.1.0.gem
103
105
  - date_by_example.gemspec
104
106
  - lib/date_by_example.rb
105
107
  - lib/date_by_example/date.rb