upcoming 0.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 250bbc397078aab7189913788bfce89c84195389
4
+ data.tar.gz: 5cdce22ca4d56607b031dddecd961b9e7db3e26b
5
+ SHA512:
6
+ metadata.gz: a40d327bda39041f5f4bc56b5ffedbc11a4fbd690e32074d89df1783ea80063776d10d5c9e935be165a0174cb0456055a645746e32d4b54ed21762463c85a523
7
+ data.tar.gz: 6b1918388fc8cb9d481780dda93f0bd2e99d0beee033035cd9f9f623a50dbb4b3253cdf182a9ddd7564f4fb7a646803c55c96455a872466514fe35597a86bf16
data/LICENSE.md ADDED
@@ -0,0 +1,7 @@
1
+ Copyright (C) 2014 David Lantos
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # upcoming
2
+
3
+ [![Build Status](https://travis-ci.org/sldblog/upcoming.svg)](https://travis-ci.org/sldblog/upcoming)
4
+
5
+ Recurring date sequence generator.
6
+
7
+ ## License
8
+
9
+ MIT
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require 'rake/testtask'
2
+
3
+ Rake::TestTask.new do |t|
4
+ t.libs << "spec"
5
+ t.test_files = FileList['spec/**/*_spec.rb', 'spec/**/*_helper.rb']
6
+ end
7
+
8
+ task :default => [:test]
@@ -0,0 +1,40 @@
1
+ require 'date'
2
+ require 'active_support/core_ext/string'
3
+
4
+ module Upcoming
5
+ class Factory
6
+ include Enumerable
7
+ attr_reader :options
8
+
9
+ def initialize(options = {})
10
+ @options = parse(options)
11
+ end
12
+
13
+ def each
14
+ from = @options[:from]
15
+ generator = Upcoming.const_get("#{@options[:every].to_s.classify}Generator").new
16
+ (1..Float::INFINITY).each do |n|
17
+ date = generator.next(from)
18
+ yield date
19
+ from = date
20
+ end
21
+ end
22
+
23
+ private
24
+
25
+ def parse(options)
26
+ options.dup.tap do |result|
27
+ result[:every] ||= :day
28
+ result[:from] ||= :today
29
+
30
+ if result[:from].is_a? String
31
+ iso = result[:from] =~ /\d{4}-\d{2}-\d{2}/
32
+ raise ArgumentError, 'Please use ISO dates (YYYY-MM-DD) as those are not ambigious.' unless iso
33
+ result[:from] = Date.parse(result[:from])
34
+ end
35
+ result[:from] = Date.today if result[:from] == :today
36
+ end
37
+ end
38
+
39
+ end
40
+ end
@@ -0,0 +1,7 @@
1
+ module Upcoming
2
+ class DayGenerator
3
+ def next(from)
4
+ from + 1
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,11 @@
1
+ module Upcoming
2
+ class WorkingDayGenerator
3
+ WEEKDAYS = (1..5)
4
+
5
+ def next(from)
6
+ date = from + 1
7
+ date += 1 until WEEKDAYS.include?(date.wday)
8
+ date
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,5 @@
1
+ module Upcoming
2
+ def self.for(config = {})
3
+ Upcoming::Factory.new(config)
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module Upcoming
2
+ VERSION = '0.0.1'
3
+ end
data/lib/upcoming.rb ADDED
@@ -0,0 +1,7 @@
1
+ require 'upcoming/version'
2
+ require 'upcoming/factory'
3
+ require 'upcoming/upcoming'
4
+
5
+ Dir[File.join(File.dirname(__FILE__), 'upcoming', 'generators', '**/*.rb')].each do |generator|
6
+ require generator
7
+ end
@@ -0,0 +1,72 @@
1
+ require 'spec_helper'
2
+
3
+ describe Upcoming::Factory do
4
+
5
+ let(:today) { Date.today }
6
+
7
+ context 'generates any number of dates' do
8
+ Given(:upcoming) { Upcoming::Factory.new }
9
+ Then { upcoming.take(2).size == 2 }
10
+ And { upcoming.take(20).size == 20 }
11
+ end
12
+
13
+ context 'configuration' do
14
+ When(:upcoming) { Upcoming::Factory.new(config) }
15
+ When(:options) { upcoming.options }
16
+
17
+ context 'defaults to daily recurrence from today' do
18
+ Given(:config) { {} }
19
+ Then { options == {every: :day, from: today} }
20
+ end
21
+
22
+ context 'options is configured through constructor' do
23
+ Given(:config) { {every: :bazooka, from: :other} }
24
+ Then { options == config }
25
+ end
26
+
27
+ context 'dates' do
28
+ context 'from dates other than strings are copied as-is' do
29
+ Given(:config) { {from: 42} }
30
+ Then { options[:from] == 42 }
31
+ end
32
+
33
+ context 'from date can be given as Date' do
34
+ Given(:config) { {from: Date.parse('2001-10-10')} }
35
+ Then { options[:from] == config[:from] }
36
+ end
37
+
38
+ context 'string ISO dates are converted automatically' do
39
+ Given(:config) { {from: '2000-01-01'} }
40
+ Then { options[:from] == Date.parse('2000-01-01') }
41
+ end
42
+
43
+ context 'non-ISO strings raise ambiguity error' do
44
+ Given(:config) { {from: '12/01/2000'} }
45
+ Then { upcoming.must_raise ArgumentError, /Please use ISO dates (YYYY-MM-DD) as those are not ambigious./ }
46
+ end
47
+ end
48
+ end
49
+
50
+ context 'execution' do
51
+ module Upcoming
52
+ class DeepThoughtGenerator
53
+ def next(from)
54
+ from + 42
55
+ end
56
+ end
57
+ end
58
+
59
+ Given(:upcoming) { Upcoming::Factory.new(every: :deep_thought) }
60
+
61
+ context 'invokes generator based on the name of "every" parameter' do
62
+ When(:result) { upcoming.first }
63
+ Then { result == today + 42 }
64
+ end
65
+
66
+ context 'invokes generator with previous result iteratively' do
67
+ When(:result) { upcoming.take(3) }
68
+ Then { result == [today + 42, today + 84, today + 126] }
69
+ end
70
+ end
71
+
72
+ end
@@ -0,0 +1,12 @@
1
+ require 'spec_helper'
2
+
3
+ describe Upcoming::DayGenerator do
4
+
5
+ Given(:subject) { Upcoming::DayGenerator.new }
6
+
7
+ context 'returns the following day' do
8
+ When(:result) { subject.next(Date.parse('2001-12-31')) }
9
+ Then { result == Date.parse('2002-01-01') }
10
+ end
11
+
12
+ end
@@ -0,0 +1,31 @@
1
+ require 'spec_helper'
2
+
3
+ describe Upcoming::WorkingDayGenerator do
4
+
5
+ Given(:subject) { Upcoming::WorkingDayGenerator.new }
6
+
7
+ context 'returns upcoming Monday when Friday, Saturday or Sunday are given' do
8
+ Given(:friday) { Date.parse('2014-06-13') }
9
+ Given(:saturday) { Date.parse('2014-06-14') }
10
+ Given(:sunday) { Date.parse('2014-06-15') }
11
+ Given(:monday) { Date.parse('2014-06-16') }
12
+
13
+ Then { subject.next(friday) == monday }
14
+ Then { subject.next(saturday) == monday }
15
+ Then { subject.next(sunday) == monday }
16
+ end
17
+
18
+ context 'returns next workday when given workday' do
19
+ Given(:monday) { Date.parse('2014-06-16') }
20
+ Given(:tuesday) { monday + 1 }
21
+ Given(:wednesday) { tuesday + 1 }
22
+ Given(:thursday) { wednesday + 1 }
23
+ Given(:friday) { thursday + 1 }
24
+
25
+ Then { subject.next(monday) == tuesday }
26
+ Then { subject.next(tuesday) == wednesday }
27
+ Then { subject.next(wednesday) == thursday }
28
+ Then { subject.next(thursday) == friday }
29
+ end
30
+
31
+ end
@@ -0,0 +1,4 @@
1
+ require 'minitest/autorun'
2
+ require 'minitest/given'
3
+
4
+ require 'upcoming'
metadata ADDED
@@ -0,0 +1,104 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: upcoming
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - David Lantos
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-06-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activesupport
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest-given
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: Generate recurring dates based on slightly more complex rules than usual
56
+ (eg. last working day every month)
57
+ email:
58
+ - david.lantos@gmail.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - LICENSE.md
64
+ - README.md
65
+ - Rakefile
66
+ - lib/upcoming.rb
67
+ - lib/upcoming/factory.rb
68
+ - lib/upcoming/generators/day_generator.rb
69
+ - lib/upcoming/generators/working_day_generator.rb
70
+ - lib/upcoming/upcoming.rb
71
+ - lib/upcoming/version.rb
72
+ - spec/factory_spec.rb
73
+ - spec/generators/day_generator_spec.rb
74
+ - spec/generators/working_day_generator_spec.rb
75
+ - spec/spec_helper.rb
76
+ homepage: https://github.com/sldblog/upcoming
77
+ licenses:
78
+ - MIT
79
+ metadata: {}
80
+ post_install_message:
81
+ rdoc_options: []
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: 1.9.3
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ requirements: []
95
+ rubyforge_project:
96
+ rubygems_version: 2.2.2
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: Recurring date generator
100
+ test_files:
101
+ - spec/factory_spec.rb
102
+ - spec/generators/day_generator_spec.rb
103
+ - spec/generators/working_day_generator_spec.rb
104
+ - spec/spec_helper.rb