gamespy_query 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.
- data/README.md +4 -0
- data/lib/gamespy_query/master.rb +3 -3
- data/lib/gamespy_query/version.rb +1 -1
- metadata +2 -1
data/README.md
ADDED
data/lib/gamespy_query/master.rb
CHANGED
@@ -15,7 +15,7 @@ module GamespyQuery
|
|
15
15
|
end
|
16
16
|
|
17
17
|
def geoip_path
|
18
|
-
return "" unless defined?(Rails)
|
18
|
+
return File.join(Dir.pwd, "config") unless defined?(Rails)
|
19
19
|
|
20
20
|
case RUBY_PLATFORM
|
21
21
|
when /-mingw32$/, /-mswin32$/
|
@@ -38,10 +38,10 @@ module GamespyQuery
|
|
38
38
|
geo = @geo ? @geo : "-Q 11 "
|
39
39
|
unless File.exists?(File.join(geoip_path, "GeoIP.dat"))
|
40
40
|
puts
|
41
|
-
puts "Warning: GeoIP.dat database missing. Can't parse countries. #{
|
41
|
+
puts "Warning: GeoIP.dat database missing. Can't parse countries. #{geoip_path}"
|
42
42
|
geo = nil
|
43
43
|
end
|
44
|
-
reply = %x[gslist -p "#{
|
44
|
+
reply = %x[gslist -p "#{geoip_path}" -n #{@game} #{geo}-X #{PARAMS.clone.map{|e| "#{DELIMIT}#{e}"}.join("")}]
|
45
45
|
reply.gsub!("\\\\\\", "") if geo
|
46
46
|
reply.split("\n")
|
47
47
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gamespy_query
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -20,6 +20,7 @@ extra_rdoc_files: []
|
|
20
20
|
files:
|
21
21
|
- .gitignore
|
22
22
|
- Gemfile
|
23
|
+
- README.md
|
23
24
|
- Rakefile
|
24
25
|
- gamespy_query.gemspec
|
25
26
|
- lib/gamespy_query.rb
|