rmoriz-smartmonth 1.0.2 → 1.01

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 (3) hide show
  1. data/smartmonth.gemspec +1 -3
  2. metadata +1 -3
  3. data/rails/init.rb +0 -5
data/smartmonth.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "smartmonth"
3
- s.version = "1.0.2"
3
+ s.version = "1.01"
4
4
  s.date = "2008-09-06"
5
5
  s.summary = "Making months smarter in Ruby (and Rails)."
6
6
  s.email = "roland@moriz.de"
@@ -16,8 +16,6 @@ Gem::Specification.new do |s|
16
16
  "lib/smart_month/magic.rb",
17
17
  "lib/smart_month/math.rb",
18
18
  "lib/smart_month/util.rb",
19
- "rails",
20
- "rails/init.rb",
21
19
  "MIT-LICENSE",
22
20
  "Rakefile",
23
21
  # "rdoc/classes/Month.html",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rmoriz-smartmonth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: "1.01"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Derek Perez
@@ -31,8 +31,6 @@ files:
31
31
  - lib/smart_month/magic.rb
32
32
  - lib/smart_month/math.rb
33
33
  - lib/smart_month/util.rb
34
- - rails
35
- - rails/init.rb
36
34
  - MIT-LICENSE
37
35
  - Rakefile
38
36
  - README
data/rails/init.rb DELETED
@@ -1,5 +0,0 @@
1
- class ::Time
2
- def month
3
- return Month.new(self.mon,self.year)
4
- end
5
- end