data_builder 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a7a104b8ca0cab66dd4af88df664789da0f29738
4
- data.tar.gz: 70896d546ce15ebd607cee7110171845ff3690bc
3
+ metadata.gz: 24aa0d4e8e24c2d43cb2b24e4cf02cf87f5968bd
4
+ data.tar.gz: 03a81f95a587216a1407342171b0721a4cb93191
5
5
  SHA512:
6
- metadata.gz: f6613cff274038ce424c85841d690ae60688f77e365de5fccb0db8f266bb6a705e5caa8895b7afa61d6934e86f7a9a20e394e6dfd3a338fb29db60c5e40d3a34
7
- data.tar.gz: 57effa8bcfc6c8d852821440f3abc2f93ba641ebc4a08517bda1a0dbda30d2b1e528e93ec9e5bc9df2e0e59db3b896d170e8126459f54102250126766c08c734
6
+ metadata.gz: a841011ab6f7c2fc74f1597845d3ecd60c7e4f909cd96eaa73ea025edb46d3fe8bf76d86eb289434aef72e16aaededaf59afe609f82b5d9d4635b745e0d099e3
7
+ data.tar.gz: c8c972df9e1544f92b48539db7595223ce45e7ae76ee8b382d1841e4244a2e2daaecf983fa37b602026df7d61264810f3d90d19b8fb3ed5add2663b46f49080c
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # DataBuilder
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/data_builder.svg)](http://badge.fury.io/rb/data_builder)
4
- [![License](http://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jnyman/data_builder/blob/master/LICENSE.txt)
4
+ [![License](http://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jeffnyman/data_builder/blob/master/LICENSE.txt)
5
5
 
6
6
  [![Dependency Status](https://gemnasium.com/jnyman/data_builder.png)](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/jnyman/data_reader) to provide base-level functionality. Unlike DataReader, DataBuilder will assume some defaults. For example, you could do something as simple as this:
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/jnyman/data_builder](https://github.com/jnyman/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.
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
- DataReader is distributed under the [MIT](http://www.opensource.org/licenses/MIT) license.
166
- See the [LICENSE](https://github.com/jnyman/data_builder/blob/master/LICENSE.txt) file for details.
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/jnyman/data_builder"
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|
@@ -1,3 +1,3 @@
1
1
  module DataBuilder
2
- VERSION = "0.1.0".freeze
2
+ VERSION = "0.2.0".freeze
3
3
  end
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.1.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-17 00:00:00.000000000 Z
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/jnyman/data_builder
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.1.0 has been installed.\n(::) (::) (::) (::) (::) (::) (::) (::)
124
+ \ DataBuilder 0.2.0 has been installed.\n(::) (::) (::) (::) (::) (::) (::) (::)
125
125
  (::) (::) (::) (::)\n "
126
126
  rdoc_options: []
127
127
  require_paths: