geoptima 0.1.15 → 0.1.17
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/bin/geoptima_file_time +2 -2
- data/bin/geoptima_file_time_stats +133 -0
- data/bin/show_geoptima +46 -7
- data/examples/geoptima_file_time.rb +2 -2
- data/examples/geoptima_file_time_stats.rb +133 -0
- data/examples/show_geoptima.rb +46 -7
- data/geoptima.gemspec +1 -1
- data/lib/geoptima/data.rb +265 -36
- data/lib/geoptima/file_time.rb +3 -2
- data/lib/geoptima/locationrange.rb +45 -6
- data/lib/geoptima/timer.rb +39 -0
- data/lib/geoptima/version.rb +1 -1
- metadata +75 -66
metadata
CHANGED
@@ -1,92 +1,89 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: geoptima
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 57
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 17
|
10
|
+
version: 0.1.17
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- Craig Taverner
|
9
14
|
autorequire:
|
10
15
|
bindir: bin
|
11
16
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
17
|
+
|
18
|
+
date: 2012-12-13 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
15
21
|
name: multi_json
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - ! '>='
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: 1.1.0
|
22
|
-
type: :runtime
|
23
22
|
prerelease: false
|
24
|
-
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
24
|
none: false
|
26
|
-
requirements:
|
27
|
-
- -
|
28
|
-
- !ruby/object:Gem::Version
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 19
|
29
|
+
segments:
|
30
|
+
- 1
|
31
|
+
- 1
|
32
|
+
- 0
|
29
33
|
version: 1.1.0
|
30
|
-
- !ruby/object:Gem::Dependency
|
31
|
-
name: json_pure
|
32
|
-
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
|
-
requirements:
|
35
|
-
- - ! '>='
|
36
|
-
- !ruby/object:Gem::Version
|
37
|
-
version: 1.6.5
|
38
34
|
type: :runtime
|
35
|
+
version_requirements: *id001
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: json_pure
|
39
38
|
prerelease: false
|
40
|
-
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
40
|
none: false
|
42
|
-
requirements:
|
43
|
-
- -
|
44
|
-
- !ruby/object:Gem::Version
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
hash: 5
|
45
|
+
segments:
|
46
|
+
- 1
|
47
|
+
- 6
|
48
|
+
- 5
|
45
49
|
version: 1.6.5
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
with free downloads from the
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
independent way of analysing the data, when
|
57
|
-
|
58
|
-
compared to the full-featured analysis applications and servers available from AmanziTel.
|
59
|
-
If you want to analyse a limited amount
|
60
|
-
|
61
|
-
of data in excel, or with Ruby, then this GEM might be for you. If you want to analyse
|
62
|
-
large amounts of data, from many subscribers, or over long periods of time
|
63
|
-
|
64
|
-
then rather consider the NetView and Customer IQ applications from AmanziTel at
|
65
|
-
www.amanzitel.com.
|
50
|
+
type: :runtime
|
51
|
+
version_requirements: *id002
|
52
|
+
description: |
|
53
|
+
Geoptima is a suite of applications for measuring and locating mobile/cellular subscriber experience on GPS enabled smartphones.
|
54
|
+
It is produced by AmanziTel AB in Helsingborg, Sweden, and supports many phone manufacturers, with free downloads from the
|
55
|
+
various app stores, markets or marketplaces. This Ruby library is only capable of reading the JSON format files priduced by these phones
|
56
|
+
and reformating them as CSV for further analysis in Excel. This is a simple and independent way of analysing the data, when
|
57
|
+
compared to the full-featured analysis applications and servers available from AmanziTel. If you want to analyse a limited amount
|
58
|
+
of data in excel, or with Ruby, then this GEM might be for you. If you want to analyse large amounts of data, from many subscribers, or over long periods of time
|
59
|
+
then rather consider the NetView and Customer IQ applications from AmanziTel at www.amanzitel.com.
|
66
60
|
|
67
|
-
'
|
68
61
|
email: craig@amanzi.com
|
69
|
-
executables:
|
62
|
+
executables:
|
70
63
|
- show_geoptima
|
71
64
|
- geoptima_file_time
|
65
|
+
- geoptima_file_time_stats
|
72
66
|
- csv_chart
|
73
67
|
- csv_stats
|
74
68
|
- csv_merge
|
75
69
|
extensions: []
|
76
|
-
|
70
|
+
|
71
|
+
extra_rdoc_files:
|
77
72
|
- README.rdoc
|
78
|
-
files:
|
73
|
+
files:
|
79
74
|
- bin/show_geoptima_sos
|
80
75
|
- bin/show_geoptima
|
81
76
|
- bin/csv_chart
|
82
77
|
- bin/geoptima_file_time
|
83
78
|
- bin/csv_stats
|
84
79
|
- bin/csv_merge
|
80
|
+
- bin/geoptima_file_time_stats
|
85
81
|
- lib/geoptima/version.rb
|
86
82
|
- lib/geoptima/data.rb
|
87
83
|
- lib/geoptima/chart.rb
|
88
84
|
- lib/geoptima/daterange.rb
|
89
85
|
- lib/geoptima/options.rb
|
86
|
+
- lib/geoptima/timer.rb
|
90
87
|
- lib/geoptima/file_time.rb
|
91
88
|
- lib/geoptima/locationrange.rb
|
92
89
|
- lib/geoptima.rb
|
@@ -95,6 +92,7 @@ files:
|
|
95
92
|
- examples/csv_chart.rb
|
96
93
|
- examples/csv_merge.rb
|
97
94
|
- examples/geoptima_file_time.rb
|
95
|
+
- examples/geoptima_file_time_stats.rb
|
98
96
|
- examples/csv_stats.rb
|
99
97
|
- examples/sample_geoptima.json
|
100
98
|
- examples/sample_short.json
|
@@ -105,8 +103,9 @@ files:
|
|
105
103
|
- geoptima.gemspec
|
106
104
|
homepage: http://github.com/craigtaverner/geoptima.rb
|
107
105
|
licenses: []
|
106
|
+
|
108
107
|
post_install_message:
|
109
|
-
rdoc_options:
|
108
|
+
rdoc_options:
|
110
109
|
- --quiet
|
111
110
|
- --title
|
112
111
|
- Geoptima.rb
|
@@ -114,24 +113,34 @@ rdoc_options:
|
|
114
113
|
- --main
|
115
114
|
- README.rdoc
|
116
115
|
- --inline-source
|
117
|
-
require_paths:
|
116
|
+
require_paths:
|
118
117
|
- lib
|
119
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
118
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
120
119
|
none: false
|
121
|
-
requirements:
|
122
|
-
- -
|
123
|
-
- !ruby/object:Gem::Version
|
120
|
+
requirements:
|
121
|
+
- - ">="
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
hash: 59
|
124
|
+
segments:
|
125
|
+
- 1
|
126
|
+
- 8
|
127
|
+
- 6
|
124
128
|
version: 1.8.6
|
125
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
129
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
126
130
|
none: false
|
127
|
-
requirements:
|
128
|
-
- -
|
129
|
-
- !ruby/object:Gem::Version
|
130
|
-
|
131
|
+
requirements:
|
132
|
+
- - ">="
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
hash: 3
|
135
|
+
segments:
|
136
|
+
- 0
|
137
|
+
version: "0"
|
131
138
|
requirements: []
|
139
|
+
|
132
140
|
rubyforge_project: geoptima
|
133
|
-
rubygems_version: 1.8.
|
141
|
+
rubygems_version: 1.8.15
|
134
142
|
signing_key:
|
135
143
|
specification_version: 3
|
136
144
|
summary: Ruby access to Geoptima JSON files
|
137
145
|
test_files: []
|
146
|
+
|