clock_angle_calculator 1.0.0
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 +7 -0
- data/.gitignore +9 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/clock_angle_calculator.iml +23 -0
- data/.idea/encodings.xml +4 -0
- data/.idea/misc.xml +4 -0
- data/.idea/modules.xml +8 -0
- data/.idea/scopes/scope_settings.xml +5 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +51 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/clock_angle_calculator.gemspec +34 -0
- data/lib/clock_angle_calculator/version.rb +3 -0
- data/lib/clock_angle_calculator.rb +47 -0
- metadata +110 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 3505c25e63bb86b606d31f7a6dfd5ccbef2038c4
|
|
4
|
+
data.tar.gz: f7b4dac021ec2cb277a8c5c77900e27d7b4531ef
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 72e85ebfc6901abfaae06b2ec62925dfc0333eef6a5285a6b65138721d8068dcbfb2c365ff1fd10780c328e5b7e49a2fc461c161311ad7425a4438fafc5177c8
|
|
7
|
+
data.tar.gz: 64eb84563ce2031baddf84d4e02b54007ef3b59f79ad7d313363ed266277c33425b1093d9d830ae3d7e8879a24eab004cd34c01b363dbf0398754dd699dcf28d
|
data/.gitignore
ADDED
data/.idea/.rakeTasks
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Settings><!--This file was automatically generated by Ruby plugin.
|
|
3
|
+
You are allowed to:
|
|
4
|
+
1. Remove rake task
|
|
5
|
+
2. Add existing rake tasks
|
|
6
|
+
To add existing rake tasks automatically delete this file and reload the project.
|
|
7
|
+
--><RakeGroup description="" fullCmd="" taksId="rake" /></Settings>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
|
3
|
+
<component name="FacetManager">
|
|
4
|
+
<facet type="gem" name="Ruby Gem">
|
|
5
|
+
<configuration>
|
|
6
|
+
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
|
7
|
+
<option name="GEM_APP_TEST_PATH" value="" />
|
|
8
|
+
<option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
|
|
9
|
+
</configuration>
|
|
10
|
+
</facet>
|
|
11
|
+
</component>
|
|
12
|
+
<component name="NewModuleRootManager">
|
|
13
|
+
<content url="file://$MODULE_DIR$" />
|
|
14
|
+
<orderEntry type="inheritedJdk" />
|
|
15
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.2.5, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.4.2, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v2.14.1, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v2.14.8, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v2.14.5, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v2.14.6, RVM: ruby-2.0.0-p353) [gem]" level="application" />
|
|
22
|
+
</component>
|
|
23
|
+
</module>
|
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
data/.idea/modules.xml
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/clock_angle_calculator.iml" filepath="$PROJECT_DIR$/.idea/clock_angle_calculator.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ChangeListManager">
|
|
4
|
+
<option name="TRACKING_ENABLED" value="true" />
|
|
5
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
6
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
7
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
8
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
9
|
+
</component>
|
|
10
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
|
11
|
+
<component name="CreatePatchCommitExecutor">
|
|
12
|
+
<option name="PATCH_PATH" value="" />
|
|
13
|
+
</component>
|
|
14
|
+
<component name="DaemonCodeAnalyzer">
|
|
15
|
+
<disable_hints />
|
|
16
|
+
</component>
|
|
17
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
|
18
|
+
<OptionsSetting value="true" id="Add" />
|
|
19
|
+
<OptionsSetting value="true" id="Remove" />
|
|
20
|
+
<OptionsSetting value="true" id="Checkout" />
|
|
21
|
+
<OptionsSetting value="true" id="Update" />
|
|
22
|
+
<OptionsSetting value="true" id="Status" />
|
|
23
|
+
<OptionsSetting value="true" id="Edit" />
|
|
24
|
+
<ConfirmationsSetting value="0" id="Add" />
|
|
25
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
|
26
|
+
</component>
|
|
27
|
+
<component name="RunManager">
|
|
28
|
+
<list size="0" />
|
|
29
|
+
</component>
|
|
30
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
|
31
|
+
<component name="TaskManager">
|
|
32
|
+
<task active="true" id="Default" summary="Default task">
|
|
33
|
+
<created>1434735704909</created>
|
|
34
|
+
<option name="number" value="Default" />
|
|
35
|
+
<updated>1434735704909</updated>
|
|
36
|
+
</task>
|
|
37
|
+
<servers />
|
|
38
|
+
</component>
|
|
39
|
+
<component name="VcsContentAnnotationSettings">
|
|
40
|
+
<option name="myLimit" value="2678400000" />
|
|
41
|
+
</component>
|
|
42
|
+
<component name="VcsManagerConfiguration">
|
|
43
|
+
<option name="myTodoPanelSettings">
|
|
44
|
+
<TodoPanelSettings />
|
|
45
|
+
</option>
|
|
46
|
+
</component>
|
|
47
|
+
<component name="XDebuggerManager">
|
|
48
|
+
<breakpoint-manager />
|
|
49
|
+
<watches-manager />
|
|
50
|
+
</component>
|
|
51
|
+
</project>
|
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2015 Andy LeRoy
|
|
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,41 @@
|
|
|
1
|
+
# ClockAngleCalculator
|
|
2
|
+
|
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/clock_angle_calculator`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
+
|
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Add this line to your application's Gemfile:
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
gem 'clock_angle_calculator'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
And then execute:
|
|
16
|
+
|
|
17
|
+
$ bundle
|
|
18
|
+
|
|
19
|
+
Or install it yourself as:
|
|
20
|
+
|
|
21
|
+
$ gem install clock_angle_calculator
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
TODO: Write usage instructions here
|
|
26
|
+
|
|
27
|
+
## Development
|
|
28
|
+
|
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
30
|
+
|
|
31
|
+
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).
|
|
32
|
+
|
|
33
|
+
## Contributing
|
|
34
|
+
|
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/clock_angle_calculator.
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
41
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "clock_angle_calculator"
|
|
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,34 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'clock_angle_calculator/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "clock_angle_calculator"
|
|
8
|
+
spec.version = ClockAngleCalculator::VERSION
|
|
9
|
+
spec.authors = ["Andy LeRoy"]
|
|
10
|
+
spec.email = ["apleroy@gmail.com"]
|
|
11
|
+
|
|
12
|
+
spec.summary = %q{This gem provides functionality for computing the angle between hour and minute hands on an analog clock.}
|
|
13
|
+
spec.description = %q{Given a datetime or an hour/minute value pair, this gem returns an angle (180 degrees or less) between the
|
|
14
|
+
hour and minute hands on a clock if the time were to be modeled on an analog clock.}
|
|
15
|
+
spec.homepage = ""
|
|
16
|
+
spec.license = "MIT"
|
|
17
|
+
|
|
18
|
+
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
|
19
|
+
# delete this section to allow pushing this gem to any host.
|
|
20
|
+
if spec.respond_to?(:metadata)
|
|
21
|
+
spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
|
22
|
+
else
|
|
23
|
+
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
27
|
+
spec.bindir = "exe"
|
|
28
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
29
|
+
spec.require_paths = ["lib"]
|
|
30
|
+
|
|
31
|
+
spec.add_development_dependency "bundler", "~> 1.10"
|
|
32
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
33
|
+
spec.add_development_dependency "rspec"
|
|
34
|
+
end
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
require "clock_angle_calculator/version"
|
|
2
|
+
|
|
3
|
+
module ClockAngleCalculator
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
#given a datetime, model the time on an analog clock
|
|
8
|
+
#return the angle between the hour and minute hands on the clock
|
|
9
|
+
def self.calculate_angle_datetime(datetime)
|
|
10
|
+
if datetime.is_a?(DateTime)
|
|
11
|
+
hour = datetime.strftime("%H").to_f
|
|
12
|
+
minute = datetime.strftime("%M").to_f
|
|
13
|
+
return calculate_angle_helper(hour, minute)
|
|
14
|
+
else
|
|
15
|
+
return nil
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
#given an hour and minute, model the time on an analog clock
|
|
20
|
+
#return the angle between the hour and minute hands on the clock
|
|
21
|
+
def self.calculate_angle(hour, minute)
|
|
22
|
+
return calculate_angle_helper(hour, minute)
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
#private helper method used to determine the angle
|
|
26
|
+
def self.calculate_angle_helper(hour, minute)
|
|
27
|
+
|
|
28
|
+
if hour < 0 || hour > 12 || minute < 0 || minute > 59
|
|
29
|
+
return nil
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
hourly_degree = (360.0 / 12.0)
|
|
33
|
+
minute_degree = (360.0 / 60.0)
|
|
34
|
+
|
|
35
|
+
minute_angle = (minute_degree * (minute % 60)).to_f
|
|
36
|
+
hour_angle = ((hourly_degree * (hour % 12)) + ((minute / 60.0) * hourly_degree)).to_f
|
|
37
|
+
|
|
38
|
+
angle = (hour_angle - minute_angle).abs
|
|
39
|
+
if angle > 180
|
|
40
|
+
angle = 360 - angle
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
return angle
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
private_class_method :calculate_angle_helper
|
|
47
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: clock_angle_calculator
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Andy LeRoy
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-06-19 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.10'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ~>
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.10'
|
|
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: '0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - '>='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
description: |-
|
|
56
|
+
Given a datetime or an hour/minute value pair, this gem returns an angle (180 degrees or less) between the
|
|
57
|
+
hour and minute hands on a clock if the time were to be modeled on an analog clock.
|
|
58
|
+
email:
|
|
59
|
+
- apleroy@gmail.com
|
|
60
|
+
executables: []
|
|
61
|
+
extensions: []
|
|
62
|
+
extra_rdoc_files: []
|
|
63
|
+
files:
|
|
64
|
+
- .gitignore
|
|
65
|
+
- .idea/.rakeTasks
|
|
66
|
+
- .idea/clock_angle_calculator.iml
|
|
67
|
+
- .idea/encodings.xml
|
|
68
|
+
- .idea/misc.xml
|
|
69
|
+
- .idea/modules.xml
|
|
70
|
+
- .idea/scopes/scope_settings.xml
|
|
71
|
+
- .idea/vcs.xml
|
|
72
|
+
- .idea/workspace.xml
|
|
73
|
+
- .rspec
|
|
74
|
+
- .travis.yml
|
|
75
|
+
- Gemfile
|
|
76
|
+
- LICENSE.txt
|
|
77
|
+
- README.md
|
|
78
|
+
- Rakefile
|
|
79
|
+
- bin/console
|
|
80
|
+
- bin/setup
|
|
81
|
+
- clock_angle_calculator.gemspec
|
|
82
|
+
- lib/clock_angle_calculator.rb
|
|
83
|
+
- lib/clock_angle_calculator/version.rb
|
|
84
|
+
homepage: ''
|
|
85
|
+
licenses:
|
|
86
|
+
- MIT
|
|
87
|
+
metadata:
|
|
88
|
+
allowed_push_host: 'TODO: Set to ''http://mygemserver.com'''
|
|
89
|
+
post_install_message:
|
|
90
|
+
rdoc_options: []
|
|
91
|
+
require_paths:
|
|
92
|
+
- lib
|
|
93
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
94
|
+
requirements:
|
|
95
|
+
- - '>='
|
|
96
|
+
- !ruby/object:Gem::Version
|
|
97
|
+
version: '0'
|
|
98
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - '>='
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '0'
|
|
103
|
+
requirements: []
|
|
104
|
+
rubyforge_project:
|
|
105
|
+
rubygems_version: 2.1.11
|
|
106
|
+
signing_key:
|
|
107
|
+
specification_version: 4
|
|
108
|
+
summary: This gem provides functionality for computing the angle between hour and
|
|
109
|
+
minute hands on an analog clock.
|
|
110
|
+
test_files: []
|