streamsend 1.0.0.rc8 → 1.0.0.rc9

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NDExZGU1YWY0NTMzMTJkY2ExZjMzOWRhZTVkNDNhZmJhZTA0NjMyOQ==
4
+ YjEzNzYzY2I3YjdhZTY5ZmQ0YTg5ZDk2OTY1ZDBlYzk5M2YwYjZkMw==
5
5
  data.tar.gz: !binary |-
6
- M2NhNGExYmY2YTEzZjZlZTgyZGE0ZjY4Y2I3MmQ3NGEyN2I4ZjgwMA==
6
+ M2FiNmEwYTljNzM3NjM1YWRjMmRjNDM2ODEzYTFhNzNhOWMwOThhZg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZmI5YTg4MzgyNjkzYzZmOTdmZjMzZDdjZWFlYzJlMTQ4YmY0YTg1NTZkN2E1
10
- NjNjNjY3OTE4ZTk1NWIyNGRiZTU1MmJjNjg1NTYyNmE0OGJkOWM2NzI5ZjMy
11
- N2ZmYzJkMDlhNjUwZDg2YWQyZTM1MjhmM2E0ZjdlYmJhM2MxYTY=
9
+ M2FlNjdhYTZhOGYxODJjN2E4ODhhNGU3M2RmZTI5NWJiNzU0ZTg3ZTFmYzYz
10
+ Njg0NzAzYWFlZTg1NmYwMWRiZGEzYTRlNDY5MWIxZTRkNmVlZDk1Zjg5Njdk
11
+ ZTgzYjkyZWI4ZjZhODk3MmEzYTVmNjRjMGEzZWM2ZTUzMTk3ODk=
12
12
  data.tar.gz: !binary |-
13
- MTM4ODliM2NiNWZlYTY1ZmI0Nzc2NGMxMTM3Yzg5ZTY4OTJlOWM5NzJkYTJh
14
- ODJhY2Y4NGE5MDQ2ZDZhMmRjYzkwN2Y0OWM0NzNkOTAwMjBkMGQ5Y2NjYzg4
15
- ZmMwODlmOGNmMzc1MTI3NzMyYWNiMzRkNTMyYTNiZjE3ODBiZGE=
13
+ YzJmOGMwMTZmZTJhMTA1ZDQ5MDE0YTA0NzJjZDhiMGE2N2IwYmViNTU5ZGY5
14
+ YzRlMTc5ZTAzNmE4NGI2ZDM5YmIzZjAzNjFlOWFiMmE5MjAzOGM5NjI4OTk3
15
+ ZDQwZTdiMmUxMjhiNzYyZDc0MTBmNjVjZGM0MmQzNDIzNTlmOGY=
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- streamsend (1.0.0.rc8)
4
+ streamsend (1.0.0.rc9)
5
5
  activesupport (~> 3.2)
6
6
  builder
7
7
  httmultiparty
@@ -4,6 +4,9 @@ module StreamSend
4
4
  module Api
5
5
  module Owner
6
6
  class Index < StreamSend::Api::Call::Index
7
+ def id
8
+ URI::encode(@id)
9
+ end
7
10
  end
8
11
 
9
12
  class Show < StreamSend::Api::Call::Show
@@ -1,3 +1,3 @@
1
1
  module StreamSend
2
- VERSION = "1.0.0.rc8"
2
+ VERSION = "1.0.0.rc9"
3
3
  end
@@ -25,10 +25,11 @@ module StreamSend
25
25
  end
26
26
 
27
27
  describe Index do
28
- it "returns the owners" do
29
- pending "not implemented in web app yet"
28
+ it "creates, display, then destroy the owner(s)" do
29
+ #create an owner
30
30
  owners = StreamSend::Api::Owner::Index.new(session).execute
31
31
  expect(owners.count).to be > 0
32
+ #destroy the created owner
32
33
  end
33
34
  end
34
35
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: streamsend
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc8
4
+ version: 1.0.0.rc9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Yeo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-22 00:00:00.000000000 Z
11
+ date: 2014-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httmultiparty
@@ -247,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
247
247
  version: 1.3.1
248
248
  requirements: []
249
249
  rubyforge_project:
250
- rubygems_version: 2.1.10
250
+ rubygems_version: 2.2.1
251
251
  signing_key:
252
252
  specification_version: 4
253
253
  summary: Ruby wrapper for the StreamSend API.