embark-journey 0.1.6 → 0.1.7
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/CHANGELOG.md +6 -0
- data/lib/active_resource/associations.rb +2 -2
- data/lib/journey/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc3442c576cca9a1d226240c75698f6bd3aedfbb
|
|
4
|
+
data.tar.gz: a1deb2ac3523e3bb1b19b8c863fb134d44c7a514
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 077244ca5e2e6b3e14d4474068678e968eb55304d7ddb5a13226a866f126cb53ed9293b080f79b28528fc84751d32cdca7295ef4937a4c9ca023367da9513149
|
|
7
|
+
data.tar.gz: 87d6e48a1182b6f5f7d07ddd142deefc9c4f6e51dac81f6294224492df47babb1b3a4769f9ddb6d63f3b0ebdc1bf57e613f95d890557f4ee182cd48813d9a0bf
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
v0.1.7
|
|
2
|
+
- Actually fixed denormalization issues. Fixed a nasty bug where an associated resource 404 would cause an infinite loop of GET requests.
|
|
3
|
+
|
|
4
|
+
v0.1.6
|
|
5
|
+
- Attempted to fix denormalization issues (based on embedded objects and association ids)
|
|
6
|
+
|
|
1
7
|
v0.1.5
|
|
2
8
|
- Fixed a bug where in `where_multiple` and `count_multiple` that performed destructive options on the argument hash (methods now use `dup`)
|
|
3
9
|
|
|
@@ -126,8 +126,8 @@ module ActiveResource::Associations
|
|
|
126
126
|
end
|
|
127
127
|
|
|
128
128
|
define_method(method_name) do
|
|
129
|
-
if
|
|
130
|
-
|
|
129
|
+
if instance_variable_defined?(ivar_name)
|
|
130
|
+
instance_variable_get(ivar_name)
|
|
131
131
|
elsif attributes.include?(method_name)
|
|
132
132
|
attributes[method_name]
|
|
133
133
|
elsif association_id = send(finder_key)
|
data/lib/journey/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embark-journey
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dan Davey
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-12-
|
|
11
|
+
date: 2015-12-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: active_attr
|