adamaig-ruby_activeworld 0.1-linux
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 +131 -0
- data/examples/configs.yml +10 -0
- data/examples/sample_event_bot.rb +29 -0
- data/ext/extconf.rb +8 -0
- data/lib/ruby_activeworld_enums.rb +1678 -0
- data/lib/ruby_activeworld_support.rb +586 -0
- data/lib/ruby_aw.rb +84 -0
- data/utilities/aw_enums_and_constants.rb +80 -0
- data/utilities/callback_generator.rb +126 -0
- data/utilities/ruby_activeworld_enums.rb +1678 -0
- data/utilities/t.txt +1127 -0
- metadata +68 -0
metadata
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: adamaig-ruby_activeworld
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: "0.1"
|
5
|
+
platform: linux
|
6
|
+
authors:
|
7
|
+
- Adam Ingram-Goble
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-03-09 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: A ruby binding, and sugary methods for the Activeworlds SDK. You must have the linux sdk in your LD_LIBRARY_PATH to use this gem (libaw_sdk.41.so) See http://www.activeworlds.com
|
17
|
+
email: adamaig@gmail.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions:
|
21
|
+
- ext/extconf.rb
|
22
|
+
extra_rdoc_files: []
|
23
|
+
|
24
|
+
files:
|
25
|
+
- README
|
26
|
+
- examples/configs.yml
|
27
|
+
- examples/sample_event_bot.rb
|
28
|
+
- lib/ruby_activeworld_enums.rb
|
29
|
+
- lib/ruby_activeworld_support.rb
|
30
|
+
- lib/ruby_aw.rb
|
31
|
+
- utilities/aw_enums_and_constants.rb
|
32
|
+
- utilities/callback_generator.rb
|
33
|
+
- utilities/ruby_activeworld_enums.rb
|
34
|
+
- utilities/t.txt
|
35
|
+
has_rdoc: true
|
36
|
+
homepage: http://github.com/adamaig/ruby_activeworld/tree/master
|
37
|
+
post_install_message:
|
38
|
+
rdoc_options:
|
39
|
+
- --line-numbers
|
40
|
+
- --inline-source
|
41
|
+
- --title
|
42
|
+
- RubyActiveworlds
|
43
|
+
- --main
|
44
|
+
- README
|
45
|
+
require_paths:
|
46
|
+
- ext
|
47
|
+
- lib
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: "0"
|
53
|
+
version:
|
54
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: "0"
|
59
|
+
version:
|
60
|
+
requirements:
|
61
|
+
- " You must have libaw_sdk.41.so in your LD_LIBRARY_PATH."
|
62
|
+
rubyforge_project:
|
63
|
+
rubygems_version: 1.2.0
|
64
|
+
signing_key:
|
65
|
+
specification_version: 2
|
66
|
+
summary: A ruby binding, and sugary methods for the Activeworlds SDK. See http://www.activeworlds.com
|
67
|
+
test_files: []
|
68
|
+
|