activeworlds_ffi 4.2.77.3
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/History.txt +4 -0
- data/LICENSE +33 -0
- data/PostInstall.txt +21 -0
- data/README.txt +91 -0
- data/activeworlds_ffi.gemspec +23 -0
- data/examples/base_bot.rb +1185 -0
- data/examples/bot_logger.rb +21 -0
- data/examples/bot_template.rb +61 -0
- data/examples/bots_config.yml +26 -0
- data/examples/hello.rb +75 -0
- data/examples/tracker.rb +103 -0
- data/examples/worlds.yml +9 -0
- data/lib/activeworlds_ffi.rb +2077 -0
- metadata +99 -0
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: activeworlds_ffi
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 4.2.77.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Adam Ingram-Goble
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-08-08 00:00:00 -04:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: ffi
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - "="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.3.5
|
24
|
+
version:
|
25
|
+
description: Ruby FFI based bindings for the ActiveWorlds.com SDK.
|
26
|
+
email: adamaig@gmail.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- README.txt
|
33
|
+
- LICENSE
|
34
|
+
files:
|
35
|
+
- lib/activeworlds_ffi.rb
|
36
|
+
- examples/base_bot.rb
|
37
|
+
- examples/bot_logger.rb
|
38
|
+
- examples/bot_template.rb
|
39
|
+
- examples/bots_config.yml
|
40
|
+
- examples/hello.rb
|
41
|
+
- examples/tracker.rb
|
42
|
+
- examples/worlds.yml
|
43
|
+
- History.txt
|
44
|
+
- README.txt
|
45
|
+
- LICENSE
|
46
|
+
- PostInstall.txt
|
47
|
+
- activeworlds_ffi.gemspec
|
48
|
+
has_rdoc: true
|
49
|
+
homepage: http://github.com/adamaig/activeworlds-ffi
|
50
|
+
licenses: []
|
51
|
+
|
52
|
+
post_install_message: |+
|
53
|
+
= activeworlds-ffi
|
54
|
+
|
55
|
+
== Description
|
56
|
+
|
57
|
+
A Ruby/FFI wrapper for the Active Worlds, Inc. SDK providing for the rapid
|
58
|
+
creation and deployment of "bots".
|
59
|
+
|
60
|
+
== Requirements
|
61
|
+
|
62
|
+
You must have the Active Worlds SDK (currently only the linux version, build
|
63
|
+
77), and the ffi gem version 0.3.5 installed. The SDK must be on your
|
64
|
+
LD_LIBRARY_PATH. This is a 32-bit only library because of the AW SDK, and so
|
65
|
+
for linking purposes you must have 32-bit versions of all libraries used, in
|
66
|
+
particular libstdc++.so.6 (if you have a different c++ lib, change the name in
|
67
|
+
lib/activeworlds_ffi.rb).
|
68
|
+
|
69
|
+
Also, you may need to modify your SELinux settings in order for the aw_sdk
|
70
|
+
library to be loaded.
|
71
|
+
|
72
|
+
Check the gem install directory for examples of bots built with this library.
|
73
|
+
|
74
|
+
rdoc_options:
|
75
|
+
- --charset=UTF-8
|
76
|
+
- --title='ActiveWorlds FFI -- ActiveWorlds SDK applications in Ruby'
|
77
|
+
require_paths:
|
78
|
+
- lib
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: "0"
|
84
|
+
version:
|
85
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 1.3.5
|
90
|
+
version:
|
91
|
+
requirements: []
|
92
|
+
|
93
|
+
rubyforge_project: activeworlds_ffi
|
94
|
+
rubygems_version: 1.3.5
|
95
|
+
signing_key:
|
96
|
+
specification_version: 3
|
97
|
+
summary: Ruby FFI based bindings for the ActiveWorlds.com SDK, and some support files for making applications simple.
|
98
|
+
test_files: []
|
99
|
+
|