funtimes 0.1.1 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/funtimes.gemspec +5 -5
- data/lib/funtimes.rb +3 -3
- data/lib/{date_range.rb → funtimes/date_range.rb} +0 -0
- data/lib/{month.rb → funtimes/month.rb} +1 -1
- data/lib/{quarter.rb → funtimes/quarter.rb} +0 -0
- metadata +7 -7
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.2.0
|
data/funtimes.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{funtimes}
|
8
|
-
s.version = "0.
|
8
|
+
s.version = "0.2.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Len Smith"]
|
12
|
-
s.date = %q{2010-07-
|
12
|
+
s.date = %q{2010-07-25}
|
13
13
|
s.description = %q{Manage date ranges, months and quarters}
|
14
14
|
s.email = %q{ignu.smith@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -24,10 +24,10 @@ Gem::Specification.new do |s|
|
|
24
24
|
"Rakefile",
|
25
25
|
"VERSION",
|
26
26
|
"funtimes.gemspec",
|
27
|
-
"lib/date_range.rb",
|
28
27
|
"lib/funtimes.rb",
|
29
|
-
"lib/
|
30
|
-
"lib/
|
28
|
+
"lib/funtimes/date_range.rb",
|
29
|
+
"lib/funtimes/month.rb",
|
30
|
+
"lib/funtimes/quarter.rb",
|
31
31
|
"spec/date_range_spec.rb",
|
32
32
|
"spec/month_spec.rb",
|
33
33
|
"spec/quarter_spec.rb",
|
data/lib/funtimes.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
require 'month'
|
2
|
-
require 'date_range'
|
3
|
-
require 'quarter'
|
1
|
+
require 'funtimes/month'
|
2
|
+
require 'funtimes/date_range'
|
3
|
+
require 'funtimes/quarter'
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 0
|
7
|
-
-
|
8
|
-
-
|
9
|
-
version: 0.
|
7
|
+
- 2
|
8
|
+
- 0
|
9
|
+
version: 0.2.0
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Len Smith
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-07-
|
17
|
+
date: 2010-07-25 00:00:00 -04:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -48,10 +48,10 @@ files:
|
|
48
48
|
- Rakefile
|
49
49
|
- VERSION
|
50
50
|
- funtimes.gemspec
|
51
|
-
- lib/date_range.rb
|
52
51
|
- lib/funtimes.rb
|
53
|
-
- lib/
|
54
|
-
- lib/
|
52
|
+
- lib/funtimes/date_range.rb
|
53
|
+
- lib/funtimes/month.rb
|
54
|
+
- lib/funtimes/quarter.rb
|
55
55
|
- spec/date_range_spec.rb
|
56
56
|
- spec/month_spec.rb
|
57
57
|
- spec/quarter_spec.rb
|