saturday 1.0.1 → 1.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.
Files changed (2) hide show
  1. data/lib/saturday.rb +10 -9
  2. metadata +1 -1
data/lib/saturday.rb CHANGED
@@ -1,13 +1,14 @@
1
1
  class Saturday
2
- def self.by_year(year)
3
- date=Dates.new(year)
4
- date.find_saturdays
5
- end
6
2
 
7
- def self.by_year_and_month(year,month)
8
- date= Dates.new(year,month)
9
- date.find_saturdays
10
- end
11
-
3
+ @@by = ['by_year','by_year_and_month']
4
+ class << self
5
+ @@by.each do |method|
6
+ define_method(method) do |year=nil,month=nil|
7
+ date=Dates.new(year,month)
8
+ date.find_saturdays
9
+ end
10
+ end
12
11
  end
12
+ end
13
+
13
14
  require 'saturday/dates'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: saturday
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: