rdoba 0.1 → 0.9
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 +19 -41
- data/LICENSE +5 -17
- data/README.md +9 -29
- data/Rakefile +38 -3
- data/features/bcd.feature +29 -0
- data/features/log.feature +206 -0
- data/features/step_definitions/bcd_steps.rb +69 -0
- data/features/step_definitions/log_steps.rb +164 -0
- data/features/support/env.rb +159 -0
- data/lib/rdoba.rb +31 -15
- data/lib/rdoba/_version_.rb +3 -0
- data/lib/rdoba/a.rb +50 -53
- data/lib/rdoba/bcd.rb +61 -0
- data/lib/rdoba/common.rb +42 -11
- data/lib/rdoba/debug.rb +4 -46
- data/lib/rdoba/{fenc.rb → fe.rb} +2 -1
- data/lib/rdoba/io.rb +47 -17
- data/lib/rdoba/log.rb +248 -0
- data/lib/rdoba/numeric.rb +59 -49
- data/lib/rdoba/strings.rb +4 -3
- data/lib/rdoba/version.rb +51 -3
- data/rdoba.gemspec +13 -9
- metadata +51 -19
data/rdoba.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
$:.push File.expand_path("../lib", __FILE__)
|
3
|
-
require "rdoba/
|
3
|
+
require "rdoba/_version_"
|
4
4
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = "rdoba"
|
@@ -9,17 +9,21 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.authors = [ 'Малъ Скрылёвъ (Malo Skrylevo)' ]
|
10
10
|
s.email = [ '3aHyga@gmail.com' ]
|
11
11
|
s.homepage = 'https://github.com/3aHyga/rdoba'
|
12
|
-
s.summary = 'Ruby extension library'
|
13
|
-
s.description = 'Ruby extension library. It extends Kernel, Object,
|
12
|
+
s.summary = 'Ruby extension library (Ruby DOBAvka)'
|
13
|
+
s.description = 'Ruby extension library. It extends Kernel, Object, ' +
|
14
|
+
'String, Hash, Array, and some other classes. Also allows ' +
|
15
|
+
'to log application state with debug lines to an io'
|
16
|
+
s.license = 'MIT'
|
14
17
|
|
15
18
|
s.rubyforge_project = "rdoba"
|
16
|
-
|
17
|
-
s.required_rubygems_version = '>= 1.6.0'
|
18
|
-
|
19
|
-
s.add_development_dependency("bundler", ">= 1.0.0")
|
20
|
-
|
21
19
|
s.files = `git ls-files`.split("\n")
|
22
20
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
23
21
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
24
|
-
s.require_paths = ["lib"]
|
22
|
+
s.require_paths = [ "lib" ]
|
23
|
+
s.extra_rdoc_files = [ 'README.md', 'LICENSE' ]
|
24
|
+
|
25
|
+
s.required_rubygems_version = '>= 1.6.0'
|
26
|
+
|
27
|
+
s.add_development_dependency 'bundler', '~> 1.3.1'
|
28
|
+
s.add_development_dependency 'cucumber'
|
25
29
|
end
|
metadata
CHANGED
@@ -1,34 +1,53 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdoba
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
5
|
-
prerelease:
|
4
|
+
version: '0.9'
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Малъ Скрылёвъ (Malo Skrylevo)
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2013-03-15 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: bundler
|
16
|
-
requirement:
|
17
|
-
none: false
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ~>
|
20
18
|
- !ruby/object:Gem::Version
|
21
|
-
version: 1.
|
19
|
+
version: 1.3.1
|
22
20
|
type: :development
|
23
21
|
prerelease: false
|
24
|
-
version_requirements:
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.3.1
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: cucumber
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
25
41
|
description: Ruby extension library. It extends Kernel, Object, String, Hash, Array,
|
26
|
-
and some other classes
|
42
|
+
and some other classes. Also allows to log application state with debug lines to
|
43
|
+
an io
|
27
44
|
email:
|
28
45
|
- 3aHyga@gmail.com
|
29
46
|
executables: []
|
30
47
|
extensions: []
|
31
|
-
extra_rdoc_files:
|
48
|
+
extra_rdoc_files:
|
49
|
+
- README.md
|
50
|
+
- LICENSE
|
32
51
|
files:
|
33
52
|
- .document
|
34
53
|
- .gitignore
|
@@ -37,16 +56,24 @@ files:
|
|
37
56
|
- LICENSE
|
38
57
|
- README.md
|
39
58
|
- Rakefile
|
59
|
+
- features/bcd.feature
|
60
|
+
- features/log.feature
|
61
|
+
- features/step_definitions/bcd_steps.rb
|
62
|
+
- features/step_definitions/log_steps.rb
|
63
|
+
- features/support/env.rb
|
40
64
|
- lib/rdoba.rb
|
65
|
+
- lib/rdoba/_version_.rb
|
41
66
|
- lib/rdoba/a.rb
|
67
|
+
- lib/rdoba/bcd.rb
|
42
68
|
- lib/rdoba/combinations.rb
|
43
69
|
- lib/rdoba/common.rb
|
44
70
|
- lib/rdoba/debug.rb
|
45
71
|
- lib/rdoba/deploy.rb
|
46
72
|
- lib/rdoba/dup.rb
|
47
|
-
- lib/rdoba/
|
73
|
+
- lib/rdoba/fe.rb
|
48
74
|
- lib/rdoba/hashorder.rb
|
49
75
|
- lib/rdoba/io.rb
|
76
|
+
- lib/rdoba/log.rb
|
50
77
|
- lib/rdoba/numeric.rb
|
51
78
|
- lib/rdoba/re.rb
|
52
79
|
- lib/rdoba/require.rb
|
@@ -59,30 +86,35 @@ files:
|
|
59
86
|
- test/rdoba_test.rb.stub
|
60
87
|
- test/test_rdoba.rb
|
61
88
|
homepage: https://github.com/3aHyga/rdoba
|
62
|
-
licenses:
|
89
|
+
licenses:
|
90
|
+
- MIT
|
91
|
+
metadata: {}
|
63
92
|
post_install_message:
|
64
93
|
rdoc_options: []
|
65
94
|
require_paths:
|
66
95
|
- lib
|
67
96
|
required_ruby_version: !ruby/object:Gem::Requirement
|
68
|
-
none: false
|
69
97
|
requirements:
|
70
|
-
- -
|
98
|
+
- - '>='
|
71
99
|
- !ruby/object:Gem::Version
|
72
100
|
version: '0'
|
73
101
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
74
|
-
none: false
|
75
102
|
requirements:
|
76
|
-
- -
|
103
|
+
- - '>='
|
77
104
|
- !ruby/object:Gem::Version
|
78
105
|
version: 1.6.0
|
79
106
|
requirements: []
|
80
107
|
rubyforge_project: rdoba
|
81
|
-
rubygems_version:
|
108
|
+
rubygems_version: 2.0.0
|
82
109
|
signing_key:
|
83
|
-
specification_version:
|
84
|
-
summary: Ruby extension library
|
110
|
+
specification_version: 4
|
111
|
+
summary: Ruby extension library (Ruby DOBAvka)
|
85
112
|
test_files:
|
113
|
+
- features/bcd.feature
|
114
|
+
- features/log.feature
|
115
|
+
- features/step_definitions/bcd_steps.rb
|
116
|
+
- features/step_definitions/log_steps.rb
|
117
|
+
- features/support/env.rb
|
86
118
|
- test/helper.rb
|
87
119
|
- test/rdoba_test.rb.stub
|
88
120
|
- test/test_rdoba.rb
|