betforker 1.0.1
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 +7 -0
- data/.gitignore +5 -0
- data/.rspec +2 -0
- data/.travis.yml +3 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +90 -0
- data/README.md +53 -0
- data/Rakefile +12 -0
- data/betforker.gemspec +23 -0
- data/bin/betforker +64 -0
- data/config.yml +14 -0
- data/lib/betforker.rb +80 -0
- data/lib/betforker/bookmakers/__to_change__/betfair.rb +112 -0
- data/lib/betforker/bookmakers/__to_change__/parimatch.rb +137 -0
- data/lib/betforker/bookmakers/__to_change__/sbobet.rb +90 -0
- data/lib/betforker/bookmakers/__to_change__/winlinebet.rb +122 -0
- data/lib/betforker/bookmakers/marathon.rb +121 -0
- data/lib/betforker/bookmakers/williamhill.rb +115 -0
- data/lib/betforker/comparer.rb +176 -0
- data/lib/betforker/config.rb +201 -0
- data/lib/betforker/downloader.rb +128 -0
- data/lib/betforker/event.rb +74 -0
- data/lib/betforker/fork.rb +29 -0
- data/lib/betforker/names_winlinebet.rb +1092 -0
- data/lib/betforker/parsed_page.rb +13 -0
- data/lib/betforker/version.rb +3 -0
- data/spec/betforker_spec.rb +39 -0
- data/spec/bookmakers/__to_change__/betfair_test.rb +40 -0
- data/spec/bookmakers/__to_change__/parimatch_test.rb +41 -0
- data/spec/bookmakers/__to_change__/sbobet_test.rb +40 -0
- data/spec/bookmakers/__to_change__/winlinebet_test.rb +39 -0
- data/spec/bookmakers/marathon_spec.rb +84 -0
- data/spec/bookmakers/williamhill_spec.rb +81 -0
- data/spec/comparer_spec.rb +162 -0
- data/spec/config_spec.rb +155 -0
- data/spec/downloader_spec.rb +88 -0
- data/spec/event_spec.rb +94 -0
- data/spec/features/without_downloads_spec.rb +138 -0
- data/spec/fork_spec.rb +21 -0
- data/spec/spec_helper.rb +199 -0
- data/spec/support/html/betfair/betfair1.html +3453 -0
- data/spec/support/html/betfair/betfair2.html +3996 -0
- data/spec/support/html/betfair/betfair3.html +6566 -0
- data/spec/support/html/betfair/betfair4.html +3373 -0
- data/spec/support/html/betfair/bf_live.htm +5905 -0
- data/spec/support/html/fake/fake.html +15759 -0
- data/spec/support/html/marathon/first.html +2717 -0
- data/spec/support/html/marathon/live_page.html +7226 -0
- data/spec/support/html/marathon/second.html +3500 -0
- data/spec/support/html/marathon/with_forks.html +2525 -0
- data/spec/support/html/parimatch/parimatch1.html +588 -0
- data/spec/support/html/parimatch/parimatch2.html +589 -0
- data/spec/support/html/parimatch/parimatch3.html +581 -0
- data/spec/support/html/parimatch/parimatch4.html +641 -0
- data/spec/support/html/parimatch/pm_live.html +1049 -0
- data/spec/support/html/sbobet/sb1.htm +8 -0
- data/spec/support/html/sbobet/sb2.htm +8 -0
- data/spec/support/html/sbobet/sb3.htm +8 -0
- data/spec/support/html/sbobet/sb4.htm +8 -0
- data/spec/support/html/sbobet/sbobet_live.htm +8 -0
- data/spec/support/html/williamhill/first.html +13273 -0
- data/spec/support/html/williamhill/live_page.html +42735 -0
- data/spec/support/html/williamhill/second.html +15759 -0
- data/spec/support/html/williamhill/with_forks.html +13473 -0
- data/spec/support/html/williamhill/without_forks.html +14016 -0
- data/spec/support/html/winlinebet/win1.htm +23797 -0
- data/spec/support/html/winlinebet/win2.htm +23797 -0
- data/spec/support/html/winlinebet/win3.htm +23797 -0
- data/spec/support/html/winlinebet/win4.htm +23797 -0
- data/spec/support/html/winlinebet/win_live.htm +23815 -0
- metadata +211 -0
metadata
ADDED
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: betforker
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Akkuzin Maxim
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-07-01 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: nokogiri
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.6'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.6'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: mechanize
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '2.7'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '2.7'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: poltergeist
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - '='
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '1.9'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - '='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '1.9'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: thor
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0.19'
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0.19'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: highline
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '1.7'
|
|
76
|
+
type: :runtime
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '1.7'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: rake
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '11.2'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '11.2'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: rspec
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - "~>"
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '3.4'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - "~>"
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '3.4'
|
|
111
|
+
description:
|
|
112
|
+
email: akkmaxon2307@gmail.com
|
|
113
|
+
executables:
|
|
114
|
+
- betforker
|
|
115
|
+
extensions: []
|
|
116
|
+
extra_rdoc_files: []
|
|
117
|
+
files:
|
|
118
|
+
- ".gitignore"
|
|
119
|
+
- ".rspec"
|
|
120
|
+
- ".travis.yml"
|
|
121
|
+
- Gemfile
|
|
122
|
+
- Gemfile.lock
|
|
123
|
+
- README.md
|
|
124
|
+
- Rakefile
|
|
125
|
+
- betforker.gemspec
|
|
126
|
+
- bin/betforker
|
|
127
|
+
- config.yml
|
|
128
|
+
- lib/betforker.rb
|
|
129
|
+
- lib/betforker/bookmakers/__to_change__/betfair.rb
|
|
130
|
+
- lib/betforker/bookmakers/__to_change__/parimatch.rb
|
|
131
|
+
- lib/betforker/bookmakers/__to_change__/sbobet.rb
|
|
132
|
+
- lib/betforker/bookmakers/__to_change__/winlinebet.rb
|
|
133
|
+
- lib/betforker/bookmakers/marathon.rb
|
|
134
|
+
- lib/betforker/bookmakers/williamhill.rb
|
|
135
|
+
- lib/betforker/comparer.rb
|
|
136
|
+
- lib/betforker/config.rb
|
|
137
|
+
- lib/betforker/downloader.rb
|
|
138
|
+
- lib/betforker/event.rb
|
|
139
|
+
- lib/betforker/fork.rb
|
|
140
|
+
- lib/betforker/names_winlinebet.rb
|
|
141
|
+
- lib/betforker/parsed_page.rb
|
|
142
|
+
- lib/betforker/version.rb
|
|
143
|
+
- spec/betforker_spec.rb
|
|
144
|
+
- spec/bookmakers/__to_change__/betfair_test.rb
|
|
145
|
+
- spec/bookmakers/__to_change__/parimatch_test.rb
|
|
146
|
+
- spec/bookmakers/__to_change__/sbobet_test.rb
|
|
147
|
+
- spec/bookmakers/__to_change__/winlinebet_test.rb
|
|
148
|
+
- spec/bookmakers/marathon_spec.rb
|
|
149
|
+
- spec/bookmakers/williamhill_spec.rb
|
|
150
|
+
- spec/comparer_spec.rb
|
|
151
|
+
- spec/config_spec.rb
|
|
152
|
+
- spec/downloader_spec.rb
|
|
153
|
+
- spec/event_spec.rb
|
|
154
|
+
- spec/features/without_downloads_spec.rb
|
|
155
|
+
- spec/fork_spec.rb
|
|
156
|
+
- spec/spec_helper.rb
|
|
157
|
+
- spec/support/html/betfair/betfair1.html
|
|
158
|
+
- spec/support/html/betfair/betfair2.html
|
|
159
|
+
- spec/support/html/betfair/betfair3.html
|
|
160
|
+
- spec/support/html/betfair/betfair4.html
|
|
161
|
+
- spec/support/html/betfair/bf_live.htm
|
|
162
|
+
- spec/support/html/fake/fake.html
|
|
163
|
+
- spec/support/html/marathon/first.html
|
|
164
|
+
- spec/support/html/marathon/live_page.html
|
|
165
|
+
- spec/support/html/marathon/second.html
|
|
166
|
+
- spec/support/html/marathon/with_forks.html
|
|
167
|
+
- spec/support/html/parimatch/parimatch1.html
|
|
168
|
+
- spec/support/html/parimatch/parimatch2.html
|
|
169
|
+
- spec/support/html/parimatch/parimatch3.html
|
|
170
|
+
- spec/support/html/parimatch/parimatch4.html
|
|
171
|
+
- spec/support/html/parimatch/pm_live.html
|
|
172
|
+
- spec/support/html/sbobet/sb1.htm
|
|
173
|
+
- spec/support/html/sbobet/sb2.htm
|
|
174
|
+
- spec/support/html/sbobet/sb3.htm
|
|
175
|
+
- spec/support/html/sbobet/sb4.htm
|
|
176
|
+
- spec/support/html/sbobet/sbobet_live.htm
|
|
177
|
+
- spec/support/html/williamhill/first.html
|
|
178
|
+
- spec/support/html/williamhill/live_page.html
|
|
179
|
+
- spec/support/html/williamhill/second.html
|
|
180
|
+
- spec/support/html/williamhill/with_forks.html
|
|
181
|
+
- spec/support/html/williamhill/without_forks.html
|
|
182
|
+
- spec/support/html/winlinebet/win1.htm
|
|
183
|
+
- spec/support/html/winlinebet/win2.htm
|
|
184
|
+
- spec/support/html/winlinebet/win3.htm
|
|
185
|
+
- spec/support/html/winlinebet/win4.htm
|
|
186
|
+
- spec/support/html/winlinebet/win_live.htm
|
|
187
|
+
homepage: https://github.com/akkmaxon/betforker
|
|
188
|
+
licenses: []
|
|
189
|
+
metadata: {}
|
|
190
|
+
post_install_message:
|
|
191
|
+
rdoc_options: []
|
|
192
|
+
require_paths:
|
|
193
|
+
- lib
|
|
194
|
+
- lib
|
|
195
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
196
|
+
requirements:
|
|
197
|
+
- - ">="
|
|
198
|
+
- !ruby/object:Gem::Version
|
|
199
|
+
version: '0'
|
|
200
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
201
|
+
requirements:
|
|
202
|
+
- - ">="
|
|
203
|
+
- !ruby/object:Gem::Version
|
|
204
|
+
version: '0'
|
|
205
|
+
requirements: []
|
|
206
|
+
rubyforge_project:
|
|
207
|
+
rubygems_version: 2.5.1
|
|
208
|
+
signing_key:
|
|
209
|
+
specification_version: 4
|
|
210
|
+
summary: No comments...
|
|
211
|
+
test_files: []
|