to_duration 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: dca915b8cbc3a04cccec1bd1bac0a0984ed449b9
4
+ data.tar.gz: 3ee511fdca5a3c3a5488c0559216613497504f67
5
+ SHA512:
6
+ metadata.gz: 31843ff1fc0a5c024d16a20a28a50c3d1bb01db0bab2fcd00b9cb3640db2eea2d26ad4456f5c49b76f0ab6c467788d22899f90ca5dd61a401d7d9d7384aa1d48
7
+ data.tar.gz: d0687a8979a7c45bbbe21af8915976facde57d24f9d41c731fc3a09242b4efcd2098fb95bb47b608877b4f58aae43d2130e55420287bc4ac875f7bb28d4a8a8a
data/.coveralls.yml ADDED
@@ -0,0 +1 @@
1
+ service_name: travis-ci
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.2
5
+ before_install: gem install bundler -v 1.13.6
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at ffs.cmp@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in to_duration.gemspec
4
+ gemspec
5
+
6
+ gem 'i18n'
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Nikolay Digaev
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,78 @@
1
+ # to_duration
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/to_duration.svg)](https://badge.fury.io/rb/to_duration) [![Build Status](https://travis-ci.org/digaev/to_duration.svg)](https://travis-ci.org/digaev/to_duration) [![Coverage Status](https://coveralls.io/repos/github/digaev/to_duration/badge.svg?branch=master)](https://coveralls.io/github/digaev/to_duration?branch=master)
4
+
5
+ A Ruby gem for converting seconds into human-readable format. This gem adds instance method `#to_duration` to `Numeric`.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'to_duration'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install to_duration
22
+
23
+ ## Usage
24
+
25
+ ```ruby
26
+ irb(main):001:0> 12345.to_duration
27
+ => "3 hours, 25 minutes and 45 seconds"
28
+
29
+ irb(main):002:0> 1234567890.to_duration
30
+ => "39 years, 1 month, 14 days, 5 hours, 31 minutes and 30 seconds"
31
+
32
+ irb(main):003:0> 1234567890.to_duration(week: true)
33
+ => "39 years, 1 month, 2 weeks, 5 hours, 31 minutes and 30 seconds"
34
+ ```
35
+
36
+ ## Options
37
+
38
+ * `year` - default `true`
39
+ * `month` - default `true`
40
+ * `week` - default `false`
41
+ * `day` - default `true`
42
+ * `hour` - default `true`
43
+ * `minute` - default `true`
44
+ * `second` - default `true`
45
+
46
+ ## Localization
47
+
48
+ In your Rails application edit `config/locales/#{locale}.yml`:
49
+
50
+ ```yml
51
+ to_duration:
52
+ and: and
53
+ year:
54
+ one: year
55
+ other: years
56
+ month:
57
+ one: month
58
+ other: months
59
+ week:
60
+ one: week
61
+ other: weeks
62
+ day:
63
+ one: day
64
+ other: days
65
+ hour:
66
+ one: hour
67
+ other: hours
68
+ minute:
69
+ one: minute
70
+ other: minutes
71
+ second:
72
+ one: second
73
+ other: seconds
74
+ ```
75
+
76
+ ## Contributing
77
+
78
+ Bug reports and pull requests are welcome on GitHub at https://github.com/digaev/to_duration.
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ t.verbose = true
9
+ t.warning = true
10
+ end
11
+
12
+ task :default => :test
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "to_duration"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/lib/numeric.rb ADDED
@@ -0,0 +1,5 @@
1
+ class Numeric
2
+ def to_duration(options = {})
3
+ ToDuration::Converter.call(to_i, options)
4
+ end
5
+ end
@@ -0,0 +1,6 @@
1
+ require 'to_duration/version'
2
+ require 'to_duration/converter'
3
+ require_relative 'numeric'
4
+
5
+ module ToDuration
6
+ end
@@ -0,0 +1,61 @@
1
+ module ToDuration
2
+ class Converter
3
+ def self.call(value, options = {})
4
+ new(value, options).call
5
+ end
6
+
7
+ def initialize(value, options = {})
8
+ @value = value
9
+ @options = DEFAULTS.dup.merge!(options).freeze
10
+ end
11
+
12
+ def call
13
+ units = to_units
14
+ last = if units.length > 1
15
+ " #{I18n.t('to_duration.and')} #{units.pop}"
16
+ else
17
+ ''
18
+ end
19
+ "#{units.join(', ')}#{last}"
20
+ end
21
+
22
+ private
23
+
24
+ UNITS = {
25
+ year: 315_576_00,
26
+ month: 259_200_0,
27
+ week: 604_800,
28
+ day: 864_00,
29
+ hour: 3600,
30
+ minute: 60,
31
+ second: 1
32
+ }.freeze
33
+
34
+ DEFAULTS = {
35
+ year: true,
36
+ month: true,
37
+ week: false,
38
+ day: true,
39
+ hour: true,
40
+ minute: true,
41
+ second: true
42
+ }.freeze
43
+
44
+ def to_units
45
+ seconds = @value
46
+
47
+ UNITS.map do |k, v|
48
+ next if @options[k] != true
49
+
50
+ count = seconds >= v ? seconds / v : 0
51
+ seconds -= count * v
52
+
53
+ t_unit(k, count) if count > 0
54
+ end.compact
55
+ end
56
+
57
+ def t_unit(unit, count)
58
+ "#{count} #{I18n.t("to_duration.#{unit}", count: count)}"
59
+ end
60
+ end
61
+ end
@@ -0,0 +1,3 @@
1
+ module ToDuration
2
+ VERSION = '1.1.1'.freeze
3
+ end
@@ -0,0 +1,29 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'to_duration/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'to_duration'
8
+ spec.version = ToDuration::VERSION
9
+ spec.authors = ['Nikolay Digaev']
10
+ spec.email = ['ffs.cmp@gmail.com']
11
+
12
+ spec.summary = %q{A Ruby gem for converting seconds into human-readable format.}
13
+ spec.description = %q{A Ruby gem for converting seconds into human-readable format.}
14
+ spec.homepage = 'https://github.com/digaev/to_duration'
15
+ spec.license = 'MIT'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+
21
+ spec.bindir = 'exe'
22
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
+ spec.require_paths = ['lib']
24
+
25
+ spec.add_development_dependency 'bundler', '~> 1.13'
26
+ spec.add_development_dependency 'rake', '~> 10.0'
27
+ spec.add_development_dependency 'minitest', '~> 5.0'
28
+ spec.add_development_dependency 'coveralls', '~> 0.8'
29
+ end
metadata ADDED
@@ -0,0 +1,115 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: to_duration
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Nikolay Digaev
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-12-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.13'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.13'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: coveralls
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.8'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.8'
69
+ description: A Ruby gem for converting seconds into human-readable format.
70
+ email:
71
+ - ffs.cmp@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".coveralls.yml"
77
+ - ".gitignore"
78
+ - ".travis.yml"
79
+ - CODE_OF_CONDUCT.md
80
+ - Gemfile
81
+ - LICENSE.txt
82
+ - README.md
83
+ - Rakefile
84
+ - bin/console
85
+ - bin/setup
86
+ - lib/numeric.rb
87
+ - lib/to_duration.rb
88
+ - lib/to_duration/converter.rb
89
+ - lib/to_duration/version.rb
90
+ - to_duration.gemspec
91
+ homepage: https://github.com/digaev/to_duration
92
+ licenses:
93
+ - MIT
94
+ metadata: {}
95
+ post_install_message:
96
+ rdoc_options: []
97
+ require_paths:
98
+ - lib
99
+ required_ruby_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ required_rubygems_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ requirements: []
110
+ rubyforge_project:
111
+ rubygems_version: 2.5.2
112
+ signing_key:
113
+ specification_version: 4
114
+ summary: A Ruby gem for converting seconds into human-readable format.
115
+ test_files: []