forked from ryan-allen/lispy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lispy.gemspec
21 lines (18 loc) · 875 Bytes
/
lispy.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "lispy"
Gem::Specification.new do |s|
s.name = "lispy"
s.version = Lispy::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ryan Allen"]
s.email = ["[email protected]"]
s.homepage = "http://rubygems.org/gems/lispy"
s.summary = %q{Code as data in Ruby, without the metaprogramming madness.}
s.description = %q{Create data structures in Ruby using idomatic 'DSL' constructs. Free yourself of metaprogramming madness, write nice APIs and decouple the implementation from it!}
s.rubyforge_project = "lispy"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end