praxis-blueprints 2.0 → 2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7c736a4636406c8778b15c49639322310a4d27d7
4
- data.tar.gz: 58ffdbb7c7b247dc6db88506c7fd22991f99585b
3
+ metadata.gz: 66f44c7da0a75ef693bbe9ef10b3b592a700090d
4
+ data.tar.gz: 282cad83972b06bb4b185daf03407dffc7f086ac
5
5
  SHA512:
6
- metadata.gz: cc6e31dcdca27eda3345a5dc9c0d01b7f02263e10512e3141a7ce7b728581ee2d4323d913ae7618228a2ee809591c0952ce3ab4993d43745a4b4af451e053ab9
7
- data.tar.gz: b62ec6a3ac621567d1a52e9dde4b44a6a686bca2fca02eda414a753e4e3e7674b6875a02569aebe72241bf7384e10a8c6891f1e08a5a1eac621862f48afd814f
6
+ metadata.gz: 7a5256f895d130ff7c7fdc49e41f35899c775b118c226b44b559f7102a64564b87415760ce5f73531a82d275eb6b4cc2cada56e2fdadeea343a7ec4f76f009a2
7
+ data.tar.gz: f1bf843427801470ca5539614fd75ef18172109e73689f945e45e6761cd414a026b0cb34bb6bda6dec10de8f53c3fa9d952e748926bf019f621b3777836ad6ca
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # praxis-blueprints changelog
2
2
 
3
+ ## next
4
+
5
+ ## 2.0.1
6
+
7
+ * relaxed attributor dependency to >= 3.0
8
+
9
+
3
10
  ## 2.0
4
11
 
5
12
  * Fix `Blueprint.new` handling of caching when the wrapped object responds to `identity_map`, but does not have one set.
@@ -1,3 +1,3 @@
1
1
  module Praxis
2
- BLUEPRINTS_VERSION = "2.0"
2
+ BLUEPRINTS_VERSION = "2.0.1"
3
3
  end
@@ -20,7 +20,7 @@ it results in a structured hash instead of an encoded string. Blueprints can aut
20
20
  spec.require_paths = ["lib"]
21
21
 
22
22
  spec.add_runtime_dependency(%q<randexp>, ["~> 0"])
23
- spec.add_runtime_dependency(%q<attributor>, ["~> 3.0"])
23
+ spec.add_runtime_dependency(%q<attributor>, [">= 3.0"])
24
24
  spec.add_runtime_dependency(%q<activesupport>, [">= 3"])
25
25
 
26
26
  spec.add_development_dependency "bundler", "~> 1.6"
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: '2.0'
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josep M. Blanquer
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-06-22 00:00:00.000000000 Z
12
+ date: 2015-07-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: randexp
@@ -29,14 +29,14 @@ dependencies:
29
29
  name: attributor
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - "~>"
32
+ - - ">="
33
33
  - !ruby/object:Gem::Version
34
34
  version: '3.0'
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - "~>"
39
+ - - ">="
40
40
  - !ruby/object:Gem::Version
41
41
  version: '3.0'
42
42
  - !ruby/object:Gem::Dependency