taipu 0.0.1 → 0.0.2
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 +4 -4
- data/README.md +6 -6
- data/Rakefile +1 -1
- data/VERSION.semver +1 -1
- data/lib/taipu/file.rb +8 -0
- data/taipu.gemspec +2 -1
- metadata +17 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b12d44f2bfbbaa94d45b227167b9e331eab887a6
|
|
4
|
+
data.tar.gz: 2599706e56aa52356cd41b3876195b2976edac5f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea0c608f2dc7e6afb70106daf6a1e3872fb1ed29fb69b5c68e49156e2f3c4232b1e1e6c7a48a50376b5195bcdd150b491e01ab129033a779e827a32936865266
|
|
7
|
+
data.tar.gz: 184a46d9a6f6c6909546a0e27c87198e41bc3b6e56ec0df3a5323917bd011ed18a0fc4ca3c3e4b305d009dd4d145242b34ee965f9200009923ca723ba37a25b9
|
data/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
# Taipu
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.org/cyril/taipu)
|
|
4
|
-
[](https://gemnasium.com/cyril/taipu)
|
|
3
|
+
[](https://travis-ci.org/cyril/taipu.rb)
|
|
4
|
+
[](https://gemnasium.com/cyril/taipu.rb)
|
|
5
5
|
[](https://rubygems.org/gems/taipu)
|
|
6
|
-
[](http://inch-ci.org/github/cyril/taipu)
|
|
6
|
+
[](http://inch-ci.org/github/cyril/taipu.rb)
|
|
7
7
|
[](http://rubydoc.info/gems/taipu/frames)
|
|
8
8
|
|
|
9
9
|
> taipuation library with some built-in matchers for Ruby.
|
|
10
10
|
|
|
11
11
|
## Contact
|
|
12
12
|
|
|
13
|
-
* Home page: https://github.com/cyril/taipu
|
|
14
|
-
* Bugs/issues: https://github.com/cyril/taipu/issues
|
|
13
|
+
* Home page: https://github.com/cyril/taipu.rb
|
|
14
|
+
* Bugs/issues: https://github.com/cyril/taipu.rb/issues
|
|
15
15
|
* Support: https://stackoverflow.com/questions/tagged/taipu
|
|
16
16
|
|
|
17
17
|
## Rubies
|
|
@@ -42,7 +42,7 @@ __Taipu__ follows [Semantic Versioning 2.0](http://semver.org/).
|
|
|
42
42
|
|
|
43
43
|
## Contributing
|
|
44
44
|
|
|
45
|
-
1. [Fork it](https://github.com/cyril/taipu/fork)
|
|
45
|
+
1. [Fork it](https://github.com/cyril/taipu.rb/fork)
|
|
46
46
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
47
47
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
48
48
|
4. Push to the branch (`git push origin my-new-feature`)
|
data/Rakefile
CHANGED
data/VERSION.semver
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.2
|
data/lib/taipu/file.rb
ADDED
data/taipu.gemspec
CHANGED
|
@@ -6,7 +6,7 @@ Gem::Specification.new do |spec|
|
|
|
6
6
|
|
|
7
7
|
spec.summary = 'Collections of types.'
|
|
8
8
|
spec.description = 'Collections of types for Ruby.'
|
|
9
|
-
spec.homepage = 'https://github.com/cyril/taipu'
|
|
9
|
+
spec.homepage = 'https://github.com/cyril/taipu.rb'
|
|
10
10
|
spec.license = 'MIT'
|
|
11
11
|
|
|
12
12
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(/^test\//) }
|
|
@@ -18,4 +18,5 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.add_development_dependency 'yard', '~> 0.8'
|
|
19
19
|
spec.add_development_dependency 'simplecov', '~> 0.9.1'
|
|
20
20
|
spec.add_development_dependency 'rubocop', '~> 0.29'
|
|
21
|
+
spec.add_development_dependency 'expect', '~> 0.0.6'
|
|
21
22
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: taipu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cyril Wack
|
|
@@ -80,6 +80,20 @@ dependencies:
|
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0.29'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: expect
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 0.0.6
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: 0.0.6
|
|
83
97
|
description: Collections of types for Ruby.
|
|
84
98
|
email:
|
|
85
99
|
- contact@cyril.email
|
|
@@ -102,11 +116,12 @@ files:
|
|
|
102
116
|
- lib/taipu/array.rb
|
|
103
117
|
- lib/taipu/base.rb
|
|
104
118
|
- lib/taipu/boolean.rb
|
|
119
|
+
- lib/taipu/file.rb
|
|
105
120
|
- lib/taipu/hash.rb
|
|
106
121
|
- lib/taipu/number.rb
|
|
107
122
|
- lib/taipu/string.rb
|
|
108
123
|
- taipu.gemspec
|
|
109
|
-
homepage: https://github.com/cyril/taipu
|
|
124
|
+
homepage: https://github.com/cyril/taipu.rb
|
|
110
125
|
licenses:
|
|
111
126
|
- MIT
|
|
112
127
|
metadata: {}
|