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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 37262e51d6ade8fa158c9d9f6de290736a0b3a51
4
- data.tar.gz: a6a308d7b28643974c4226153be1a0414a84084d
3
+ metadata.gz: f5352b37878c8f506236cce34e6d90b9bc079329
4
+ data.tar.gz: 6d02549269a82673793858e741f847c9519ea401
5
5
  SHA512:
6
- metadata.gz: 850cecb7dbc21a95ec11b7a055bcdb21238d436bcf9c51d26901d3c371fc507629d2ebe22afccdc21f75d855c9260afc696b51fdbc2bfee9c3936a1d7fefdcca
7
- data.tar.gz: 50745d11696618b5d276415608d4e7a6e25815d75d272abb6525e8d40ff00e71dde1afa782a51fae307417b92aa873e374ae0103a218ab37e5d68324ce25e979
6
+ metadata.gz: 585e2c0318453b71e023ad11cc427e657ce4c09320ce78e1081790267c6b2289a635ccdc853a9c30dcc1f9aec78bbdd0b27616e551ab26ba373f1a9451ba5745
7
+ data.tar.gz: 036eaaf49beda62497ec5cb3a34cf115224ce856741a9f8bd1fa8e9db0ac66f2b5e5ee80d741b04765da87a58ec9d32ec10bde392b50322f142853f112e8e450
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # praxis-blueprints changelog
2
2
 
3
+
4
+ ## 1.0.1
5
+
6
+ * Relaxed ActiveSupport version dependency (from 4 to >=3)
7
+
3
8
  ## 1.0
4
9
 
5
10
  Initial release!
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
@@ -4,6 +4,7 @@ require "bundler/gem_tasks"
4
4
 
5
5
  require 'rspec/core'
6
6
  require 'rspec/core/rake_task'
7
+ require 'bundler/gem_tasks'
7
8
 
8
9
  desc "Run RSpec code examples with simplecov"
9
10
  RSpec::Core::RakeTask.new do |spec|
@@ -1,3 +1,3 @@
1
1
  module Praxis
2
- BLUEPRINTS_VERSION = "1.0.0"
2
+ BLUEPRINTS_VERSION = "1.0.1"
3
3
  end
@@ -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>, ["~> 4"])
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.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: '4'
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: '4'
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.1
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