kotoba 0.0.0
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.
- checksums.yaml +7 -0
- data/.gitignore +4 -0
- data/Gemfile +3 -0
- data/README.md +3 -0
- data/bin/kotoba +1 -0
- data/kotoba.gemspec +22 -0
- data/lib/kotoba.rb +0 -0
- metadata +52 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: fd4e79037c07cd5c5e31330beb1524d072a5d094
|
|
4
|
+
data.tar.gz: b625a0273401cf89fcc3dc091a154a110efc53eb
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: f747f06b73c5a070fed372cd1015eb9e74a23ae9c00d66777225fbcc35a8f67451c541e7bfd3a53377cac8377e84adaf587e93dad16ab5d4303ee725e3b31ca6
|
|
7
|
+
data.tar.gz: ae3ba31e3e51af1c8b9071ab0f69dd297067e8c797e43f16a8907bc64fdbb858e4d012bab1a6eecae8e4eb509159f29f95ab654f071a28ba18580f9805e51cf5
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
data/bin/kotoba
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
data/kotoba.gemspec
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# encoding: utf-8
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |gem|
|
|
4
|
+
gem.authors = [
|
|
5
|
+
"Tom de Bruijn"
|
|
6
|
+
]
|
|
7
|
+
gem.email = [
|
|
8
|
+
"tom@tomdebruijn.com"
|
|
9
|
+
]
|
|
10
|
+
gem.description = "Book manager in Ruby"
|
|
11
|
+
gem.summary = "Book manager in Ruby"
|
|
12
|
+
gem.homepage = "http://github.com/machinery/kotoba"
|
|
13
|
+
gem.license = "MIT"
|
|
14
|
+
|
|
15
|
+
gem.files = `git ls-files`.split($\)
|
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
|
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
18
|
+
gem.name = "kotoba"
|
|
19
|
+
gem.require_paths = ["lib"]
|
|
20
|
+
gem.executables = ["kotoba"]
|
|
21
|
+
gem.version = "0.0.0"
|
|
22
|
+
end
|
data/lib/kotoba.rb
ADDED
|
File without changes
|
metadata
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: kotoba
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Tom de Bruijn
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2013-06-07 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Book manager in Ruby
|
|
14
|
+
email:
|
|
15
|
+
- tom@tomdebruijn.com
|
|
16
|
+
executables:
|
|
17
|
+
- kotoba
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- .gitignore
|
|
22
|
+
- Gemfile
|
|
23
|
+
- README.md
|
|
24
|
+
- bin/kotoba
|
|
25
|
+
- kotoba.gemspec
|
|
26
|
+
- lib/kotoba.rb
|
|
27
|
+
homepage: http://github.com/machinery/kotoba
|
|
28
|
+
licenses:
|
|
29
|
+
- MIT
|
|
30
|
+
metadata: {}
|
|
31
|
+
post_install_message:
|
|
32
|
+
rdoc_options: []
|
|
33
|
+
require_paths:
|
|
34
|
+
- lib
|
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - '>='
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
41
|
+
requirements:
|
|
42
|
+
- - '>='
|
|
43
|
+
- !ruby/object:Gem::Version
|
|
44
|
+
version: '0'
|
|
45
|
+
requirements: []
|
|
46
|
+
rubyforge_project:
|
|
47
|
+
rubygems_version: 2.0.3
|
|
48
|
+
signing_key:
|
|
49
|
+
specification_version: 4
|
|
50
|
+
summary: Book manager in Ruby
|
|
51
|
+
test_files: []
|
|
52
|
+
has_rdoc:
|