intelmap_checker 0.0.1 → 0.0.2
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.
- checksums.yaml +4 -4
- data/README.md +10 -7
- data/lib/intelmap_checker/version.rb +2 -2
- data/lib/intelmap_checker.rb +1 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca8ba16d50bebba3792d918f19ab3b18f4348373
|
|
4
|
+
data.tar.gz: e8f564aba3a971a8227e06d7c6e0c82d0bfccf5f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8b2457bb2388342d674b6888afe8f5f344b8088655cddd32c64638052d7828f689127b62b33db6be5322b9323a5c3c813edc790c8288e53a76bb5c49bc7f724
|
|
7
|
+
data.tar.gz: 3e4b1703c403931c6e5c0a857b3075f0fc59d6e8c6497b20af5a3be0d24f5aa3694bf84a743b4abe95236f48fbea27f66a757e581450b74dd2c43178a775843a
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/intelmap_checker`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This gem is simple tool for INGRESS.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -22,15 +22,18 @@ Or install it yourself as:
|
|
|
22
22
|
|
|
23
23
|
## Usage
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
## Development
|
|
25
|
+
```ruby
|
|
26
|
+
require 'intelmap_checker'
|
|
28
27
|
|
|
29
|
-
|
|
28
|
+
ntelmap = IntelmapChecker.new( YOUR_GOOGLE_EMAIL, YOUR_GOOGLE_PASSWORD)
|
|
29
|
+
intelmap.load_map(INTELMAP_PERMANENT_LINK)
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
all_comments = intelmap.all_comments
|
|
32
|
+
faction_comments = intelmap.faction_comments
|
|
33
|
+
portal_details = intelmap.portal_details
|
|
34
|
+
```
|
|
32
35
|
|
|
33
36
|
## Contributing
|
|
34
37
|
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
38
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/kkawamura/intelmap_checker. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
|
|
36
39
|
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
VERSION = "0.0.
|
|
1
|
+
class IntelmapChecker
|
|
2
|
+
VERSION = "0.0.2"
|
|
3
3
|
end
|
data/lib/intelmap_checker.rb
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
require "intelmap_checker/version"
|
|
2
2
|
require 'selenium-webdriver'
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class IntelmapChecker
|
|
7
|
-
|
|
4
|
+
class IntelmapChecker
|
|
8
5
|
def initialize(email, passwd)
|
|
9
6
|
@email = email
|
|
10
7
|
@passwd = passwd
|
|
@@ -130,6 +127,5 @@ module IntelmapChecker
|
|
|
130
127
|
def shutdown
|
|
131
128
|
@driver.quit
|
|
132
129
|
end
|
|
133
|
-
end
|
|
134
130
|
|
|
135
131
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: intelmap_checker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- kkawamura
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-07-
|
|
11
|
+
date: 2015-07-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|