rcracy 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,18 @@
1
+ module RCracy
2
+
3
+ class Domain
4
+
5
+ attr_reader :domain, :rank, :kclicks, :others
6
+
7
+ def initialize(attrs)
8
+
9
+ @domain = attrs['domain']
10
+ @rank = attrs['rank']
11
+ @kclicks = attrs['clicks']
12
+ @others = attrs['numPersonas']
13
+
14
+ end
15
+
16
+ end
17
+
18
+ end
@@ -1,3 +1,3 @@
1
1
  module RCracy
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rcracy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -40,6 +40,7 @@ files:
40
40
  - README.md
41
41
  - Rakefile
42
42
  - lib/rcracy.rb
43
+ - lib/rcracy/domain.rb
43
44
  - lib/rcracy/kcy.rb
44
45
  - lib/rcracy/nut.rb
45
46
  - lib/rcracy/user.rb