behance 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,141 @@
1
+ require 'spec_helper'
2
+
3
+ describe Behance::Client::User do
4
+
5
+ before(:all) do
6
+ @client = Behance::Client.new(access_token: "abc123")
7
+ end
8
+
9
+ before do
10
+ @options = { api_key: @client.access_token }
11
+ end
12
+
13
+ describe "#users" do
14
+ context "without parameters" do
15
+ before do
16
+ stub_get("users").with(query: @options).
17
+ to_return(body: fixture("users.json"))
18
+ @users = @client.users
19
+ end
20
+
21
+ it "makes a http request" do
22
+ a_get("users").
23
+ with(query: @options).should have_been_made
24
+ end
25
+
26
+ it "gets an users list" do
27
+ @users.size.should == 4
28
+ end
29
+ end
30
+
31
+ context "with parameters" do
32
+ before do
33
+ @options.merge!(q: "Juan", state: "CA")
34
+ stub_get("users").with(query: @options).
35
+ to_return(body: fixture("users.json"))
36
+ end
37
+
38
+ it "gets an users list" do
39
+ @users = @client.users(@options).size.should == 4
40
+ end
41
+ end
42
+ end
43
+
44
+ describe "#user" do
45
+ before do
46
+ stub_get("users/1").with(query: @options).
47
+ to_return(body: fixture("user.json"))
48
+ @user = @client.user(1)
49
+ end
50
+
51
+ it "makes a http request" do
52
+ a_get("users/1").
53
+ with(query: @options).should have_been_made
54
+ end
55
+
56
+ it "gets a single user" do
57
+ @user["id"].should == 50001
58
+ end
59
+ end
60
+
61
+ describe "#user_projects" do
62
+ context "without parameters" do
63
+ before do
64
+ stub_get("users/1/projects").with(query: @options).
65
+ to_return(body: fixture("user_projects.json"))
66
+ @projects = @client.user_projects(1)
67
+ end
68
+
69
+ it "makes a http request" do
70
+ a_get("users/1/projects").
71
+ with(query: @options).should have_been_made
72
+ end
73
+
74
+ it "gets a list of projects" do
75
+ @projects.size.should == 2
76
+ end
77
+ end
78
+
79
+ context "with parameters" do
80
+ before do
81
+ @options.stub!(page: 1, time: Time.new)
82
+ stub_get("users/1/projects").with(query: @options).
83
+ to_return(body: fixture("user_projects.json"))
84
+ end
85
+
86
+ it "gets a list of projects" do
87
+ @projects = @client.user_projects(1, @options).
88
+ size.should == 2
89
+ end
90
+ end
91
+ end
92
+
93
+ describe "#user_wips" do
94
+ context "without parameters" do
95
+ before do
96
+ stub_get("users/1/wips").with(query: @options).
97
+ to_return(body: fixture("user_wips.json"))
98
+ @wips = @client.user_wips(1)
99
+ end
100
+
101
+ it "makes a http request" do
102
+ a_get("users/1/wips").
103
+ with(query: @options).should have_been_made
104
+ end
105
+
106
+ it "gets a list of wips" do
107
+ @wips.size.should == 2
108
+ end
109
+ end
110
+
111
+ context "with parameters" do
112
+ before do
113
+ @options.merge!(sort: "appreciations", page: 2)
114
+ stub_get("users/1/wips").with(query: @options).
115
+ to_return(body: fixture("user_wips.json"))
116
+ end
117
+
118
+ it "gets a list of wips" do
119
+ @wips = @client.user_wips(1, @options).size.
120
+ should == 2
121
+ end
122
+ end
123
+ end
124
+
125
+ describe "#user_appreciations" do
126
+ before do
127
+ stub_get("users/1/appreciations").with(query: @options).
128
+ to_return(body: fixture("user_appreciations.json"))
129
+ @appreciations = @client.user_appreciations(1)
130
+ end
131
+
132
+ it "makes a http request" do
133
+ a_get("users/1/appreciations").with(query: @options).
134
+ should have_been_made
135
+ end
136
+
137
+ it "gets a list of appreciations" do
138
+ @appreciations.size.should == 4
139
+ end
140
+ end
141
+ end
@@ -0,0 +1,15 @@
1
+ {
2
+ "project": {
3
+ "id": 4889175,
4
+ "name": "Water Wigs",
5
+ "published_on": 1345563834,
6
+ "created_on": 1345562596,
7
+ "modified_on": 1346114403,
8
+ "url": "http://www.behance.net/gallery/Water-Wigs/4889175",
9
+ "fields": [
10
+ "Advertising",
11
+ "Photography",
12
+ "Visual Effects"
13
+ ]
14
+ }
15
+ }
@@ -0,0 +1,282 @@
1
+ {
2
+
3
+ "comments": [
4
+ {
5
+ "user": {
6
+ "id": 842075,
7
+ "first_name": "Learned Evolution",
8
+ "last_name": "",
9
+ "username": "LearnedEvolution",
10
+ "city": "Brooklyn",
11
+ "state": "New York",
12
+ "country": "United States",
13
+ "company": "Learned Evolution",
14
+ "occupation": "",
15
+ "created_on": 1325878952,
16
+ "url": "http://www.behance.net/LearnedEvolution",
17
+ "display_name": "Learned Evolution",
18
+ "images": {
19
+ "32": "http://behance.vo.llnwd.net/profiles8/842075/32x9acd77e69f02d29248fc8600232ce034.png",
20
+ "50": "http://behance.vo.llnwd.net/profiles8/842075/50x9acd77e69f02d29248fc8600232ce034.png",
21
+ "78": "http://behance.vo.llnwd.net/profiles8/842075/78x9acd77e69f02d29248fc8600232ce034.png",
22
+ "115": "http://behance.vo.llnwd.net/profiles8/842075/115x9acd77e69f02d29248fc8600232ce034.png",
23
+ "129": "http://behance.vo.llnwd.net/profiles8/842075/129x9acd77e69f02d29248fc8600232ce034.png",
24
+ "138": "http://behance.vo.llnwd.net/profiles8/842075/9acd77e69f02d29248fc8600232ce034.png"
25
+ },
26
+ "fields": [
27
+ "Design",
28
+ "Marketing",
29
+ "Video Arts"
30
+ ]
31
+ },
32
+ "comment": "It's the Bible at our office! One of the most inspiring books out there!",
33
+ "created_on": 1345478249
34
+ },
35
+ {
36
+ "user": {
37
+ "id": 183493,
38
+ "first_name": "Fahim",
39
+ "last_name": "MD",
40
+ "username": "workoffahimmd",
41
+ "city": "Toronto",
42
+ "state": "Ontario",
43
+ "country": "Canada",
44
+ "company": "Work Of Fahim MD",
45
+ "occupation": "Creative Designer",
46
+ "created_on": 1277406314,
47
+ "url": "http://www.behance.net/workoffahimmd",
48
+ "display_name": "Fahim MD",
49
+ "images": {
50
+ "32": "http://behance.vo.llnwd.net/profiles4/183493/32x661ae522810f714aa781c7224970ae91.png",
51
+ "50": "http://behance.vo.llnwd.net/profiles4/183493/50x661ae522810f714aa781c7224970ae91.png",
52
+ "78": "http://behance.vo.llnwd.net/profiles4/183493/78x661ae522810f714aa781c7224970ae91.png",
53
+ "115": "http://behance.vo.llnwd.net/profiles4/183493/115x661ae522810f714aa781c7224970ae91.png",
54
+ "129": "http://behance.vo.llnwd.net/profiles4/183493/129x661ae522810f714aa781c7224970ae91.png",
55
+ "138": "http://behance.vo.llnwd.net/profiles4/183493/661ae522810f714aa781c7224970ae91.png"
56
+ },
57
+ "fields": [
58
+ "Branding",
59
+ "User Interface Design",
60
+ "Web Design"
61
+ ]
62
+ },
63
+ "comment": "Great book, almost done reading...",
64
+ "created_on": 1340560157
65
+ },
66
+ {
67
+ "user": {
68
+ "id": 262192,
69
+ "first_name": "Leffe",
70
+ "last_name": "Goldstein",
71
+ "username": "leffegoldstein",
72
+ "city": "Utrecht",
73
+ "state": "",
74
+ "country": "Netherlands",
75
+ "company": "LeffeGoldstein",
76
+ "occupation": "Senior Designer",
77
+ "created_on": 1289894043,
78
+ "url": "http://www.behance.net/leffegoldstein",
79
+ "display_name": "Leffe Goldstein",
80
+ "images": {
81
+ "32": "http://behance.vo.llnwd.net/profiles21/262192/32x69636680862489b73acec6db57f59fc5.png",
82
+ "50": "http://behance.vo.llnwd.net/profiles21/262192/50x69636680862489b73acec6db57f59fc5.png",
83
+ "78": "http://behance.vo.llnwd.net/profiles21/262192/78x69636680862489b73acec6db57f59fc5.png",
84
+ "115": "http://behance.vo.llnwd.net/profiles21/262192/115x69636680862489b73acec6db57f59fc5.png",
85
+ "129": "http://behance.vo.llnwd.net/profiles21/262192/129x69636680862489b73acec6db57f59fc5.png",
86
+ "138": "http://behance.vo.llnwd.net/profiles21/262192/69636680862489b73acec6db57f59fc5.png"
87
+ },
88
+ "fields": [
89
+ "Graphic Design",
90
+ "Packaging",
91
+ "Toy Design"
92
+ ]
93
+ },
94
+ "comment": "mesmerize...\n",
95
+ "created_on": 1340042819
96
+ },
97
+ {
98
+ "user": {
99
+ "id": 92027,
100
+ "first_name": "Mikaela",
101
+ "last_name": "Rehnmark",
102
+ "username": "MikaelaRehnmark",
103
+ "city": "Gothenburg",
104
+ "state": "",
105
+ "country": "Sweden",
106
+ "company": "R-ID",
107
+ "occupation": "Founder & Industrial Designer",
108
+ "created_on": 1232297857,
109
+ "url": "http://www.behance.net/MikaelaRehnmark",
110
+ "display_name": "Mikaela Rehnmark",
111
+ "images": {
112
+ "32": "http://behance.vo.llnwd.net/profiles3/92027/32xb7b5dacaaee1ef23f66e70e1f882083b.jpg",
113
+ "50": "http://behance.vo.llnwd.net/profiles3/92027/50xb7b5dacaaee1ef23f66e70e1f882083b.jpg",
114
+ "78": "http://behance.vo.llnwd.net/profiles3/92027/78xb7b5dacaaee1ef23f66e70e1f882083b.jpg",
115
+ "115": "http://behance.vo.llnwd.net/profiles3/92027/115xb7b5dacaaee1ef23f66e70e1f882083b.jpg",
116
+ "129": "http://behance.vo.llnwd.net/profiles3/92027/129xb7b5dacaaee1ef23f66e70e1f882083b.jpg",
117
+ "138": "http://behance.vo.llnwd.net/profiles3/92027/b7b5dacaaee1ef23f66e70e1f882083b.jpg"
118
+ },
119
+ "fields": [
120
+ "Industrial Design",
121
+ "Product Design"
122
+ ]
123
+ },
124
+ "comment": "Very inspiring book! ",
125
+ "created_on": 1339073552
126
+ },
127
+ {
128
+ "user": {
129
+ "id": 50004,
130
+ "first_name": "Scott",
131
+ "last_name": "Belsky",
132
+ "username": "sbelsky",
133
+ "city": "New York",
134
+ "state": "New York",
135
+ "country": "United States",
136
+ "company": "Behance LLC",
137
+ "occupation": "CEO",
138
+ "created_on": 1182480652,
139
+ "url": "http://www.behance.net/sbelsky",
140
+ "display_name": "Scott Belsky",
141
+ "images": {
142
+ "32": "http://behance.vo.llnwd.net/profiles/50004/32x0500041182480801.jpg",
143
+ "50": "http://behance.vo.llnwd.net/profiles/50004/50x0500041182480801.jpg",
144
+ "78": "http://behance.vo.llnwd.net/profiles/50004/78x0500041182480801.jpg",
145
+ "115": "http://behance.vo.llnwd.net/profiles/50004/115x0500041182480801.jpg",
146
+ "129": "http://behance.vo.llnwd.net/profiles/50004/129x0500041182480801.jpg",
147
+ "138": "http://behance.vo.llnwd.net/profiles/50004/0500041182480801.jpg"
148
+ },
149
+ "fields": [
150
+ "Entrepreneurship",
151
+ "Furniture Design",
152
+ "Writing"
153
+ ]
154
+ },
155
+ "comment": "Thanks all for the kind comments...",
156
+ "created_on": 1338944623
157
+ },
158
+ {
159
+ "user": {
160
+ "id": 215283,
161
+ "first_name": "Beejay",
162
+ "last_name": "Elles",
163
+ "username": "beejayelles",
164
+ "city": "Madison",
165
+ "state": "Indiana",
166
+ "country": "United States",
167
+ "company": "Freelance Graphic Designer",
168
+ "occupation": "Graphic Designer / Printshop Press and Bindery Operator",
169
+ "created_on": 1281725289,
170
+ "url": "http://www.behance.net/beejayelles",
171
+ "display_name": "Beejay Elles",
172
+ "images": {
173
+ "32": "http://behance.vo.llnwd.net/profiles4/215283/32x36a09b7e5f571150ee8917086bef35d2.png",
174
+ "50": "http://behance.vo.llnwd.net/profiles4/215283/50x36a09b7e5f571150ee8917086bef35d2.png",
175
+ "78": "http://behance.vo.llnwd.net/profiles4/215283/78x36a09b7e5f571150ee8917086bef35d2.png",
176
+ "115": "http://behance.vo.llnwd.net/profiles4/215283/115x36a09b7e5f571150ee8917086bef35d2.png",
177
+ "129": "http://behance.vo.llnwd.net/profiles4/215283/129x36a09b7e5f571150ee8917086bef35d2.png",
178
+ "138": "http://behance.vo.llnwd.net/profiles4/215283/36a09b7e5f571150ee8917086bef35d2.png"
179
+ },
180
+ "fields": [
181
+ "Graphic Design",
182
+ "Illustration",
183
+ "Typography"
184
+ ]
185
+ },
186
+ "comment": "Currently reading this, and the action method has been great for those projects that I just get stuck on. Great Work!",
187
+ "created_on": 1337996145
188
+ },
189
+ {
190
+ "user": {
191
+ "id": 580775,
192
+ "first_name": "Matthew",
193
+ "last_name": "Prosser",
194
+ "username": "matthewprosser",
195
+ "city": "Cheltenham",
196
+ "state": "",
197
+ "country": "United Kingdom",
198
+ "company": "",
199
+ "occupation": "Junior Art director @ Saatchi & Saatchi",
200
+ "created_on": 1312831337,
201
+ "url": "http://www.behance.net/matthewprosser",
202
+ "display_name": "Matthew Prosser",
203
+ "images": {
204
+ "32": "http://behance.vo.llnwd.net/profiles11/580775/32xe1eda5227fadcca0adc27ddaa14f0328.jpg",
205
+ "50": "http://behance.vo.llnwd.net/profiles11/580775/50xe1eda5227fadcca0adc27ddaa14f0328.jpg",
206
+ "78": "http://behance.vo.llnwd.net/profiles11/580775/78xe1eda5227fadcca0adc27ddaa14f0328.jpg",
207
+ "115": "http://behance.vo.llnwd.net/profiles11/580775/115xe1eda5227fadcca0adc27ddaa14f0328.jpg",
208
+ "129": "http://behance.vo.llnwd.net/profiles11/580775/129xe1eda5227fadcca0adc27ddaa14f0328.jpg",
209
+ "138": "http://behance.vo.llnwd.net/profiles11/580775/e1eda5227fadcca0adc27ddaa14f0328.jpg"
210
+ },
211
+ "fields": [
212
+ "Art Direction",
213
+ "Branding",
214
+ "Graphic Design"
215
+ ]
216
+ },
217
+ "comment": "Got it at the start of my 3rd year this academic year. Sorted me right out work wise and nailed my work without getting as stressed. My girlfriend read it and she studies Law and got a lot from it to. Definitely a must read for students who want to hit the ground running. Big thanks!!",
218
+ "created_on": 1333652063
219
+ },
220
+ {
221
+ "user": {
222
+ "id": 675890,
223
+ "first_name": "JY",
224
+ "last_name": "Houle",
225
+ "username": "jyh",
226
+ "city": "Montreal",
227
+ "state": "Quebec",
228
+ "country": "Canada",
229
+ "company": "",
230
+ "occupation": "Graphic Designer",
231
+ "created_on": 1317750253,
232
+ "url": "http://www.behance.net/jyh",
233
+ "display_name": "JY Houle",
234
+ "images": {
235
+ "32": "http://behance.vo.llnwd.net/profiles26/675890/32x754230899659e33e19b90b2f15c17a4b.jpg",
236
+ "50": "http://behance.vo.llnwd.net/profiles26/675890/50x754230899659e33e19b90b2f15c17a4b.jpg",
237
+ "78": "http://behance.vo.llnwd.net/profiles26/675890/78x754230899659e33e19b90b2f15c17a4b.jpg",
238
+ "115": "http://behance.vo.llnwd.net/profiles26/675890/115x754230899659e33e19b90b2f15c17a4b.jpg",
239
+ "129": "http://behance.vo.llnwd.net/profiles26/675890/129x754230899659e33e19b90b2f15c17a4b.jpg",
240
+ "138": "http://behance.vo.llnwd.net/profiles26/675890/754230899659e33e19b90b2f15c17a4b.jpg"
241
+ },
242
+ "fields": [
243
+ "Art Direction",
244
+ "Graphic Design",
245
+ "Web Design"
246
+ ]
247
+ },
248
+ "comment": "Just finished reading it, great inspiration, thanks",
249
+ "created_on": 1331510075
250
+ },
251
+ {
252
+ "user": {
253
+ "id": 924651,
254
+ "first_name": "Andika Prasetia",
255
+ "last_name": "Putra",
256
+ "username": "dikadig",
257
+ "city": "Jakarta",
258
+ "state": "",
259
+ "country": "Indonesia",
260
+ "company": "Satoe Indonesia",
261
+ "occupation": "Student",
262
+ "created_on": 1328798011,
263
+ "url": "http://www.behance.net/dikadig",
264
+ "display_name": "Andika Prasetia Putra",
265
+ "images": {
266
+ "32": "http://assets.behance.net/img/profile/no-image-32.jpg",
267
+ "50": "http://assets.behance.net/img/profile/no-image-50.jpg",
268
+ "78": "http://assets.behance.net/img/profile/no-image-78.jpg",
269
+ "115": "http://assets.behance.net/img/profile/no-image-138.jpg",
270
+ "129": "http://assets.behance.net/img/profile/no-image-138.jpg",
271
+ "138": "http://assets.behance.net/img/profile/no-image-138.jpg"
272
+ },
273
+ "fields": [
274
+ "Branding"
275
+ ]
276
+ },
277
+ "comment": "You all should read this book!",
278
+ "created_on": 1329308273
279
+ }
280
+ ]
281
+
282
+ }
@@ -0,0 +1,370 @@
1
+ {
2
+
3
+ "projects": [
4
+ {
5
+ "id": 4138003,
6
+ "name": "Harley Davidson Catalog & Custom 2012",
7
+ "published_on": 1338907230,
8
+ "created_on": 1338906135,
9
+ "modified_on": 1345798802,
10
+ "url": "http://www.behance.net/gallery/Harley-Davidson-Catalog-Custom-2012/4138003",
11
+ "fields": [
12
+ "Digital Art",
13
+ "Graphic Design",
14
+ "Illustration"
15
+ ],
16
+ "covers": {
17
+ "115": "http://behance.vo.llnwd.net/profiles3/129052/projects/4138003/115x5fbeddb9956459a3fb7300f78faf0f6e.jpg",
18
+ "202": "http://behance.vo.llnwd.net/profiles3/129052/projects/4138003/5fbeddb9956459a3fb7300f78faf0f6e.jpg"
19
+ },
20
+ "mature_content": 0,
21
+ "owners": {
22
+ "129052": {
23
+ "id": 129052,
24
+ "first_name": "Jeremy",
25
+ "last_name": "Packer",
26
+ "username": "zombieyeti",
27
+ "city": "Elkhart",
28
+ "state": "Indiana",
29
+ "country": "United States",
30
+ "company": "Zombie Yeti Studios",
31
+ "occupation": "",
32
+ "created_on": 1256039356,
33
+ "url": "http://www.behance.net/zombieyeti",
34
+ "display_name": "Jeremy Packer",
35
+ "images": {
36
+ "32": "http://behance.vo.llnwd.net/profiles3/129052/32x67de83ba6f6acad093832861dea34a66.jpg",
37
+ "50": "http://behance.vo.llnwd.net/profiles3/129052/50x67de83ba6f6acad093832861dea34a66.jpg",
38
+ "78": "http://behance.vo.llnwd.net/profiles3/129052/78x67de83ba6f6acad093832861dea34a66.jpg",
39
+ "115": "http://behance.vo.llnwd.net/profiles3/129052/115x67de83ba6f6acad093832861dea34a66.jpg",
40
+ "129": "http://behance.vo.llnwd.net/profiles3/129052/129x67de83ba6f6acad093832861dea34a66.jpg",
41
+ "138": "http://behance.vo.llnwd.net/profiles3/129052/67de83ba6f6acad093832861dea34a66.jpg"
42
+ },
43
+ "fields": [
44
+ "Graphic Design",
45
+ "Illustration",
46
+ "Digital Art"
47
+ ]
48
+ }
49
+ },
50
+ "stats": {
51
+ "views": 1510,
52
+ "appreciations": 179,
53
+ "comments": 21
54
+ }
55
+ },
56
+ {
57
+ "id": 4187855,
58
+ "name": "Angels from Hell",
59
+ "published_on": 1339359890,
60
+ "created_on": 1339359378,
61
+ "modified_on": 1346131112,
62
+ "url": "http://www.behance.net/gallery/Angels-from-Hell/4187855",
63
+ "fields": [
64
+ "Illustration"
65
+ ],
66
+ "covers": {
67
+ "115": "http://behance.vo.llnwd.net/profiles/55952/projects/4187855/115xe30a60df42e812b34ff1a692cd0a2419.jpg",
68
+ "202": "http://behance.vo.llnwd.net/profiles/55952/projects/4187855/e30a60df42e812b34ff1a692cd0a2419.jpg"
69
+ },
70
+ "mature_content": 0,
71
+ "owners": {
72
+ "55952": {
73
+ "id": 55952,
74
+ "first_name": "Chris",
75
+ "last_name": "Thornley",
76
+ "username": "Raid71",
77
+ "city": "Darwen",
78
+ "state": "",
79
+ "country": "United Kingdom",
80
+ "company": "RAID71",
81
+ "occupation": "Director",
82
+ "created_on": 1197020084,
83
+ "url": "http://www.behance.net/Raid71",
84
+ "display_name": "Chris Thornley",
85
+ "images": {
86
+ "32": "http://behance.vo.llnwd.net/profiles/55952/32xc61a6bc2f13226906bae138695ec3754.jpg",
87
+ "50": "http://behance.vo.llnwd.net/profiles/55952/50xc61a6bc2f13226906bae138695ec3754.jpg",
88
+ "78": "http://behance.vo.llnwd.net/profiles/55952/78xc61a6bc2f13226906bae138695ec3754.jpg",
89
+ "115": "http://behance.vo.llnwd.net/profiles/55952/115xc61a6bc2f13226906bae138695ec3754.jpg",
90
+ "129": "http://behance.vo.llnwd.net/profiles/55952/129xc61a6bc2f13226906bae138695ec3754.jpg",
91
+ "138": "http://behance.vo.llnwd.net/profiles/55952/c61a6bc2f13226906bae138695ec3754.jpg"
92
+ },
93
+ "fields": [
94
+ "Art Direction",
95
+ "Illustration",
96
+ "Design"
97
+ ]
98
+ }
99
+ },
100
+ "stats": {
101
+ "views": 1553,
102
+ "appreciations": 175,
103
+ "comments": 15
104
+ }
105
+ },
106
+ {
107
+ "id": 2835579,
108
+ "name": "Seraphim Black Edition",
109
+ "published_on": 1326157613,
110
+ "created_on": 1326157408,
111
+ "modified_on": 1340150402,
112
+ "url": "http://www.behance.net/gallery/Seraphim-Black-Edition/2835579",
113
+ "fields": [
114
+ "Automotive Design",
115
+ "Design",
116
+ "Industrial Design"
117
+ ],
118
+ "covers": {
119
+ "115": "http://behance.vo.llnwd.net/profiles4/159576/projects/2835579/115xae60cc704f0471b0c205e777ebf31a40.jpg",
120
+ "202": "http://behance.vo.llnwd.net/profiles4/159576/projects/2835579/ae60cc704f0471b0c205e777ebf31a40.jpg"
121
+ },
122
+ "mature_content": 0,
123
+ "owners": {
124
+ "159576": {
125
+ "id": 159576,
126
+ "first_name": "Mikael",
127
+ "last_name": "Lugnegård",
128
+ "username": "MLugnegard",
129
+ "city": "Umea",
130
+ "state": "",
131
+ "country": "Sweden",
132
+ "company": "Lugnegard Design",
133
+ "occupation": "Founder",
134
+ "created_on": 1269448219,
135
+ "url": "http://www.behance.net/MLugnegard",
136
+ "display_name": "Mikael Lugnegård",
137
+ "images": {
138
+ "32": "http://behance.vo.llnwd.net/profiles4/159576/32x01595761269448249.jpg",
139
+ "50": "http://behance.vo.llnwd.net/profiles4/159576/50x01595761269448249.jpg",
140
+ "78": "http://behance.vo.llnwd.net/profiles4/159576/78x01595761269448249.jpg",
141
+ "115": "http://behance.vo.llnwd.net/profiles4/159576/115x01595761269448249.jpg",
142
+ "129": "http://behance.vo.llnwd.net/profiles4/159576/129x01595761269448249.jpg",
143
+ "138": "http://behance.vo.llnwd.net/profiles4/159576/01595761269448249.jpg"
144
+ },
145
+ "fields": [
146
+ "Industrial Design",
147
+ "Visual Arts",
148
+ "Automotive Design"
149
+ ]
150
+ }
151
+ },
152
+ "stats": {
153
+ "views": 4916,
154
+ "appreciations": 318,
155
+ "comments": 15
156
+ }
157
+ },
158
+ {
159
+ "id": 3540961,
160
+ "name": "Slugger01",
161
+ "published_on": 1333405097,
162
+ "created_on": 1333404950,
163
+ "modified_on": 1338132422,
164
+ "url": "http://www.behance.net/gallery/Slugger01/3540961",
165
+ "fields": [
166
+ "Art Direction",
167
+ "Automotive Design",
168
+ "Industrial Design"
169
+ ],
170
+ "covers": {
171
+ "115": "http://behance.vo.llnwd.net/profiles4/159576/projects/3540961/115x06f2c321caf5c8978b5a16d72b2ef116.jpg",
172
+ "202": "http://behance.vo.llnwd.net/profiles4/159576/projects/3540961/06f2c321caf5c8978b5a16d72b2ef116.jpg"
173
+ },
174
+ "mature_content": 0,
175
+ "owners": {
176
+ "159576": {
177
+ "id": 159576,
178
+ "first_name": "Mikael",
179
+ "last_name": "Lugnegård",
180
+ "username": "MLugnegard",
181
+ "city": "Umea",
182
+ "state": "",
183
+ "country": "Sweden",
184
+ "company": "Lugnegard Design",
185
+ "occupation": "Founder",
186
+ "created_on": 1269448219,
187
+ "url": "http://www.behance.net/MLugnegard",
188
+ "display_name": "Mikael Lugnegård",
189
+ "images": {
190
+ "32": "http://behance.vo.llnwd.net/profiles4/159576/32x01595761269448249.jpg",
191
+ "50": "http://behance.vo.llnwd.net/profiles4/159576/50x01595761269448249.jpg",
192
+ "78": "http://behance.vo.llnwd.net/profiles4/159576/78x01595761269448249.jpg",
193
+ "115": "http://behance.vo.llnwd.net/profiles4/159576/115x01595761269448249.jpg",
194
+ "129": "http://behance.vo.llnwd.net/profiles4/159576/129x01595761269448249.jpg",
195
+ "138": "http://behance.vo.llnwd.net/profiles4/159576/01595761269448249.jpg"
196
+ },
197
+ "fields": [
198
+ "Industrial Design",
199
+ "Visual Arts",
200
+ "Automotive Design"
201
+ ]
202
+ }
203
+ },
204
+ "stats": {
205
+ "views": 1566,
206
+ "appreciations": 79,
207
+ "comments": 5
208
+ }
209
+ },
210
+ {
211
+ "id": 4791185,
212
+ "name": "Sons of Anarchy / Season 5",
213
+ "published_on": 1344799897,
214
+ "created_on": 1344660831,
215
+ "modified_on": 1344799897,
216
+ "url": "http://www.behance.net/gallery/Sons-of-Anarchy-Season-5/4791185",
217
+ "fields": [
218
+ "Film",
219
+ "Graphic Design",
220
+ "Print Design"
221
+ ],
222
+ "covers": {
223
+ "115": "http://behance.vo.llnwd.net/profiles9/269484/projects/4791185/115x6c02e7ac34e4c5ffeb468be3c4b61bbf.jpg",
224
+ "202": "http://behance.vo.llnwd.net/profiles9/269484/projects/4791185/6c02e7ac34e4c5ffeb468be3c4b61bbf.jpg"
225
+ },
226
+ "mature_content": 0,
227
+ "owners": {
228
+ "269484": {
229
+ "id": 269484,
230
+ "first_name": "Ozan",
231
+ "last_name": "Karakoç",
232
+ "username": "ozankarakoc",
233
+ "city": "Los Angeles",
234
+ "state": "California",
235
+ "country": "United States",
236
+ "company": "",
237
+ "occupation": "Graphic Designer & Creative Director",
238
+ "created_on": 1290838607,
239
+ "url": "http://www.behance.net/ozankarakoc",
240
+ "display_name": "Ozan Karakoç",
241
+ "images": {
242
+ "32": "http://behance.vo.llnwd.net/profiles9/269484/32xd95b3ab1d45c4a7b7b9384d93e36f17b.png",
243
+ "50": "http://behance.vo.llnwd.net/profiles9/269484/50xd95b3ab1d45c4a7b7b9384d93e36f17b.png",
244
+ "78": "http://behance.vo.llnwd.net/profiles9/269484/78xd95b3ab1d45c4a7b7b9384d93e36f17b.png",
245
+ "115": "http://behance.vo.llnwd.net/profiles9/269484/115xd95b3ab1d45c4a7b7b9384d93e36f17b.png",
246
+ "129": "http://behance.vo.llnwd.net/profiles9/269484/129xd95b3ab1d45c4a7b7b9384d93e36f17b.png",
247
+ "138": "http://behance.vo.llnwd.net/profiles9/269484/d95b3ab1d45c4a7b7b9384d93e36f17b.png"
248
+ },
249
+ "fields": [
250
+ "Graphic Design",
251
+ "Typography",
252
+ "Web Design"
253
+ ]
254
+ }
255
+ },
256
+ "stats": {
257
+ "views": 1075,
258
+ "appreciations": 114,
259
+ "comments": 2
260
+ }
261
+ },
262
+ {
263
+ "id": 4313005,
264
+ "name": "Cafe Racer by bmd design",
265
+ "published_on": 1340386654,
266
+ "created_on": 1340384763,
267
+ "modified_on": 1346342402,
268
+ "url": "http://www.behance.net/gallery/Cafe-Racer-by-bmd-design/4313005",
269
+ "fields": [
270
+ "Graphic Design",
271
+ "Textile Design",
272
+ "Typography"
273
+ ],
274
+ "covers": {
275
+ "115": "http://behance.vo.llnwd.net/profiles20/863811/projects/4313005/115x433ff7343e6e1d0827b05b57c69cbd39.jpg",
276
+ "202": "http://behance.vo.llnwd.net/profiles20/863811/projects/4313005/433ff7343e6e1d0827b05b57c69cbd39.jpg"
277
+ },
278
+ "mature_content": 0,
279
+ "owners": {
280
+ "863811": {
281
+ "id": 863811,
282
+ "first_name": "BMD Design",
283
+ "last_name": "",
284
+ "username": "bmddesign",
285
+ "city": "Bordeaux",
286
+ "state": "",
287
+ "country": "France",
288
+ "company": "BMD Design",
289
+ "occupation": "",
290
+ "created_on": 1326719317,
291
+ "url": "http://www.behance.net/bmddesign",
292
+ "display_name": "BMD Design",
293
+ "images": {
294
+ "32": "http://behance.vo.llnwd.net/profiles20/863811/32x56df9c1d6e3888edd31b9f3c2d1d831b.jpg",
295
+ "50": "http://behance.vo.llnwd.net/profiles20/863811/50x56df9c1d6e3888edd31b9f3c2d1d831b.jpg",
296
+ "78": "http://behance.vo.llnwd.net/profiles20/863811/78x56df9c1d6e3888edd31b9f3c2d1d831b.jpg",
297
+ "115": "http://behance.vo.llnwd.net/profiles20/863811/115x56df9c1d6e3888edd31b9f3c2d1d831b.jpg",
298
+ "129": "http://behance.vo.llnwd.net/profiles20/863811/129x56df9c1d6e3888edd31b9f3c2d1d831b.jpg",
299
+ "138": "http://behance.vo.llnwd.net/profiles20/863811/56df9c1d6e3888edd31b9f3c2d1d831b.jpg"
300
+ },
301
+ "fields": [
302
+ "Art Direction",
303
+ "Digital Art",
304
+ "Graphic Design"
305
+ ]
306
+ }
307
+ },
308
+ "stats": {
309
+ "views": 5218,
310
+ "appreciations": 460,
311
+ "comments": 28
312
+ }
313
+ },
314
+ {
315
+ "id": 4972413,
316
+ "name": "Born to be Wild",
317
+ "published_on": 1346226320,
318
+ "created_on": 1346225126,
319
+ "modified_on": 1346226321,
320
+ "url": "http://www.behance.net/gallery/Born-to-be-Wild/4972413",
321
+ "fields": [
322
+ "Cartooning",
323
+ "Drawing",
324
+ "Illustration"
325
+ ],
326
+ "covers": {
327
+ "115": "http://behance.vo.llnwd.net/profiles24/1192235/projects/4972413/115x1d3bceccd8fe5731595ffd0482fbc482.png",
328
+ "202": "http://behance.vo.llnwd.net/profiles24/1192235/projects/4972413/1d3bceccd8fe5731595ffd0482fbc482.png",
329
+ "404": "http://behance.vo.llnwd.net/profiles24/1192235/projects/4972413/404x1d3bceccd8fe5731595ffd0482fbc482.png",
330
+ "230": "http://behance.vo.llnwd.net/profiles24/1192235/projects/4972413/230x1d3bceccd8fe5731595ffd0482fbc482.png"
331
+ },
332
+ "mature_content": 0,
333
+ "owners": {
334
+ "1192235": {
335
+ "id": 1192235,
336
+ "first_name": "SOUP",
337
+ "last_name": "",
338
+ "username": "alexsoup",
339
+ "city": "Paris",
340
+ "state": "",
341
+ "country": "France",
342
+ "company": "",
343
+ "occupation": "Illustrator",
344
+ "created_on": 1337878509,
345
+ "url": "http://www.behance.net/alexsoup",
346
+ "display_name": "SOUP",
347
+ "images": {
348
+ "32": "http://behance.vo.llnwd.net/profiles24/1192235/32x56337416233a6515f013ffdff5e980c2.jpg",
349
+ "50": "http://behance.vo.llnwd.net/profiles24/1192235/50x56337416233a6515f013ffdff5e980c2.jpg",
350
+ "78": "http://behance.vo.llnwd.net/profiles24/1192235/78x56337416233a6515f013ffdff5e980c2.jpg",
351
+ "115": "http://behance.vo.llnwd.net/profiles24/1192235/115x56337416233a6515f013ffdff5e980c2.jpg",
352
+ "129": "http://behance.vo.llnwd.net/profiles24/1192235/129x56337416233a6515f013ffdff5e980c2.jpg",
353
+ "138": "http://behance.vo.llnwd.net/profiles24/1192235/56337416233a6515f013ffdff5e980c2.jpg"
354
+ },
355
+ "fields": [
356
+ "Character Design",
357
+ "Illustration",
358
+ "Typography"
359
+ ]
360
+ }
361
+ },
362
+ "stats": {
363
+ "views": 75,
364
+ "appreciations": 20,
365
+ "comments": 6
366
+ }
367
+ }
368
+ ]
369
+
370
+ }