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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7a67d23e561796ad3d9cc1de9181aa66b5ad7177
4
- data.tar.gz: 0804a2e12fa022ee9b92517d17170f5677d828ba
3
+ metadata.gz: b12d44f2bfbbaa94d45b227167b9e331eab887a6
4
+ data.tar.gz: 2599706e56aa52356cd41b3876195b2976edac5f
5
5
  SHA512:
6
- metadata.gz: ebb20472837838ef628bd78b521343ebf0e5f82646004f543238c61bba02ace0ade937d92d8f5c0405e6a36f6f64f07bdceeeaa4b184b7572a0a15f5a4bd4240
7
- data.tar.gz: d5649e71940f355fcb87417c70e6a9191dd31facc8ebe935b956841541c5ad9b15e1afae94affa1d23df3d2be32d6fc411bd7ca79c330051a308f35ebefd9157
6
+ metadata.gz: ea0c608f2dc7e6afb70106daf6a1e3872fb1ed29fb69b5c68e49156e2f3c4232b1e1e6c7a48a50376b5195bcdd150b491e01ab129033a779e827a32936865266
7
+ data.tar.gz: 184a46d9a6f6c6909546a0e27c87198e41bc3b6e56ec0df3a5323917bd011ed18a0fc4ca3c3e4b305d009dd4d145242b34ee965f9200009923ca723ba37a25b9
data/README.md CHANGED
@@ -1,17 +1,17 @@
1
1
  # Taipu
2
2
 
3
- [![Build Status](https://travis-ci.org/cyril/taipu.svg?branch=master)](https://travis-ci.org/cyril/taipu)
4
- [![Dependency Status](https://gemnasium.com/cyril/taipu.svg)](https://gemnasium.com/cyril/taipu)
3
+ [![Build Status](https://travis-ci.org/cyril/taipu.rb.svg?branch=master)](https://travis-ci.org/cyril/taipu.rb)
4
+ [![Dependency Status](https://gemnasium.com/cyril/taipu.rb.svg)](https://gemnasium.com/cyril/taipu.rb)
5
5
  [![Gem Version](http://img.shields.io/gem/v/taipu.svg)](https://rubygems.org/gems/taipu)
6
- [![Inline docs](http://inch-ci.org/github/cyril/taipu.svg?branch=master)](http://inch-ci.org/github/cyril/taipu)
6
+ [![Inline docs](http://inch-ci.org/github/cyril/taipu.rb.svg?branch=master)](http://inch-ci.org/github/cyril/taipu.rb)
7
7
  [![Documentation](http://img.shields.io/:yard-docs-38c800.svg)](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
@@ -15,4 +15,4 @@ namespace :test do
15
15
  end
16
16
 
17
17
  task(:doc_stats) { ruby '-S yard stats' }
18
- task default: [:test, :doc_stats]
18
+ task default: :test
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
@@ -0,0 +1,8 @@
1
+ require_relative 'base'
2
+
3
+ # Namespace for the Taipu library.
4
+ module Taipu
5
+ # The type file.
6
+ class File < Base
7
+ end
8
+ end
@@ -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.1
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: {}