mongoid-day_time 0.1.0

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
+ SHA256:
3
+ metadata.gz: aa24e746b86d97c72d47f9131b183c3dc501fbe5f793170b3128bdfe43085b61
4
+ data.tar.gz: 8fad594cc0bf36feadff9a64b83246f7179adabba49060f3db7f73d475933c04
5
+ SHA512:
6
+ metadata.gz: 1827763e0f8807d480721bd03547081a79a918e0d827dd7dcf2479483c626b8ef174608c4c31540f31dfdd05bc6e5b6ceb7df436ed9ff53ca8e3147d21f86917
7
+ data.tar.gz: 194445288a2bd4261af37ce4df343e685280a7df3fc13280ef9e0851c733ff401a83759e1bad0fb3ac006c9de1cf690ea4daf1e5b7d882022a82cea1ee435050
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.6.0
7
+ before_install: gem install bundler -v 1.17.2
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in mongoid-day_time.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,35 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ mongoid-day_time (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.3)
10
+ rake (10.5.0)
11
+ rspec (3.8.0)
12
+ rspec-core (~> 3.8.0)
13
+ rspec-expectations (~> 3.8.0)
14
+ rspec-mocks (~> 3.8.0)
15
+ rspec-core (3.8.0)
16
+ rspec-support (~> 3.8.0)
17
+ rspec-expectations (3.8.2)
18
+ diff-lcs (>= 1.2.0, < 2.0)
19
+ rspec-support (~> 3.8.0)
20
+ rspec-mocks (3.8.0)
21
+ diff-lcs (>= 1.2.0, < 2.0)
22
+ rspec-support (~> 3.8.0)
23
+ rspec-support (3.8.0)
24
+
25
+ PLATFORMS
26
+ ruby
27
+
28
+ DEPENDENCIES
29
+ bundler (~> 1.17)
30
+ mongoid-day_time!
31
+ rake (~> 10.0)
32
+ rspec (~> 3.0)
33
+
34
+ BUNDLED WITH
35
+ 1.17.2
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Artem Yegorov
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,72 @@
1
+ # Mongoid DayTime type
2
+
3
+ Save time in minutes from midnight and show as 24-format string in `HH:MM`
4
+
5
+ Inspired by their issues:
6
+
7
+ * [MongoDb opening hours Schema and query for open/closed](https://stackoverflow.com/questions/17460235/mongodb-opening-hours-schema-and-query-for-open-closed)
8
+ * [Schema for opening hours MongoDB](https://stackoverflow.com/questions/8375799/schema-for-opening-hours-mongodb)
9
+ * [Best way to store only 'time' in MongoDB?](https://groups.google.com/forum/#!topic/mongodb-user/ki7W4MHhXtg)
10
+ * [How to order data by ONLY Hour:Minute format in MongoDB/Mongoid? (Without date!)
11
+ Ask Question](https://stackoverflow.com/questions/14100782/how-to-order-data-by-only-hourminute-format-in-mongodb-mongoid-without-date)
12
+
13
+ Some usefull [link](https://docs.mongodb.com/mongoid/current/tutorials/mongoid-documents/#custom-fields)
14
+ for create custom type for Mongoid.
15
+
16
+ ## Installation
17
+
18
+ Add this line to your application's Gemfile:
19
+
20
+ ```ruby
21
+ gem 'mongoid-day_time'
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ $ bundle
27
+
28
+ ## Usage
29
+
30
+ ```ruby
31
+ # in your app/models/my_awesome_model.rb
32
+ class MyAwesomeModel
33
+ include Mongoid::Document
34
+
35
+ field :name, type: String
36
+ field :time, type: Mongoid::DayTime::Type, default: "9:35"
37
+
38
+ end
39
+ ```
40
+
41
+ ```
42
+ # in irb:
43
+ 2.6.0 :01 > MyAwesomeModel.create(name: "foobar", time: "10:15")
44
+ => #<MyAwesomeModel _id: 5c601a38f047055bcd9f2888, name: "foobar", time: 615>
45
+ 2.6.0 :02 > m = MyAwesomeModel.last
46
+ => #<MyAwesomeModel _id: 5c601a38f047055bcd9f2888, name: "foobar", time: 615>
47
+ 2.6.0 :03 > m.read_attribute_before_type_cast :time
48
+ => 615
49
+ 2.6.0 :04 > m.time
50
+ => "10:15"
51
+ ```
52
+
53
+ ## Gotchas :smirk:
54
+
55
+ DayTime type has not validation, you can type `10:75` and this respresents as
56
+ `10 * 60 + 75` = `675 minutes` what corresponds `11:15`
57
+
58
+ ## Development
59
+
60
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` or `bin/rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
61
+
62
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
63
+
64
+ ## Contributing
65
+
66
+ Bug reports and pull requests are welcome on GitHub at
67
+ [github.com/Yegorov/mongoid-day_time](https://github.com/Yegorov/mongoid-day_time).
68
+
69
+ ## License
70
+
71
+ The gem is available as open source under the terms of the
72
+ [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "mongoid/day_time"
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(__FILE__)
data/bin/rspec ADDED
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ #
5
+ # This file was generated by Bundler.
6
+ #
7
+ # The application 'rspec' is installed as part of a gem, and
8
+ # this file is here to facilitate running it.
9
+ #
10
+
11
+ require "pathname"
12
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
13
+ Pathname.new(__FILE__).realpath)
14
+
15
+ bundle_binstub = File.expand_path("../bundle", __FILE__)
16
+
17
+ if File.file?(bundle_binstub)
18
+ if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
19
+ load(bundle_binstub)
20
+ else
21
+ abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
22
+ Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
23
+ end
24
+ end
25
+
26
+ require "rubygems"
27
+ require "bundler/setup"
28
+
29
+ load Gem.bin_path("rspec-core", "rspec")
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
@@ -0,0 +1,80 @@
1
+ module Mongoid
2
+ module DayTime
3
+ class Type
4
+ include Comparable
5
+ attr_reader :time, :hour, :min
6
+
7
+ def to_minutes
8
+ hour * 60 + min
9
+ end
10
+
11
+ def mongoize
12
+ to_minutes
13
+ end
14
+
15
+ def to_i
16
+ to_minutes
17
+ end
18
+
19
+ def to_s
20
+ [hour.to_s.rjust(2, '0'), min.to_s.rjust(2, '0')].join(":")
21
+ end
22
+
23
+ def <=>(other)
24
+ self.to_i <=> other.to_i
25
+ end
26
+
27
+ private
28
+ def initialize(time)
29
+ @time = time
30
+ @hour, @min = time.split(':').map(&:to_i)
31
+ end
32
+
33
+ class << self
34
+ def from_minutes(object) # "10:15" = 10 * 60 + 15 = 615
35
+ hour, min = object.divmod(60)
36
+ str = [hour.to_s.rjust(2, '0'), min.to_s.rjust(2, '0')].join(":")
37
+ self.new(str)
38
+ end
39
+
40
+ def from_string(object) # "10:15"
41
+ self.new(object)
42
+ end
43
+
44
+ def demongoize(object)
45
+ case object
46
+ when Integer
47
+ self.from_minutes(object).to_s
48
+ else
49
+ raise TypeError
50
+ end
51
+ end
52
+
53
+ def mongoize(object)
54
+ case object
55
+ when Integer
56
+ self.from_minutes(object).mongoize
57
+ when String
58
+ self.from_string(object).mongoize
59
+ when self
60
+ object
61
+ else
62
+ raise TypeError
63
+ end
64
+ end
65
+
66
+ def evolve(object)
67
+ case object
68
+ when Integer
69
+ object
70
+ when self
71
+ object.mongoize
72
+ else
73
+ raise TypeError
74
+ end
75
+ end
76
+
77
+ end
78
+ end
79
+ end
80
+ end
@@ -0,0 +1,5 @@
1
+ module Mongoid
2
+ module DayTime
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,2 @@
1
+ require "mongoid/day_time/version"
2
+ require "mongoid/day_time/type"
@@ -0,0 +1,42 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "mongoid/day_time/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "mongoid-day_time"
8
+ spec.version = Mongoid::DayTime::VERSION
9
+ spec.authors = ["Artem Yegorov"]
10
+ spec.email = ["yegorov0725@yandex.ru"]
11
+
12
+ spec.summary = %q{Mongoid DayTime type}
13
+ spec.description = %q{Save time in minutes from midnight and show as 24-format string `HH:MM`}
14
+ spec.homepage = "https://github.com/Yegorov/mongoid-day_time"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ # if spec.respond_to?(:metadata)
20
+ # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
21
+
22
+ # spec.metadata["homepage_uri"] = spec.homepage
23
+ # spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
24
+ # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
25
+ # else
26
+ # raise "RubyGems 2.0 or newer is required to protect against " \
27
+ # "public gem pushes."
28
+ # end
29
+
30
+ # Specify which files should be added to the gem when it is released.
31
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
32
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
33
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
34
+ end
35
+ spec.bindir = "exe"
36
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
37
+ spec.require_paths = ["lib"]
38
+
39
+ spec.add_development_dependency "bundler", "~> 1.17"
40
+ spec.add_development_dependency "rake", "~> 10.0"
41
+ spec.add_development_dependency "rspec", "~> 3.0"
42
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mongoid-day_time
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Artem Yegorov
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-02-10 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.17'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.17'
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: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description: Save time in minutes from midnight and show as 24-format string `HH:MM`
56
+ email:
57
+ - yegorov0725@yandex.ru
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".travis.yml"
65
+ - Gemfile
66
+ - Gemfile.lock
67
+ - LICENSE.txt
68
+ - README.md
69
+ - Rakefile
70
+ - bin/console
71
+ - bin/rspec
72
+ - bin/setup
73
+ - lib/mongoid/day_time.rb
74
+ - lib/mongoid/day_time/type.rb
75
+ - lib/mongoid/day_time/version.rb
76
+ - mongoid-day_time.gemspec
77
+ homepage: https://github.com/Yegorov/mongoid-day_time
78
+ licenses:
79
+ - MIT
80
+ metadata: {}
81
+ post_install_message:
82
+ rdoc_options: []
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ requirements: []
96
+ rubygems_version: 3.0.1
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: Mongoid DayTime type
100
+ test_files: []