smartfox_jruby 0.2-java → 0.2.1-java
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/Doubleshot +9 -9
- data/lib/smartfox_jruby/sfs_adapter.rb +1 -1
- data/lib/smartfox_jruby.rb +1 -1
- metadata +4 -1
data/Doubleshot
CHANGED
|
@@ -13,20 +13,20 @@ Doubleshot.new do |config|
|
|
|
13
13
|
config.mvn_repository 'http://repo1.maven.org/maven2'
|
|
14
14
|
config.mvn_repository 'http://artifactory-innovations.i-free.ru/artifactory/ext-release-local'
|
|
15
15
|
|
|
16
|
-
config.jar 'com.smartfox2x.client:sfs2x-client-core:1.0.4'
|
|
17
|
-
config.jar 'com.smartfox2x.client:sfs2x-api-java:1.0.4'
|
|
18
|
-
config.jar 'org.slf4j:slf4j-log4j12:1.5.10'
|
|
16
|
+
config.jar 'com.smartfox2x.client:sfs2x-client-core:jar:1.0.4'
|
|
17
|
+
config.jar 'com.smartfox2x.client:sfs2x-api-java:jar:1.0.4'
|
|
18
|
+
config.jar 'org.slf4j:slf4j-log4j12:jar:1.5.10'
|
|
19
19
|
|
|
20
20
|
config.gemspec do |spec|
|
|
21
|
-
spec.summary
|
|
22
|
-
spec.description
|
|
21
|
+
spec.summary = "Smartfox client for jruby"
|
|
22
|
+
spec.description = <<-DESCRIPTION
|
|
23
23
|
Allows to connect and easily process messages from and to SmartFox game server
|
|
24
24
|
DESCRIPTION
|
|
25
25
|
|
|
26
|
-
spec.homepage
|
|
27
|
-
spec.author
|
|
28
|
-
spec.email
|
|
29
|
-
spec.license
|
|
26
|
+
spec.homepage = "https://github.com/smecsia/smartfox_jruby"
|
|
27
|
+
spec.author = "Ilya Sadykov"
|
|
28
|
+
spec.email = "smecsia@gmail.com"
|
|
29
|
+
spec.license = "Apache 2.0"
|
|
30
30
|
end
|
|
31
31
|
|
|
32
32
|
end
|
|
@@ -14,7 +14,7 @@ class SmartfoxJruby::SfsAdapter
|
|
|
14
14
|
@smart_fox = SmartFox.new(false)
|
|
15
15
|
@connected = false
|
|
16
16
|
@worker = opts[:worker]
|
|
17
|
-
@login_as = {}
|
|
17
|
+
@login_as = opts[:login_as] || {}
|
|
18
18
|
@opts[:timeout] ||= 20
|
|
19
19
|
@opts[:logger] ||= Logger.new(STDOUT)
|
|
20
20
|
SFSEvent.constants.each do |evt|
|
data/lib/smartfox_jruby.rb
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: smartfox_jruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version:
|
|
5
|
+
version: 0.2.1
|
|
6
6
|
platform: java
|
|
7
7
|
authors:
|
|
8
8
|
- Ilya Sadykov
|
|
@@ -113,6 +113,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
113
113
|
- !ruby/object:Gem::Version
|
|
114
114
|
version: !binary |-
|
|
115
115
|
MA==
|
|
116
|
+
segments:
|
|
117
|
+
- 0
|
|
118
|
+
hash: 2
|
|
116
119
|
none: false
|
|
117
120
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
118
121
|
requirements:
|