compositor 1.0.0 → 1.0.1
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/compositor.gemspec +3 -2
- data/lib/compositor/version.rb +1 -1
- metadata +8 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a5579d42c800d76ab62fe943c825237b216cf84
|
|
4
|
+
data.tar.gz: c74728ad5a2cbb902926c7b7a18d2931a91dae3c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 39e18ac43d15623e0c3bdca5b6e6eb82960e99d6f1e5b1cac8786f0df97a7c4d1f5f2b7ae821dc2eb2ca6a97dde7203587923a1e457ab9915229fcc3860cd185
|
|
7
|
+
data.tar.gz: 550e32aa5840d1e228d2bab660a0e3fc725219f0e4984275319073106af1a6517fd15bc3e9c4e0db40131dc6fef5dc7cbb648876ff5e43deacefd57f331e3490
|
data/compositor.gemspec
CHANGED
|
@@ -4,9 +4,10 @@ require File.expand_path('../lib/compositor/version', __FILE__)
|
|
|
4
4
|
Gem::Specification.new do |gem|
|
|
5
5
|
gem.authors = ["Konstantin Gredeskoul","Paul Henry"]
|
|
6
6
|
gem.email = %w(kigster@gmail.com paul@wanelo.com)
|
|
7
|
-
gem.description = %q{
|
|
8
|
-
gem.summary = %q{Composite design pattern with a convenient DSL for building JSON/Hashes of complex objects}
|
|
7
|
+
gem.description = %q{Define simple "compositor" classes that represent your domain objects in terms of Hashes and Arrays, and then allows you to construct complex JSON API responses using compact DSL.}
|
|
8
|
+
gem.summary = %q{Composite design pattern with a convenient DSL for building JSON/Hashes of complex objects.}
|
|
9
9
|
gem.homepage = "https://github.com/wanelo/compositor"
|
|
10
|
+
gem.license = 'MIT'
|
|
10
11
|
|
|
11
12
|
gem.files = `git ls-files`.split($\)
|
|
12
13
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/compositor/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: compositor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Konstantin Gredeskoul
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-11-
|
|
12
|
+
date: 2013-11-21 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: oj
|
|
@@ -67,8 +67,9 @@ dependencies:
|
|
|
67
67
|
- - '>='
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
69
|
version: '0'
|
|
70
|
-
description:
|
|
71
|
-
of complex
|
|
70
|
+
description: Define simple "compositor" classes that represent your domain objects
|
|
71
|
+
in terms of Hashes and Arrays, and then allows you to construct complex JSON API
|
|
72
|
+
responses using compact DSL.
|
|
72
73
|
email:
|
|
73
74
|
- kigster@gmail.com
|
|
74
75
|
- paul@wanelo.com
|
|
@@ -108,7 +109,8 @@ files:
|
|
|
108
109
|
- spec/spec_helper.rb
|
|
109
110
|
- spec/support/sample_dsl.rb
|
|
110
111
|
homepage: https://github.com/wanelo/compositor
|
|
111
|
-
licenses:
|
|
112
|
+
licenses:
|
|
113
|
+
- MIT
|
|
112
114
|
metadata: {}
|
|
113
115
|
post_install_message:
|
|
114
116
|
rdoc_options: []
|
|
@@ -130,7 +132,7 @@ rubygems_version: 2.1.11
|
|
|
130
132
|
signing_key:
|
|
131
133
|
specification_version: 4
|
|
132
134
|
summary: Composite design pattern with a convenient DSL for building JSON/Hashes of
|
|
133
|
-
complex objects
|
|
135
|
+
complex objects.
|
|
134
136
|
test_files:
|
|
135
137
|
- spec/compositor/base_spec.rb
|
|
136
138
|
- spec/compositor/dsl_spec.rb
|