data_builder 0.1.0 → 0.2.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 +4 -4
- data/README.md +5 -5
- data/data_builder.gemspec +1 -1
- data/lib/data_builder/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24aa0d4e8e24c2d43cb2b24e4cf02cf87f5968bd
|
|
4
|
+
data.tar.gz: 03a81f95a587216a1407342171b0721a4cb93191
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a841011ab6f7c2fc74f1597845d3ecd60c7e4f909cd96eaa73ea025edb46d3fe8bf76d86eb289434aef72e16aaededaf59afe609f82b5d9d4635b745e0d099e3
|
|
7
|
+
data.tar.gz: c8c972df9e1544f92b48539db7595223ce45e7ae76ee8b382d1841e4244a2e2daaecf983fa37b602026df7d61264810f3d90d19b8fb3ed5add2663b46f49080c
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# DataBuilder
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/data_builder)
|
|
4
|
-
[](https://github.com/
|
|
4
|
+
[](https://github.com/jeffnyman/data_builder/blob/master/LICENSE.txt)
|
|
5
5
|
|
|
6
6
|
[](https://gemnasium.com/jnyman/data_builder)
|
|
7
7
|
|
|
@@ -25,7 +25,7 @@ You can also install DataBuilder just as you would any other gem:
|
|
|
25
25
|
|
|
26
26
|
## Usage
|
|
27
27
|
|
|
28
|
-
DataBuilder is using my [DataReader gem](https://github.com/
|
|
28
|
+
DataBuilder is using my [DataReader gem](https://github.com/jeffnyman/data_reader) to provide base-level functionality. Unlike DataReader, DataBuilder will assume some defaults. For example, you could do something as simple as this:
|
|
29
29
|
|
|
30
30
|
```ruby
|
|
31
31
|
require "data_builder"
|
|
@@ -142,7 +142,7 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
|
142
142
|
|
|
143
143
|
## Contributing
|
|
144
144
|
|
|
145
|
-
Bug reports and pull requests are welcome on GitHub at [https://github.com/
|
|
145
|
+
Bug reports and pull requests are welcome on GitHub at [https://github.com/jeffnyman/data_builder](https://github.com/jeffnyman/data_builder). The testing ecosystem of Ruby is very large and this project is intended to be a welcoming arena for collaboration on yet another testing tool. As such, contributors are very much welcome but are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
146
146
|
|
|
147
147
|
To contribute to DataBuilder:
|
|
148
148
|
|
|
@@ -162,5 +162,5 @@ This code is loosely based upon the [DataMagic](https://github.com/cheezy/data_m
|
|
|
162
162
|
|
|
163
163
|
## License
|
|
164
164
|
|
|
165
|
-
|
|
166
|
-
See the [LICENSE](https://github.com/
|
|
165
|
+
DataBuilder is distributed under the [MIT](http://www.opensource.org/licenses/MIT) license.
|
|
166
|
+
See the [LICENSE](https://github.com/jeffnyman/data_builder/blob/master/LICENSE.txt) file for details.
|
data/data_builder.gemspec
CHANGED
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{Provides expressive data set handling from YAML files.}
|
|
13
13
|
spec.description = %q{Provides expressive data set handling from YAML files.}
|
|
14
|
-
spec.homepage = "https://github.com/
|
|
14
|
+
spec.homepage = "https://github.com/jeffnyman/data_builder"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
data/lib/data_builder/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: data_builder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jeff Nyman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-10-
|
|
11
|
+
date: 2016-10-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -116,12 +116,12 @@ files:
|
|
|
116
116
|
- data_builder.gemspec
|
|
117
117
|
- lib/data_builder.rb
|
|
118
118
|
- lib/data_builder/version.rb
|
|
119
|
-
homepage: https://github.com/
|
|
119
|
+
homepage: https://github.com/jeffnyman/data_builder
|
|
120
120
|
licenses:
|
|
121
121
|
- MIT
|
|
122
122
|
metadata: {}
|
|
123
123
|
post_install_message: "\n(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)\n
|
|
124
|
-
\ DataBuilder 0.
|
|
124
|
+
\ DataBuilder 0.2.0 has been installed.\n(::) (::) (::) (::) (::) (::) (::) (::)
|
|
125
125
|
(::) (::) (::) (::)\n "
|
|
126
126
|
rdoc_options: []
|
|
127
127
|
require_paths:
|