eucalyptus 0.2.7 → 0.2.8
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/VERSION +1 -1
- data/eucalyptus.gemspec +3 -3
- data/lib/eucalyptus/custom_audience.rb +8 -0
- data/spec/eucalyptus/custom_audience_spec.rb +15 -0
- 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: da78cd111e7620b54def99b4bdfa689050c23e06
|
4
|
+
data.tar.gz: 399db7eafe5be4c1bc1f5a56ec0799c72f877ceb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 29cc97be6abbfb412038ec3cae661f5292b4eb1fdd072429723645bc4dace397ea74d794754ee8f8c6ce5eb77aeb1fefe989c65a707aa4d3522432d8313edd71
|
7
|
+
data.tar.gz: 37885fba967c025c0c5f686c78db11ee699eda4a5fb295329f57bc5cc15eb0a3e509367e43d2c50cf942ef7b39b478ff46def05e7c8bcb1cfb4fa39a37bd9e16
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.8
|
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.
|
5
|
+
# stub: eucalyptus 0.2.8 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "eucalyptus"
|
9
|
-
s.version = "0.2.
|
9
|
+
s.version = "0.2.8"
|
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-
|
14
|
+
s.date = "2015-06-29"
|
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 = [
|
@@ -6,6 +6,14 @@ module Eucalyptus
|
|
6
6
|
"customaudiences"
|
7
7
|
end
|
8
8
|
|
9
|
+
def ad_sets
|
10
|
+
AdSet.all.collect do |ad_set|
|
11
|
+
if ad_set.targeting.custom_audiences
|
12
|
+
ad_set if ad_set.targeting.custom_audiences.any?{|a| a["id"] == self.id }
|
13
|
+
end
|
14
|
+
end.compact
|
15
|
+
end
|
16
|
+
|
9
17
|
def self.known_fields
|
10
18
|
[:name, :description]
|
11
19
|
end
|
@@ -1,4 +1,19 @@
|
|
1
1
|
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
|
2
2
|
|
3
3
|
describe Eucalyptus::CustomAudience do
|
4
|
+
before do
|
5
|
+
Eucalyptus.configure do |config|
|
6
|
+
config.access_token = ENV["ACCESS_TOKEN"]
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
describe '#ad_sets' do
|
11
|
+
it 'returns ad_sets which belong to the audience' do
|
12
|
+
VCR.use_cassette('audience_ad_sets') do
|
13
|
+
audience = Eucalyptus::CustomAudience.all.first
|
14
|
+
ad_sets = audience.ad_sets
|
15
|
+
expect(ad_sets.first.targeting.custom_audiences.first['id']).to eql audience.id
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
4
19
|
end
|
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.
|
4
|
+
version: 0.2.8
|
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-
|
11
|
+
date: 2015-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: koala
|