geoloqi-simplegeo-import 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,24 +1,44 @@
1
- # Geoloqi's SimpleGeo Import Tool - Transfer your data out of SimpleGeo and into Geoloqi with one command! ==
2
- This tool will let you automatically transfer SimpleGeo data over to Geoloqi. It makes Geoloqi Layers for each Simplegeo Layer, and converts Records to Geoloqi Places for each of the layer!
1
+ # Geoloqi's SimpleGeo Import Tool - Transfer your data out of SimpleGeo and into Geoloqi with one command!
2
+ This tool will allow you to transfer your SimpleGeo Storage data over to Geoloqi. It makes Geoloqi Layers for each SimpleGeo Layer, and converts Records to Geoloqi Places for each of the layers.
3
3
 
4
- All you need to run the command is a Geoloqi Access Token, and the SimpleGEO OAuth Key and Secret. You can sign up for a Geoloqi account at [https://geoloqi.com The Geoloqi Web Site] and retrieve your access token from the [https://developers.geoloqi.com Geoloqi Developers site].
4
+ All you need to run the command is a Geoloqi Access Token, and the SimpleGEO OAuth Key and Secret. You can sign up for a Geoloqi account at [The Geoloqi Web Site](https://geoloqi.com) and retrieve your access token from the [Geoloqi Developers site](https://developers.geoloqi.com).
5
5
 
6
- This script is provided as an executable via rubygems, which means it runs on any Mac OSX computer out-of-the-box (and on any Windows/Linux machines with ruby available).
6
+ This script is provided as an executable via Rubygems, which means it runs on any Mac OSX computer out-of-the-box (and on any Windows/Linux machines with ruby available).
7
7
 
8
8
  ## Installation
9
- gem install geoloqi-simplegeo-import
9
+ Open up a terminal and run this in the command line:
10
+
11
+ $ gem install geoloqi-simplegeo-import
10
12
 
11
13
  ## Usage
14
+ Run the script from the command line:
15
+
12
16
  $ geoloqi-simplegeo-import YOUR_GEOLOQI_ACCESS_TOKEN YOUR_SIMPLEGEO_OAUTH_KEY YOUR_SIMPLEGEO_OAUTH_SECRET
13
17
 
14
18
  The script will output information on the transferred data, and give you a link to our Layer Editor so you can see and edit your Layers and Places (we have a GUI interface for your data!).
15
19
 
20
+ ## Searching for Nearby Layers and Places
21
+ With Geoloqi you can search for nearby layers and places very easily with these two API calls:
22
+
23
+ * [layer/nearby](https://developers.geoloqi.com/api/layer/nearby)
24
+ * [place/nearby](https://developers.geoloqi.com/api/place/nearby)
25
+
26
+ You can experiment with running these API calls directly from cURL or from our [Developers Console](https://developers.geoloqi.com):
27
+
28
+ * [Console for layer/nearby](https://developers.geoloqi.com/console?method=layer/nearby)
29
+ * [Console for place/nearby](https://developers.geoloqi.com/console?method=place/nearby)
30
+
31
+ We have SDK libraries for [Ruby](https://github.com/geoloqi/geoloqi-ruby), [JavaScript](https://github.com/geoloqi/geoloqi-js), [Node.JS](https://github.com/geoloqi/geoloqi-node), [PHP](https://github.com/geoloqi/geoloqi-sdk-php), and more coming very, very soon.
32
+
33
+ There is a lot of other stuff you can do with Geoloqi, such as geolocation triggers/callbacks and geo-messaging. [Visit our web site](https://geoloqi.com) to read more about us (and where we're going).
34
+
16
35
  ## Bugs
17
36
  Feel free to file any issues on Github, we will respond to them as soon as possible. If you need any features here we haven't provided, don't hesitate to contact us.
18
37
 
19
38
  ## TODO
20
- This is a quick-fix solution. However we are planning on making a more stable, complete tool for importing data to Geoloqi from other sources (and for exporting your data out of Geoloqi). We feel it's in your best interest to have total control of your data at all times, and we want to help you solve problems, not lock you into our platform.
39
+ This is a quick-fix solution. However we are planning on making a more stable, complete tool for importing data to Geoloqi from other sources (and for exporting your data out of Geoloqi). We feel it's in your best interest to have total control of your data at all times, and we want to help you solve problems, including the problem of transferring data between your machine and cloud services.
21
40
 
22
41
  ## Authors
23
- [https://github.com/kyledrake Kyle Drake]
24
- [https://github.com/aaronpk Aaron Parecki]
42
+ [Kyle Drake](https://github.com/kyledrake)
43
+
44
+ [Aaron Parecki](https://github.com/aaronpk)
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "geoloqi-simplegeo-import"
6
- s.version = '0.0.1'
6
+ s.version = '0.0.2'
7
7
  s.authors = ["Kyle Drake"]
8
8
  s.email = ["kyledrake@gmail.com"]
9
9
  s.homepage = ""
@@ -19,6 +19,6 @@ Gem::Specification.new do |s|
19
19
  s.require_paths = ["lib"]
20
20
 
21
21
  # specify any dependencies here; for example:
22
- s.add_dependency 'geoloqi'
23
- s.add_dependency 'oauth'
22
+ s.add_dependency 'geoloqi', '>= 0.9.36'
23
+ s.add_dependency 'oauth', '>= 0.4.5'
24
24
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Kyle Drake
@@ -26,7 +26,9 @@ dependencies:
26
26
  - !ruby/object:Gem::Version
27
27
  segments:
28
28
  - 0
29
- version: "0"
29
+ - 9
30
+ - 36
31
+ version: 0.9.36
30
32
  type: :runtime
31
33
  version_requirements: *id001
32
34
  - !ruby/object:Gem::Dependency
@@ -38,7 +40,9 @@ dependencies:
38
40
  - !ruby/object:Gem::Version
39
41
  segments:
40
42
  - 0
41
- version: "0"
43
+ - 4
44
+ - 5
45
+ version: 0.4.5
42
46
  type: :runtime
43
47
  version_requirements: *id002
44
48
  description: Imports SimpleGeo Storage into Geoloqi! Translates layers to layers, and "records" to places, maintaining the relationships and properties.