eucalyptus 0.2.6 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f0ac219f3956636cf7cc61c83e54c86f449d5a13
4
- data.tar.gz: ed03a0e6574bb409249399a360a5104dd18bd0fb
3
+ metadata.gz: 30b866963f49e1d4da6a2d5a0a34a803dbd0eb2d
4
+ data.tar.gz: 9201ad4d0ed6b4870f6588e3fc74cb528f01b959
5
5
  SHA512:
6
- metadata.gz: 72c66fd379da90d67a3ff59b940e41f49de69dd22ed32e805d3907dcf309b1e407328fc9f5f03aa85e82fb4a6d45a409fcc8d8d26ae07a99c655cdef5ff07c29
7
- data.tar.gz: 3e9aafb2fc77cfd1af8a34e29b6cb6568c39084e09dc3bd5a64e2f1780a55e804568381472ab448cd4b516293b31ec0899e6fc9b121d470f3fb07fbf4934a34d
6
+ metadata.gz: ca21567e4d952cdaa449550c4f12afb6998d96dd365cb7e2570872e43cb61525f724c33501421dc1eb8d48c9eadacaa6fb61c245f272d48350975d79a9140984
7
+ data.tar.gz: 3f8d90d8241119f0d61e8cd8ed4eb5fe291358193d2d2fdf4fe41d5fbd135035c3c0918aa3798645bc633b8587cd902a55db53d692033772b5705ba4c69b008b
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.6
1
+ 0.2.7
data/eucalyptus.gemspec CHANGED
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: eucalyptus 0.2.6 ruby lib
5
+ # stub: eucalyptus 0.2.7 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "eucalyptus"
9
- s.version = "0.2.6"
9
+ s.version = "0.2.7"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["Oguz Huner"]
14
- s.date = "2015-06-26"
14
+ s.date = "2015-06-28"
15
15
  s.description = "An easy interface and abstraction to the Facebook Ads API"
16
16
  s.email = "oguzcanhuner@gmail.com"
17
17
  s.extra_rdoc_files = [
@@ -30,6 +30,7 @@ module Eucalyptus
30
30
  response.collect{ |res| self.new(res) }
31
31
  end
32
32
 
33
+
33
34
  def initialize(response)
34
35
  @response = Response.new(response)
35
36
  end
@@ -42,6 +43,10 @@ module Eucalyptus
42
43
  @response.respond_to?(method_sym)
43
44
  end
44
45
 
46
+ def update(graph: Eucalyptus.graph, fields:)
47
+ graph.put_connections(self.id, "", fields)
48
+ end
49
+
45
50
  def ads(options={})
46
51
  Ad.all(parent: self, options: options)
47
52
  end
@@ -101,6 +101,11 @@ describe Eucalyptus::Resource do
101
101
 
102
102
  describe '#update' do
103
103
  it 'updates a resource' do
104
+ VCR.use_cassette("updating_adset") do
105
+ graph = double(:graph, put_connections: {success: true})
106
+ ad_set = Eucalyptus::AdSet.find(6025097880671)
107
+ expect(ad_set.update(graph: graph, fields: {bid_type: "CPM"})).to eql({success: true})
108
+ end
104
109
  end
105
110
  end
106
111
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eucalyptus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oguz Huner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-26 00:00:00.000000000 Z
11
+ date: 2015-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: koala