praxis-blueprints 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +5 -1
- data/Rakefile +1 -0
- data/lib/praxis-blueprints/version.rb +1 -1
- data/praxis-blueprints.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5352b37878c8f506236cce34e6d90b9bc079329
|
4
|
+
data.tar.gz: 6d02549269a82673793858e741f847c9519ea401
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 585e2c0318453b71e023ad11cc427e657ce4c09320ce78e1081790267c6b2289a635ccdc853a9c30dcc1f9aec78bbdd0b27616e551ab26ba373f1a9451ba5745
|
7
|
+
data.tar.gz: 036eaaf49beda62497ec5cb3a34cf115224ce856741a9f8bd1fa8e9db0ac66f2b5e5ee80d741b04765da87a58ec9d32ec10bde392b50322f142853f112e8e450
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
# Praxis Blueprints
|
1
|
+
# Praxis Blueprints [![TravisCI][travis-img-url]][travis-ci-url]
|
2
|
+
|
3
|
+
[travis-img-url]:https://travis-ci.org/rightscale/praxis-blueprints.svg?branch=master
|
4
|
+
[travis-ci-url]:https://travis-ci.org/rightscale/praxis-blueprints
|
5
|
+
|
2
6
|
|
3
7
|
Praxis Blueprints is a library that allows for defining a reusable class structures that has a set of typed attributes and a set of views with which to render them. Instantiations of Blueprints resemble ruby Structs which respond to methods of the attribute names. Rendering is format-agnostic in that
|
4
8
|
it results in a structured hash instead of an encoded string. Blueprints can automatically generate object structures that follow the attribute definitions.
|
data/Rakefile
CHANGED
data/praxis-blueprints.gemspec
CHANGED
@@ -22,7 +22,7 @@ it results in a structured hash instead of an encoded string. Blueprints can aut
|
|
22
22
|
|
23
23
|
spec.add_runtime_dependency(%q<randexp>, ["~> 0"])
|
24
24
|
spec.add_runtime_dependency(%q<attributor>, ["~> 2"])
|
25
|
-
spec.add_runtime_dependency(%q<activesupport>, ["
|
25
|
+
spec.add_runtime_dependency(%q<activesupport>, [">= 3"])
|
26
26
|
|
27
27
|
spec.add_development_dependency "bundler", "~> 1.6"
|
28
28
|
spec.add_development_dependency "rake", "~> 0"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: praxis-blueprints
|
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
|
- Josep M. Blanquer
|
@@ -43,16 +43,16 @@ dependencies:
|
|
43
43
|
name: activesupport
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
|
-
- - "
|
46
|
+
- - ">="
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: '
|
48
|
+
version: '3'
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
|
-
- - "
|
53
|
+
- - ">="
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: '
|
55
|
+
version: '3'
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
57
|
name: bundler
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
@@ -257,7 +257,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
257
257
|
version: '0'
|
258
258
|
requirements: []
|
259
259
|
rubyforge_project:
|
260
|
-
rubygems_version: 2.2.
|
260
|
+
rubygems_version: 2.2.2
|
261
261
|
signing_key:
|
262
262
|
specification_version: 4
|
263
263
|
summary: Attributes, views, rendering and example generation for common Blueprint
|