week_calendar 0.0.2

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: 59338a6e95339371f5376decaf09cfb3abb17288
4
+ data.tar.gz: f9e7317818378e8f4326fe2c8dc6ba4db34cdd28
5
+ SHA512:
6
+ metadata.gz: a081b00d7b81ef596e7ea64db8ff86d58d017788c56b4ced5e9835a05ac3bda0534260ba290a3d5b92a5f785afa690ce1fb2276f1dd95bd87719fba967d03fb9
7
+ data.tar.gz: 8519de8a8d6d24f312076b3961a16985fd31822cb6923ee1d51f9d4fb61f43b4a137ee3919b8fda6f9cbf557e9d9d5dc17aed00ef78730144095c418c9a6d009
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,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in weekly_calendar.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 backer
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,38 @@
1
+ # WeeklyCalendar
2
+
3
+ Generate weekly calendar table with detail times.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'week_calendar', require: 'weekly_calendar'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install weekly_calendar
18
+
19
+ ## Usage
20
+
21
+ In erb file:
22
+
23
+ <%= week_calender(@events) do |event|%>
24
+ <%= event.name %>
25
+ ....
26
+ <% end %>
27
+
28
+
29
+
30
+
31
+
32
+ ## Contributing
33
+
34
+ 1. Fork it ( http://github.com/zmbacker/weekly_calendar/fork )
35
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
36
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
37
+ 4. Push to the branch (`git push origin my-new-feature`)
38
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,7 @@
1
+ module WeeklyCalendar
2
+ class Railtie < Rails::Railtie
3
+ initializer "weekly_calendar.view_helpers" do
4
+ ActionView::Base.send :include, ViewHelpers
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module WeeklyCalendar
2
+ VERSION = "0.0.2"
3
+ end
@@ -0,0 +1,66 @@
1
+ module WeeklyCalendar
2
+ module ViewHelpers
3
+
4
+ def week_calender(events, options={}, &block)
5
+ raise 'WeeklyCalendar requires a block to be passed in' unless block_given?
6
+
7
+ opts = default_options
8
+ options.reverse_merge! opts
9
+ events ||= []
10
+ draw_calendar(events, options, block)
11
+ end
12
+
13
+ private
14
+
15
+ def default_options
16
+ {
17
+ :class => "table table-hover table-bordered",
18
+ :params => {},
19
+ }
20
+ end
21
+
22
+ def time_events(time, events, time_selector)
23
+ ending = time.at_end_of_hour
24
+ events.select { |e| time >= e.starting_at && ending <= e.ending_at }
25
+ end
26
+
27
+ def draw_calendar(events, options, block)
28
+ # times = ['9:00','9:30', '10:00', '10:30', '11:00', '11:30', '12:00', '12:30', '13:00', '13:30', '14:00', '14:30', '15:00', '15:30', '16:00', '16:30', '17:00', '17:30']
29
+ times = ['9:00', '10:00', '11:00', '12:00', '13:00', '14:00', '15:00', '16:00', '17:00', '18:00', '19:00', '20:00', '21:00', '22:00']
30
+
31
+ days = [Date.current, Date.current+1, Date.current+2]
32
+ tags = []
33
+ content_tag(:table, :class => options[:class]) do
34
+ tags << content_tag(:thead, content_tag(:tr, [content_tag(:th, '')].concat(days.collect { |d| content_tag :th, d.to_s(:short) }).join.html_safe))
35
+ tags << content_tag(:tbody) do
36
+ times.collect do |t|
37
+ content_tag(:tr) do
38
+ td_tags = []
39
+ td_tags << content_tag(:td, t)
40
+ td_tags << days.collect do |d|
41
+ content_tag(:td) do
42
+ divs = []
43
+ cell_time = DateTime.civil_from_format( :local ,d.year, d.month, d.day, t.split(":")[0].to_i, t.split(":")[1].to_i, 0 )
44
+ curr_events = time_events(cell_time, events, options[:time_selector])
45
+ if Time.zone.now > cell_time
46
+ content_tag(:div, '--')
47
+ else
48
+ if curr_events.empty? && options[:empty_date]
49
+ divs << options[:empty_date].call(cell_time)
50
+ else
51
+ divs << curr_events.collect{|event| block.call( event ) }
52
+ end
53
+ end
54
+ divs.join.html_safe
55
+ end # content_tag :td
56
+ end
57
+ td_tags.join.html_safe
58
+ end # content_tag :tr
59
+ end.join.html_safe
60
+ end # content_tag :tbody
61
+ tags.join.html_safe
62
+ end # content_tag :table
63
+ end
64
+
65
+ end
66
+ end
@@ -0,0 +1,7 @@
1
+ require "weekly_calendar/version"
2
+ require "weekly_calendar/view_helpers"
3
+ require "weekly_calendar/railtie"
4
+
5
+
6
+
7
+
@@ -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 'weekly_calendar/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "week_calendar"
8
+ spec.version = WeeklyCalendar::VERSION
9
+ spec.authors = ["Lester Zhao"]
10
+ spec.email = ["zm.backer@gmail.com"]
11
+ spec.summary = %q{make a simple weekly calendar with some events.}
12
+ spec.description = %q{Generate a weekly calendar easily.}
13
+ spec.homepage = ""
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.5"
22
+ spec.add_development_dependency "rake"
23
+ end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: week_calendar
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Lester Zhao
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-03-03 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.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
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: Generate a weekly calendar easily.
42
+ email:
43
+ - zm.backer@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - lib/weekly_calendar.rb
54
+ - lib/weekly_calendar/railtie.rb
55
+ - lib/weekly_calendar/version.rb
56
+ - lib/weekly_calendar/view_helpers.rb
57
+ - weekly_calendar.gemspec
58
+ homepage: ''
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.2.1
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: make a simple weekly calendar with some events.
82
+ test_files: []