mcal 0.0.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: 6431415bca9b00eea97d3272c50291466242e4f5
4
+ data.tar.gz: 03e3dbe6376ff6aa03a795a5a1ccd94d6946a126
5
+ SHA512:
6
+ metadata.gz: 13b10833c950f6ee6a3b9f7e722cfaa3c21feec8724fb2f943536b869ab67bd2f917a4897ed843fc1d4f8b19306f55244e7c2a10a10e379d2f4d889ddc260dff
7
+ data.tar.gz: a9f62118b7c7d77e8c2805e79f90c0da3376591ef6f29f7a3a16b7a5e6dfc5f6019dc84a809caae0304e50ea09e5b6b35145fc10bf8c40e3421d8c81a8d053c2
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Jonathan Roes
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # mcal
2
+
3
+ Generate a simply monthly calendar.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'mcal'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install mcal
18
+
19
+ ## Usage
20
+
21
+ It's a really simple library. You give it a year and a month, and it'll give you back a nested array of weeks in that month. It orders the days like a standard calendar; Sunday - Saturday.
22
+
23
+ TODO
24
+
25
+ ```ruby
26
+ calendar = Calendar.new(2013)
27
+ calendar.monthly(2)
28
+ ```
29
+
30
+ ## Contributing
31
+
32
+ 1. Fork it
33
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
34
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
35
+ 4. Push to the branch (`git push origin my-new-feature`)
36
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,34 @@
1
+ require 'date'
2
+
3
+ module Mcal
4
+ class Calendar
5
+ def initialize(year, holidays=[])
6
+ @year = year
7
+ @holidays = holidays
8
+ end
9
+
10
+ def monthly(month, &block)
11
+ block ||= lambda { |day| day.mday }
12
+ by_day = Date.new(@year, month, -1)
13
+ week = Array.new(7, nil)
14
+ weeks = []
15
+ Date.new(@year, month).step(by_day).each do |day|
16
+ if day.sunday?
17
+ week[0] = block.call(day)
18
+ else
19
+ week[day.cwday] = block.call(day)
20
+ end
21
+
22
+ # End the current week and start a new one
23
+ if day.saturday?
24
+ weeks << week
25
+ week = Array.new(7, nil)
26
+ end
27
+ end
28
+
29
+ # Add leftover week (if we didn't end exactly on a Saturday)
30
+ weeks << week if week.compact.any?
31
+ weeks
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,3 @@
1
+ module Mcal
2
+ VERSION = "0.0.1"
3
+ end
data/lib/mcal.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "mcal/version"
2
+ require "mcal/calendar"
3
+
4
+ module Mcal
5
+ end
data/mcal.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'mcal/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "mcal"
8
+ spec.version = Mcal::VERSION
9
+ spec.authors = ["Jonathan Roes"]
10
+ spec.email = ["jroes@jroes.net"]
11
+ spec.description = "Simple monthly calendar generator."
12
+ spec.summary = "Generates a monthly calendar in the form of nested arrays."
13
+ spec.homepage = "https://github.com/jroes/mcal"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ end
@@ -0,0 +1,34 @@
1
+ require 'minitest/autorun'
2
+ require 'mcal'
3
+
4
+ describe Mcal::Calendar do
5
+ it "returns Sun-Sat weeks" do
6
+ calendar = Mcal::Calendar.new(2013)
7
+ jan = 1 # First month of the year
8
+
9
+ calendar.monthly(jan).must_equal [
10
+ [nil, nil, 1, 2, 3, 4, 5],
11
+ [6, 7, 8, 9, 10, 11, 12],
12
+ [13, 14, 15, 16, 17, 18, 19],
13
+ [20, 21, 22, 23, 24, 25, 26],
14
+ [27, 28, 29, 30, 31, nil, nil]
15
+ ]
16
+ end
17
+
18
+ it "shows custom daily output" do
19
+ calendar = Mcal::Calendar.new(2013)
20
+ holidays = [
21
+ Date.new(2013, 12, 24),
22
+ Date.new(2013, 12, 25)
23
+ ]
24
+ dec = 12
25
+
26
+ calendar.monthly(dec) { |d| holidays.include?(d) ? 'H' : d.mday }.must_equal [
27
+ [1, 2, 3, 4, 5, 6, 7],
28
+ [8, 9, 10, 11, 12, 13, 14],
29
+ [15, 16, 17, 18, 19, 20, 21],
30
+ [22, 23, 'H', 'H', 26, 27, 28],
31
+ [29, 30, 31, nil, nil, nil, nil]
32
+ ]
33
+ end
34
+ end
metadata ADDED
@@ -0,0 +1,83 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mcal
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jonathan Roes
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-04-06 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.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
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
+ description: Simple monthly calendar generator.
42
+ email:
43
+ - jroes@jroes.net
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - lib/mcal.rb
54
+ - lib/mcal/calendar.rb
55
+ - lib/mcal/version.rb
56
+ - mcal.gemspec
57
+ - test/calendar_test.rb
58
+ homepage: https://github.com/jroes/mcal
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - '>='
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.0.0
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: Generates a monthly calendar in the form of nested arrays.
82
+ test_files:
83
+ - test/calendar_test.rb