-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathfancy.gemspec
49 lines (39 loc) · 1.83 KB
/
fancy.gemspec
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
Gem::Specification.new do |s|
s.name = "fancy"
s.version = "0.10.0"
s.authors = ["Christopher Bertels"]
s.date = "2013-07-30"
s.email = "[email protected]"
files =
["README.md", "LICENSE", "AUTHORS", "Rakefile", "boot/extconf.rb", "ruby_lib/fancy.rb"] +
["ruby_lib/fancy", "ruby_lib/ifancy", "ruby_lib/fdoc", "ruby_lib/fyi", "ruby_lib/fspec"] +
Dir.glob("lib/**/*.fy") + Dir.glob("lib/parser/ext/**/*") +
Dir.glob("tests/**/*.fy") + ["tools/fancy-mode.el"] + ["bin/fancy", "bin/fdoc", "bin/fyi", "bin/ifancy", "bin/fspec"] +
Dir.glob("examples/**/*.fy") + Dir.glob("doc/**/*") + Dir.glob("ruby_lib/interactive/*")
files = files.reject{ |f| f =~ /\.(fyc|rbc|o|log|plist)/ }.reject{ |f| f =~ /conftest\.dSYM/ }
files += Dir.glob("boot/**/*").reject{ |f| f =~ /conftest\.dSYM/ }.reject{ |f| f =~ /\.(fyc|rbc|o|log|plist)/ }
s.files = files
s.require_path = "ruby_lib"
s.extensions = 'boot/extconf.rb'
s.bindir = "ruby_lib"
s.executables = ["fancy", "ifancy", "fdoc", "fyi", "fspec"]
s.license = "BSD"
s.has_rdoc = false
s.homepage = "http://www.fancy-lang.org"
s.rubyforge_project = "fancy"
s.summary = "The Fancy Programming Language"
s.add_dependency "rubinius-actor"
s.add_dependency "rubinius-compiler"
s.required_ruby_version = '>= 1.9.3'
s.description = <<EOS
The Fancy Programming Language
Fancy is a fully self-hosted, dynamic, pure class-based
object-oriented programming language heavily inspired by Smalltalk,
Ruby and Erlang. It supports dynamic code evaluation (as in Ruby &
Smalltalk), class-based mixins, generic pattern matching, runtime
introspection & reflection, "monkey patching" and much more. It runs
on Rubinius, the Ruby VM, and thus has first-class integration with
Ruby's core library and any additional Ruby libraries that run on
Rubinius, including most C-extensions.
EOS
end