time-lord 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/.rvmrc +49 -0
- data/.yardoc/checksums +2 -0
- data/.yardoc/objects/root.dat +0 -0
- data/.yardoc/proxy_types +2 -0
- data/COPYRIGHT +19 -0
- data/Gemfile +4 -0
- data/README.md +53 -0
- data/Rakefile +2 -0
- data/doc/Time.html +290 -0
- data/doc/TimeLord.html +93 -0
- data/doc/_index.html +100 -0
- data/doc/class_list.html +36 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +53 -0
- data/doc/css/style.css +318 -0
- data/doc/file.README.html +104 -0
- data/doc/file_list.html +38 -0
- data/doc/frames.html +13 -0
- data/doc/index.html +104 -0
- data/doc/js/app.js +203 -0
- data/doc/js/full_list.js +149 -0
- data/doc/js/jquery.js +16 -0
- data/doc/method_list.html +43 -0
- data/doc/top-level-namespace.html +90 -0
- data/lib/time-lord.rb +82 -0
- data/lib/time-lord/version.rb +3 -0
- data/test/base.rb +102 -0
- data/test/helper.rb +3 -0
- data/time-lord.gemspec +20 -0
- metadata +89 -0
data/test/helper.rb
ADDED
data/time-lord.gemspec
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "time-lord/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "time-lord"
|
7
|
+
s.version = TimeLord::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["Kurtis Rainbolt-Greene","Simon Hørup Eskildsen"]
|
10
|
+
s.email = ["kurtisrainboltgreene@gmail.com","sirup@sirupsen.com"]
|
11
|
+
s.homepage = "http://github.com/krainboltgreene/time-lord#README"
|
12
|
+
s.summary = %q{Adding various bonuses to the Time class.}
|
13
|
+
s.description = %q{This is a gem that adds a ton of extras to the Time class.}
|
14
|
+
|
15
|
+
|
16
|
+
s.files = `git ls-files`.split("\n")
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
end
|
metadata
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: time-lord
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.1.5
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Kurtis Rainbolt-Greene
|
9
|
+
- "Simon H\xC3\xB8rup Eskildsen"
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
|
14
|
+
date: 2011-03-16 00:00:00 -07:00
|
15
|
+
default_executable:
|
16
|
+
dependencies: []
|
17
|
+
|
18
|
+
description: This is a gem that adds a ton of extras to the Time class.
|
19
|
+
email:
|
20
|
+
- kurtisrainboltgreene@gmail.com
|
21
|
+
- sirup@sirupsen.com
|
22
|
+
executables: []
|
23
|
+
|
24
|
+
extensions: []
|
25
|
+
|
26
|
+
extra_rdoc_files: []
|
27
|
+
|
28
|
+
files:
|
29
|
+
- .gitignore
|
30
|
+
- .rvmrc
|
31
|
+
- .yardoc/checksums
|
32
|
+
- .yardoc/objects/root.dat
|
33
|
+
- .yardoc/proxy_types
|
34
|
+
- COPYRIGHT
|
35
|
+
- Gemfile
|
36
|
+
- README.md
|
37
|
+
- Rakefile
|
38
|
+
- doc/Time.html
|
39
|
+
- doc/TimeLord.html
|
40
|
+
- doc/_index.html
|
41
|
+
- doc/class_list.html
|
42
|
+
- doc/css/common.css
|
43
|
+
- doc/css/full_list.css
|
44
|
+
- doc/css/style.css
|
45
|
+
- doc/file.README.html
|
46
|
+
- doc/file_list.html
|
47
|
+
- doc/frames.html
|
48
|
+
- doc/index.html
|
49
|
+
- doc/js/app.js
|
50
|
+
- doc/js/full_list.js
|
51
|
+
- doc/js/jquery.js
|
52
|
+
- doc/method_list.html
|
53
|
+
- doc/top-level-namespace.html
|
54
|
+
- lib/time-lord.rb
|
55
|
+
- lib/time-lord/version.rb
|
56
|
+
- test/base.rb
|
57
|
+
- test/helper.rb
|
58
|
+
- time-lord.gemspec
|
59
|
+
has_rdoc: true
|
60
|
+
homepage: http://github.com/krainboltgreene/time-lord#README
|
61
|
+
licenses: []
|
62
|
+
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options: []
|
65
|
+
|
66
|
+
require_paths:
|
67
|
+
- lib
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
+
none: false
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: "0"
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
+
none: false
|
76
|
+
requirements:
|
77
|
+
- - ">="
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: "0"
|
80
|
+
requirements: []
|
81
|
+
|
82
|
+
rubyforge_project:
|
83
|
+
rubygems_version: 1.6.2
|
84
|
+
signing_key:
|
85
|
+
specification_version: 3
|
86
|
+
summary: Adding various bonuses to the Time class.
|
87
|
+
test_files:
|
88
|
+
- test/base.rb
|
89
|
+
- test/helper.rb
|