diff options
author | makoto kuwata <kwa@kuwata-lab.com> | 2007-05-18 07:17:19 +0000 |
---|---|---|
committer | makoto kuwata <kwa@kuwata-lab.com> | 2007-05-18 07:17:19 +0000 |
commit | 0d3fde5fc7e030dcd9b93c7fb8246e2f29d733ee (patch) | |
tree | f21138c2651ed9d699a7c26b736eeb9862a2da7c /erubis.gemspec | |
parent | 5806e6693ab79c45637ea59fe142fb5cd19cb8f2 (diff) | |
download | erubis-0d3fde5fc7e030dcd9b93c7fb8246e2f29d733ee.tar.gz |
- [refactor] remove RailsHelperEruby from helpers/rails.rb
- [bugfix] change context key 'code' to 'symbol' in benchmark/bench_context.yaml
Diffstat (limited to 'erubis.gemspec')
-rw-r--r-- | erubis.gemspec | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/erubis.gemspec b/erubis.gemspec index b269230..79034e1 100644 --- a/erubis.gemspec +++ b/erubis.gemspec @@ -12,7 +12,7 @@ spec = Gem::Specification.new do |s| ## package information s.name = "erubis" s.author = "makoto kuwata" - s.version = ("$Release$" =~ /[\.\d]+/) && $& + s.version = "$Release$" s.platform = Gem::Platform::RUBY s.homepage = "http://rubyforge.org/projects/erubis" s.summary = "a fast and extensible eRuby implementation which supports multi-language" @@ -37,13 +37,14 @@ spec = Gem::Specification.new do |s| files += Dir.glob('bin/*') files += Dir.glob('examples/**/*') files += Dir.glob('test/*.rb') + files += Dir.glob('test/data/**/*') files += %w[doc/users-guide.html doc/docstyle.css] files += %w[README.txt CHANGES MIT-LICENSE setup.rb] files += Dir.glob('contrib/*') files += Dir.glob('benchmark/*') files += Dir.glob('doc-api/**/*') s.files = files - s.executables = ['erubis', 'notext'] + s.executables = ['erubis'] s.bindir = 'bin' s.test_file = 'test/test.rb' s.add_dependency('abstract', ['>= 1.0.0']) |