saturday 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
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: