]> git.wincent.com - walrat.git/commitdiff
Adapat gemspec for Walrat
authorWincent Colaiuta <win@wincent.com>
Sat, 21 Aug 2010 08:58:44 +0000 (10:58 +0200)
committerWincent Colaiuta <win@wincent.com>
Sat, 21 Aug 2010 11:04:48 +0000 (13:04 +0200)
Signed-off-by: Wincent Colaiuta <win@wincent.com>
walrat.gemspec

index 684910cddebc84c13f4b3785cc5f5d2751628ff8..6d16a275ad1911a784799bbf5bf6586e2474ef5d 100644 (file)
 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 # POSSIBILITY OF SUCH DAMAGE.
 
-require File.expand_path('lib/walrus/version.rb', File.dirname(__FILE__))
+require File.expand_path('lib/walrat/version.rb', File.dirname(__FILE__))
 
 Gem::Specification.new do |s|
-  s.name              = 'walrus'
-  s.version           = Walrus::VERSION
+  s.name              = 'walrat'
+  s.version           = Walrat::VERSION
   s.author            = 'Wincent Colaiuta'
   s.email             = 'win@wincent.com'
-  s.homepage          = 'https://wincent.com/products/walrus'
+  s.homepage          = 'https://wincent.com/products/walrat'
   s.rubyforge_project = 'walrus'
   s.platform          = Gem::Platform::RUBY
   s.summary           = 'Object-oriented templating system'
-  s.description       = <<-ENDDESC
-    Walrus is an object-oriented templating system inspired by and similar
-    to the Cheetah Python-powered template engine. It includes a Parser
-    Expression Grammar (PEG) parser generator capable of generating an
-    integrated lexer, "packrat" parser, and Abstract Syntax Tree (AST)
-    builder.
-  ENDDESC
+  s.description       = <<-DESC
+    Walrat is a Parsing Expression Grammar (PEG) parser generator that
+    creates integrated lexers, "packrat" parsers, and Abstract Syntax Tree
+    (AST) builders.
+  DESC
   s.require_paths     = ['lib']
   s.has_rdoc          = true
 
   # TODO: add 'docs' subdirectory, 'README.txt' when they're done
-  s.files             = Dir['bin/walrus', 'lib/**/*.rb']
-  s.executables       = ['walrus']
-  s.add_runtime_dependency('wopen3', '>= 0.1')
-  s.add_development_dependency('mkdtemp', '>= 1.0')
+  s.files             = Dir['lib/**/*.rb']
   s.add_development_dependency('rspec', '1.3.0')
 end