time-lord-chinese 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- 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 +130 -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 +84 -0
- data/lib/time-lord/version.rb +3 -0
- data/test/base.rb +120 -0
- data/test/helper.rb +3 -0
- data/time-lord-chinese.gemspec +22 -0
- metadata +93 -0
data/test/helper.rb
ADDED
@@ -0,0 +1,22 @@
|
|
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-chinese"
|
7
|
+
s.version = TimeLord::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["Liu Lantao", "Kurtis Rainbolt-Greene","Simon Hørup Eskildsen"]
|
10
|
+
s.email = ["liulantao@gmail.com", "kurtisrainboltgreene@gmail.com","sirup@sirupsen.com"]
|
11
|
+
s.homepage = "http://github.com/Lax/time-lord-chinese#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
|
+
|
21
|
+
s.add_development_dependency "rake"
|
22
|
+
end
|
metadata
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: time-lord-chinese
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Liu Lantao
|
8
|
+
- Kurtis Rainbolt-Greene
|
9
|
+
- Simon Hørup Eskildsen
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2014-06-30 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rake
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- - ">="
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: '0'
|
29
|
+
description: This is a gem that adds a ton of extras to the Time class.
|
30
|
+
email:
|
31
|
+
- liulantao@gmail.com
|
32
|
+
- kurtisrainboltgreene@gmail.com
|
33
|
+
- sirup@sirupsen.com
|
34
|
+
executables: []
|
35
|
+
extensions: []
|
36
|
+
extra_rdoc_files: []
|
37
|
+
files:
|
38
|
+
- ".gitignore"
|
39
|
+
- ".rvmrc"
|
40
|
+
- ".yardoc/checksums"
|
41
|
+
- ".yardoc/objects/root.dat"
|
42
|
+
- ".yardoc/proxy_types"
|
43
|
+
- COPYRIGHT
|
44
|
+
- Gemfile
|
45
|
+
- README.md
|
46
|
+
- Rakefile
|
47
|
+
- doc/Time.html
|
48
|
+
- doc/TimeLord.html
|
49
|
+
- doc/_index.html
|
50
|
+
- doc/class_list.html
|
51
|
+
- doc/css/common.css
|
52
|
+
- doc/css/full_list.css
|
53
|
+
- doc/css/style.css
|
54
|
+
- doc/file.README.html
|
55
|
+
- doc/file_list.html
|
56
|
+
- doc/frames.html
|
57
|
+
- doc/index.html
|
58
|
+
- doc/js/app.js
|
59
|
+
- doc/js/full_list.js
|
60
|
+
- doc/js/jquery.js
|
61
|
+
- doc/method_list.html
|
62
|
+
- doc/top-level-namespace.html
|
63
|
+
- lib/time-lord.rb
|
64
|
+
- lib/time-lord/version.rb
|
65
|
+
- test/base.rb
|
66
|
+
- test/helper.rb
|
67
|
+
- time-lord-chinese.gemspec
|
68
|
+
homepage: http://github.com/Lax/time-lord-chinese#README
|
69
|
+
licenses: []
|
70
|
+
metadata: {}
|
71
|
+
post_install_message:
|
72
|
+
rdoc_options: []
|
73
|
+
require_paths:
|
74
|
+
- lib
|
75
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - ">="
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: '0'
|
80
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
requirements: []
|
86
|
+
rubyforge_project:
|
87
|
+
rubygems_version: 2.2.2
|
88
|
+
signing_key:
|
89
|
+
specification_version: 4
|
90
|
+
summary: Adding various bonuses to the Time class.
|
91
|
+
test_files:
|
92
|
+
- test/base.rb
|
93
|
+
- test/helper.rb
|