ttilley-time_crisis 0.0.2 → 0.0.3
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.
- data/VERSION.yml +1 -1
- data/lib/time_crisis.rb +5 -1
- data/time_crisis.gemspec +2 -2
- metadata +2 -2
data/VERSION.yml
CHANGED
data/lib/time_crisis.rb
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
module TimeCrisis; end
|
2
2
|
|
3
|
-
|
3
|
+
# the support directory is a simplified version of the same methods in
|
4
|
+
# ActiveSupport, and are completely unnecessary if we're actually
|
5
|
+
# using that library. I just didn't want to depend on it.
|
6
|
+
require 'time_crisis/support' unless defined?(ActiveSupport)
|
7
|
+
|
4
8
|
require 'time_crisis/meteorological_seasons'
|
5
9
|
require 'time_crisis/date_range'
|
6
10
|
require 'time_crisis/named_months'
|
data/time_crisis.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{time_crisis}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Travis Tilley"]
|
12
|
-
s.date = %q{2009-09-
|
12
|
+
s.date = %q{2009-09-21}
|
13
13
|
s.description = %q{date and time related extensions}
|
14
14
|
s.email = %q{ttilley@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ttilley-time_crisis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Travis Tilley
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-09-
|
12
|
+
date: 2009-09-21 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|