evecache 0.42.0 → 0.42.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +38 -0
- data/evecache.gemspec +2 -2
- metadata +3 -3
- data/README.txt +0 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00f47532df858c60af50ca24e1e98c87e62aa1ed
|
4
|
+
data.tar.gz: 1e1fb9e16acc2498eb759570c3afc2fe45256481
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c30598df4498680602d7b8dde9331d03005d6de407570301c172eaeaadb93f85864c7bca3e21548df3d6737c32bf090ade1c43c04431567383761fc780fca75a
|
7
|
+
data.tar.gz: 224dbd954c4d961cc5626458db6c4494cb713bde30c11eece7326a1856625a4292b6045a69be8dbdfa13287f3aba98dd48ac0335597d6b0074cfc5d6c2e9a340
|
data/README.md
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# evecache
|
2
|
+
|
3
|
+
lives at: [https://github.com/MrMarvin/ruby-evecache]( https://github.com/MrMarvin/ruby-evecache)
|
4
|
+
|
5
|
+
## DESCRIPTION
|
6
|
+
|
7
|
+
A Ruby binding to libevecache to access Eve Online market cache files.
|
8
|
+
|
9
|
+
## FEATURES/PROBLEMS
|
10
|
+
|
11
|
+
Does nothing more than reading these files...
|
12
|
+
|
13
|
+
## REQUIREMENTS
|
14
|
+
|
15
|
+
* a good Ruby (> 1.9.3)
|
16
|
+
* a c++ compiler and the common `make` tool(s)
|
17
|
+
|
18
|
+
## INSTALL
|
19
|
+
|
20
|
+
`gem install evecache` or clone this repository and build yourself
|
21
|
+
|
22
|
+
## USAGE
|
23
|
+
|
24
|
+
require 'evecache'
|
25
|
+
Evecache.path="/Users/marv/Library/Application Support/EVE Online/p_drive/Local Settings/Application Data/CCP/EVE/c_program_files_ccp_eve_tranquility/cache/MachoNet/87.237.38.200/359/CachedMethodCalls/"
|
26
|
+
Evecache.open("ea66").region # => 10000032
|
27
|
+
|
28
|
+
To load the market orders from this file call either `Evecache.open("ea66").buy_orders` or `sell_orders`.
|
29
|
+
Both methods return an Array of Hashes with the orders. Example:
|
30
|
+
|
31
|
+
[{:price=>755100630000, :vol_remaining=>1.0, :type_id=>4308, :range=>65535, :order_id=>2941699044, :vol_entered=>1, :min_volume=>1, :issued=>130144611420000000, :duration=>30, :station_id=>60011866, :region_id=>10000032, :system_id=>30002659, :jumps=>0, :sell_or_buy=>:buy},
|
32
|
+
...,
|
33
|
+
{:price=>755101080000, :vol_remaining=>1.0, :type_id=>4308, :range=>65535, :order_id=>2988663834, :vol_entered=>2, :min_volume=>1, :issued=>130145490018987642, :duration=>30, :station_id=>60011866, :region_id=>10000032, :system_id=>30002659, :jumps=>0, :sell_or_buy=>:buy}]
|
34
|
+
|
35
|
+
|
36
|
+
## LICENSE
|
37
|
+
|
38
|
+
GNU GENERAL PUBLIC LICENSE Version 2
|
data/evecache.gemspec
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "evecache"
|
3
|
-
s.version = "0.42.
|
3
|
+
s.version = "0.42.1"
|
4
4
|
s.platform = Gem::Platform::RUBY
|
5
5
|
s.authors = ["Marvin Frick"]
|
6
6
|
s.email = ["marv@hostin.is"]
|
7
|
-
s.homepage = "https://github.com/MrMarvin/evecache"
|
7
|
+
s.homepage = "https://github.com/MrMarvin/ruby-evecache"
|
8
8
|
s.summary = "A Ruby binding to libevecache to access Eve Online market cache files."
|
9
9
|
s.description = "A Ruby binding to libevecache to access Eve Online market cache files. Does nothing more."
|
10
10
|
s.license = "GPL 2"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: evecache
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.42.
|
4
|
+
version: 0.42.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marvin Frick
|
@@ -20,7 +20,7 @@ extensions:
|
|
20
20
|
extra_rdoc_files: []
|
21
21
|
files:
|
22
22
|
- .gitignore
|
23
|
-
- README.
|
23
|
+
- README.md
|
24
24
|
- Rakefile
|
25
25
|
- evecache.gemspec
|
26
26
|
- ext/evecache/Makefile
|
@@ -40,7 +40,7 @@ files:
|
|
40
40
|
- ext/evecache/reader.cpp
|
41
41
|
- lib/evecache.rb
|
42
42
|
- test/test_evecache.rb
|
43
|
-
homepage: https://github.com/MrMarvin/evecache
|
43
|
+
homepage: https://github.com/MrMarvin/ruby-evecache
|
44
44
|
licenses:
|
45
45
|
- GPL 2
|
46
46
|
metadata: {}
|
data/README.txt
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
= evecache
|
2
|
-
|
3
|
-
https://github.com/MrMarvin/evecache
|
4
|
-
|
5
|
-
== DESCRIPTION:
|
6
|
-
|
7
|
-
A Ruby binding to libevecache to access Eve Online market cache files.
|
8
|
-
|
9
|
-
== FEATURES/PROBLEMS:
|
10
|
-
|
11
|
-
Does nothing more than reading these files...
|
12
|
-
|
13
|
-
== REQUIREMENTS:
|
14
|
-
|
15
|
-
* a good Ruby (> 1.9.3)
|
16
|
-
* a c++ compiler and the common `make` tool(s)
|
17
|
-
|
18
|
-
== INSTALL:
|
19
|
-
|
20
|
-
`gem install evecache` or clone this repository and build yourself
|
21
|
-
|
22
|
-
== LICENSE:
|
23
|
-
|
24
|
-
GNU GENERAL PUBLIC LICENSE Version 2
|