dribble 0.0.3 → 0.0.25
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +9 -11
- data/VERSION +1 -1
- data/dribble.gemspec +2 -2
- data/examples/player.rb +3 -18
- data/examples/shot.rb +15 -1
- data/lib/dribble/player.rb +1 -2
- metadata +4 -4
data/README.rdoc
CHANGED
@@ -1,26 +1,24 @@
|
|
1
1
|
= Dribble
|
2
2
|
|
3
|
-
This is the unofficial dribble api.
|
3
|
+
This is the unofficial dribble api.
|
4
4
|
|
5
|
-
|
5
|
+
There is a very thin wrapper for the Dribble API that is labeled as Dribble::API. This uses the bare minimum to get the desired data from Dribble and returns a symbolized hash. This implementation is focused on simplicity and speed. However, I have yet to really work on the speed aspect.
|
6
6
|
|
7
|
-
|
7
|
+
== Dribble::API
|
8
8
|
|
9
9
|
Dribble::API::Player.profile('simplebits')
|
10
10
|
Dribble::API::Shot.popular
|
11
11
|
|
12
12
|
|
13
|
-
== Dribble::Player && Dribble::Shot
|
14
|
-
|
15
13
|
Dribble::Player and Dribble::Shot is another layer on-top of the API to add that object look and feel. This is more for convenience and ease of use.
|
16
14
|
|
17
|
-
This is meant for convenience and ease of use.
|
18
|
-
|
15
|
+
This is meant for convenience and ease of use.
|
16
|
+
|
17
|
+
|
18
|
+
== Dribble::Player && Dribble::Shot
|
19
|
+
|
20
|
+
Dribble::Player.find('simplebits')
|
19
21
|
Dribble::Shot.popular
|
20
|
-
|
21
|
-
player = Dribble::Player.profile('simplebits')
|
22
|
-
player.following # => the shots that this player is following
|
23
|
-
player.shots # => the players shots
|
24
22
|
|
25
23
|
== Note on Patches/Pull Requests
|
26
24
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.25
|
data/dribble.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{dribble}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.25"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Robert R Evans"]
|
12
|
-
s.date = %q{2010-08-
|
12
|
+
s.date = %q{2010-08-02}
|
13
13
|
s.description = %q{API Wrapper for the awesome Dribble Site}
|
14
14
|
s.email = %q{robert@codewranglers.org}
|
15
15
|
s.extra_rdoc_files = [
|
data/examples/player.rb
CHANGED
@@ -12,22 +12,7 @@ require File.join(dir, 'dribble')
|
|
12
12
|
# puts player.inspect
|
13
13
|
|
14
14
|
|
15
|
-
# puts
|
16
|
-
# puts "Find the shots that a specific Player is following"
|
17
|
-
# player3 = Dribble::Player.following_shots('simplebits')
|
18
|
-
# puts player3.inspect
|
19
|
-
|
20
|
-
|
21
|
-
|
22
15
|
puts
|
23
|
-
puts "
|
24
|
-
|
25
|
-
puts
|
26
|
-
# puts
|
27
|
-
# puts "Take this player and see what shots they are following"
|
28
|
-
# following_shots = player.following
|
29
|
-
# puts following_shots.inspect
|
30
|
-
# puts
|
31
|
-
# puts "Take this player and see what shots they've put up"
|
32
|
-
# my_shots = player.shots
|
33
|
-
# puts my_shots.inspect
|
16
|
+
puts "Find the shots that a specific Player is following"
|
17
|
+
player3 = Dribble::Player.following_shots('simplebits')
|
18
|
+
puts player3.inspect
|
data/examples/shot.rb
CHANGED
@@ -30,4 +30,18 @@ require File.join(dir, 'dribble')
|
|
30
30
|
# puts following.inspect
|
31
31
|
# puts
|
32
32
|
# following_page_2 = following.next_page
|
33
|
-
# puts following_page_2.inspect
|
33
|
+
# puts following_page_2.inspect
|
34
|
+
|
35
|
+
|
36
|
+
puts
|
37
|
+
puts "Get a Player's Profile"
|
38
|
+
player = Dribble::Player.find(1)
|
39
|
+
puts player.inspect
|
40
|
+
puts
|
41
|
+
puts "Take this player and see what shots they are following"
|
42
|
+
following_shots = player.following
|
43
|
+
puts following_shots.inspect
|
44
|
+
puts
|
45
|
+
puts "Take this player and see what shots they've put up"
|
46
|
+
my_shots = player.shots
|
47
|
+
puts my_shots.inspect
|
data/lib/dribble/player.rb
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
module Dribble
|
2
2
|
class Player
|
3
3
|
attr_reader :id, :name, :url, :avatar_url, :location, :created_at, :draftees_count,
|
4
|
-
:following_count, :shots_count, :followers_count, :following, :shots
|
5
|
-
:drafted_by_player_id, :draftees_count
|
4
|
+
:following_count, :shots_count, :followers_count, :following, :shots
|
6
5
|
|
7
6
|
|
8
7
|
def initialize(attr={})
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dribble
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 45
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 25
|
10
|
+
version: 0.0.25
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Robert R Evans
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-08-
|
18
|
+
date: 2010-08-02 00:00:00 -07:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|