protopack 0.0.5 → 0.0.6
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.
- data/LICENSE.txt +2 -2
- data/lib/protopack/version.rb +1 -1
- data/protopack.gemspec +4 -3
- metadata +7 -5
data/LICENSE.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright (c) 2013
|
|
1
|
+
Copyright (c) 2013 Conan Dalton
|
|
2
2
|
|
|
3
3
|
MIT License
|
|
4
4
|
|
|
@@ -19,4 +19,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
19
19
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
20
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
21
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/lib/protopack/version.rb
CHANGED
data/protopack.gemspec
CHANGED
|
@@ -7,10 +7,11 @@ require 'protopack/version'
|
|
|
7
7
|
Gem::Specification.new do |gem|
|
|
8
8
|
gem.name = "protopack"
|
|
9
9
|
gem.version = Protopack::VERSION
|
|
10
|
-
gem.authors = ["
|
|
10
|
+
gem.authors = ["Conan Dalton"]
|
|
11
|
+
gem.license = 'MIT'
|
|
11
12
|
gem.email = ["conan@conandalton.net"]
|
|
12
|
-
gem.description = %q{Create objects from object definitions stored as files}
|
|
13
|
-
gem.summary = %q{Store packages of object prototypes on-disk as YML; this gem allows you scan each package for missing items and apply them to your repository.}
|
|
13
|
+
gem.description = %q{ Create objects from object definitions stored as files, like test fixtures, only intended for production use. }
|
|
14
|
+
gem.summary = %q{ Store packages of object prototypes on-disk as YML; this gem allows you scan each package for missing items and apply them to your repository. }
|
|
14
15
|
gem.homepage = "https://github.com/conanite/protopack"
|
|
15
16
|
|
|
16
17
|
gem.add_dependency 'hashie'
|
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: protopack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
|
-
-
|
|
8
|
+
- Conan Dalton
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-07-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: hashie
|
|
@@ -43,7 +43,8 @@ dependencies:
|
|
|
43
43
|
- - ~>
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
45
|
version: '2.9'
|
|
46
|
-
description: Create objects from object definitions stored as files
|
|
46
|
+
description: ! ' Create objects from object definitions stored as files, like test
|
|
47
|
+
fixtures, only intended for production use. '
|
|
47
48
|
email:
|
|
48
49
|
- conan@conandalton.net
|
|
49
50
|
executables: []
|
|
@@ -74,7 +75,8 @@ files:
|
|
|
74
75
|
- spec/protopack/packages/standard-widgets/yellow-widget-item.yml
|
|
75
76
|
- spec/spec_helper.rb
|
|
76
77
|
homepage: https://github.com/conanite/protopack
|
|
77
|
-
licenses:
|
|
78
|
+
licenses:
|
|
79
|
+
- MIT
|
|
78
80
|
post_install_message:
|
|
79
81
|
rdoc_options: []
|
|
80
82
|
require_paths:
|