Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils/narwhal.gemspec
blob: 25ed8ba24cb93456773b9b9d1200ae84456207e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
    s.name = %q{Narwhal}
    s.version = "0.0.1"
    s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
    s.authors = ["Tom Robinson", "Kris Kowal", "George Moschovitis", "Kevin Dangoor", "Hannes Wallnöfer"]
    s.date = %q{2009-05-30}
    s.description = %q{An implementation of the ServerJS standard library}
    s.email = %q{jack-js@googlegroups.com}
    s.homepage = %q{http://narwhaljs.org}
    s.executables = ["narwhal"]
    s.files = [
        "bin",
        "bin/js",
        "bin/narwhal",
        "bin/sea",
        "bin/tusk",
        "lib",
        "lib/args.js",
        "lib/codec",
        "lib/codec/base64.js",
        "lib/file.js",
        "lib/hash.js",
        "lib/hashp.js",
        "lib/http.js",
        "lib/io.js",
        "lib/json.js",
        "lib/logger.js",
        "lib/mime.js",
        "lib/narwhal",
        "lib/narwhal/repl.js",
        "lib/narwhal/tusk-init.js",
        "lib/narwhal/tusk.js",
        "lib/narwhal.js",
        "lib/packages.js",
        "lib/ref_send.js",
        "lib/regexp.js",
        "lib/sandbox.js",
        "lib/string.js",
        "lib/test",
        "lib/test/assert.js",
        "lib/test/equiv.js",
        "lib/test/jsdump.js",
        "lib/test/runner.js",
        "lib/unload.js",
        "lib/uri.js",
        "lib/util.js",
        "lib/xregexp.js",
        "platforms",
        "platforms/browser",
        "platforms/browser/lib",
        "platforms/browser/lib/reactor.js",
        "platforms/default",
        "platforms/default/lib",
        "platforms/default/lib/array.js",
        "platforms/default/lib/file-platform.js",
        "platforms/default/lib/function.js",
        "platforms/default/lib/global.js",
        "platforms/default/lib/io-platform.js",
        "platforms/default/lib/object.js",
        "platforms/default/lib/reactor.js",
        "platforms/default/lib/system.js",
        "platforms/k7",
        "platforms/k7/bin",
        "platforms/k7/bin/narwhal-k7",
        "platforms/k7/bootstrap.js",
        "platforms/k7/lib",
        "platforms/k7/lib/file-platform.js",
        "platforms/k7/lib/system.js",
        "platforms/rhino",
        "platforms/rhino/bin",
        "platforms/rhino/bin/narwhal-rhino",
        "platforms/rhino/bootstrap.js",
        "platforms/rhino/jars",
        "platforms/rhino/jars/jline.jar",
        "platforms/rhino/jars/js.jar",
        "platforms/rhino/lib",
        "platforms/rhino/lib/binary.js",
        "platforms/rhino/lib/file-platform.js",
        "platforms/rhino/lib/http-platform.js",
        "platforms/rhino/lib/io-platform.js",
        "platforms/rhino/lib/os.js",
        "platforms/rhino/lib/packages-platform.js",
        "platforms/rhino/lib/process.js",
        "platforms/rhino/lib/sandbox-platform.js",
        "platforms/rhino/lib/system.js",
        "platforms/rhino/lib/zip.js",
        "platforms/secure",
        "platforms/secure/lib",
        "platforms/secure/lib/file.js",
        "platforms/secure/lib/system.js",
        "platforms/template",
        "platforms/template/bin",
        "platforms/template/bin/narwhal-platform-name",
        "platforms/template/bootstrap.js",
        "platforms/template/lib",
        "platforms/template/lib/file-platform.js",
        "platforms/template/lib/system.js",
        "platforms/v8cgi",
        "platforms/v8cgi/bootstrap.js"
    ]
    s.require_paths = ["lib"]
    s.rubygems_version = %q{1.3.3}
    s.summary = %q{Implementation of the ServerJS standard library}
end