data_science_theater_3000 0.0.6 → 0.0.6.1
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.
- data/README.md +5 -6
- data/lib/data_science_theater_3000.rb +1 -1
- data/lib/data_science_theater_3000/version.rb +1 -1
- metadata +7 -7
data/README.md
CHANGED
@@ -14,13 +14,12 @@
|
|
14
14
|
#### Just ...
|
15
15
|
require "data_science_theater_3000"
|
16
16
|
|
17
|
-
DataScienceTheater3000.ip2coordinates(ip_string)
|
18
|
-
DataScienceTheater3000.file2text(path_to_file) # local files only right now
|
19
|
-
DataScienceTheater3000.coordinates2politics(lat_long_string)
|
20
|
-
DataScienceTheater3000.street2coordinates(address_string)
|
21
|
-
|
22
|
-
Or
|
23
17
|
dst3k = DataScienceTheater3000
|
18
|
+
dst3k.ip2coordinates(ip_string)
|
19
|
+
dst3k.file2text(path_to_file) # local files only right now
|
20
|
+
dst3k.coordinates2politics(lat_long_string)
|
21
|
+
#Chaining:
|
22
|
+
dst3k.street2coordinates(address_string)
|
24
23
|
dst3k.coordinates2politics( dst3k.ip2coordinates(ip_string) )
|
25
24
|
dst3k.coordinates2politics( dst3k.street2coordinates(address_string) )
|
26
25
|
|
@@ -36,7 +36,7 @@ module DataScienceTheater3000
|
|
36
36
|
# Uses latitude,longitude pair to find detailed political information about a location.
|
37
37
|
# Currently supporting a single pair.
|
38
38
|
#
|
39
|
-
# @param [
|
39
|
+
# @param [Hash] hash returned from ip2coordinates/street2coordinates or just a string like "33,-86"
|
40
40
|
# @return [Array] contains hashes with detailed political information for a location
|
41
41
|
def self.coordinates2politics coords
|
42
42
|
if coords.class == Hash
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: data_science_theater_3000
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.6
|
4
|
+
version: 0.0.6.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2012-01-22 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: active_support
|
16
|
-
requirement: &
|
16
|
+
requirement: &16112460 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *16112460
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: curb
|
27
|
-
requirement: &
|
27
|
+
requirement: &16111880 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *16111880
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: json
|
38
|
-
requirement: &
|
38
|
+
requirement: &16111040 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ! '>='
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: '0'
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *16111040
|
47
47
|
description: Ruby interface to issue Data Science Toolkit API calls.
|
48
48
|
email:
|
49
49
|
- tad@isotope11.com
|