intelmap_checker 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ed34981806cdca981ec76494a0dc68df2569e44
4
- data.tar.gz: 78e773a39fee8fdb47abf0b0e9a3f34aaf84032b
3
+ metadata.gz: ca8ba16d50bebba3792d918f19ab3b18f4348373
4
+ data.tar.gz: e8f564aba3a971a8227e06d7c6e0c82d0bfccf5f
5
5
  SHA512:
6
- metadata.gz: 7409bd3b454828acddc8d39f7b489dd0715f5a9041adcfab8bab4829efb6ee3e87fc32933f77f62b69b7ec6d4e5c285ab3d3d79f7ca5c317978d2eadbf47a4cd
7
- data.tar.gz: 63c9f33ad303dd374fe546a070bf50ae22248728709d4b276a72b010daf7dfd2e30da10add4c5d19184993eff1b3ca84e3c381167c3b2bfe25fe7e7dc21b046c
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
- TODO: Delete this and the text above, and describe your gem
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
- TODO: Write usage instructions here
26
-
27
- ## Development
25
+ ```ruby
26
+ require 'intelmap_checker'
28
27
 
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
28
+ ntelmap = IntelmapChecker.new( YOUR_GOOGLE_EMAIL, YOUR_GOOGLE_PASSWORD)
29
+ intelmap.load_map(INTELMAP_PERMANENT_LINK)
30
30
 
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
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/[USERNAME]/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.
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
- module IntelmapChecker
2
- VERSION = "0.0.1"
1
+ class IntelmapChecker
2
+ VERSION = "0.0.2"
3
3
  end
@@ -1,10 +1,7 @@
1
1
  require "intelmap_checker/version"
2
2
  require 'selenium-webdriver'
3
3
 
4
- module IntelmapChecker
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.1
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-29 00:00:00.000000000 Z
11
+ date: 2015-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler