conduit 0.5.0 → 0.5.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/lib/conduit.rb +1 -1
- data/lib/conduit/{response.rb → api_response.rb} +1 -1
- data/lib/conduit/core/action.rb +1 -1
- data/lib/conduit/version.rb +1 -1
- data/spec/classes/core/action_spec.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: 301fe394c81224d894f2fed09eee96cf39b4e036
|
|
4
|
+
data.tar.gz: 2b3b94a2f01a6910943e7f165354d08961b6e25f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fcdfd5a3a29f3bf2af433cdd1ab97a48c827ad814fb9e3ca9c8b704fbb8928cf55e1f121935cb8887c92361ec458f6883d5372e5bf9f5f89ef1d094cf368e24e
|
|
7
|
+
data.tar.gz: d18046fdb9b77f32036eb04500e41952e01933650257a29d809f4f33babf3a3846c5b8abd189de03331ecb6185b3ffcc9bd2649bb7e3e74bf0ffac81acfa2ace
|
data/lib/conduit.rb
CHANGED
data/lib/conduit/core/action.rb
CHANGED
data/lib/conduit/version.rb
CHANGED
|
@@ -44,7 +44,7 @@ shared_examples_for Conduit::Core::Action do
|
|
|
44
44
|
before { Excon.stub({}, body: response, status: 200) }
|
|
45
45
|
|
|
46
46
|
it 'returns a response wrapper' do
|
|
47
|
-
subject.perform.should be_a_kind_of(Conduit::
|
|
47
|
+
subject.perform.should be_a_kind_of(Conduit::ApiResponse)
|
|
48
48
|
end
|
|
49
49
|
|
|
50
50
|
it 'should return the raw_content' do
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: conduit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Kelley
|
|
@@ -129,6 +129,7 @@ executables: []
|
|
|
129
129
|
extensions: []
|
|
130
130
|
extra_rdoc_files: []
|
|
131
131
|
files:
|
|
132
|
+
- lib/conduit/api_response.rb
|
|
132
133
|
- lib/conduit/configuration.rb
|
|
133
134
|
- lib/conduit/core/action.rb
|
|
134
135
|
- lib/conduit/core/connection.rb
|
|
@@ -136,7 +137,6 @@ files:
|
|
|
136
137
|
- lib/conduit/core/parser.rb
|
|
137
138
|
- lib/conduit/core/render.rb
|
|
138
139
|
- lib/conduit/drivers/keep
|
|
139
|
-
- lib/conduit/response.rb
|
|
140
140
|
- lib/conduit/storage/aws.rb
|
|
141
141
|
- lib/conduit/storage/file.rb
|
|
142
142
|
- lib/conduit/storage.rb
|