public
Description: Localization (L10n) and Internationalization (i18n) support for the Merb MVC Framework
Homepage: http://merbglobal.piechotka.com.pl/
Clone URL: git://github.com/myabc/merb_global.git
Click here to lend your support to: merb_global and make a donation at www.pledgie.com !
fbettag (author)
Tue Sep 01 05:33:09 -0700 2009
myabc (committer)
Tue Sep 01 05:33:09 -0700 2009
commit  6e58d387d700322de45dd5fff3f63cd446793c53
tree    33fc4fe028e981f9384dcbbdfc0fa75f4d9dc62a
parent  1ffc3f880a9c3a3edd3d3a57a97f23a1425b4771
merb_global / merb_global.gemspec
100644 25 lines (21 sloc) 0.85 kb
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
# -*- encoding: utf-8 -*-
 
 
Gem::Specification.new do |s|
  s.name = "merb_global"
  s.version = "0.0.7"
  s.platform = Gem::Platform::RUBY
  s.summary = "Localization (L10n) and Internationalization (i18n) support for the Merb MVC Framework"
  s.description = s.summary
  s.authors = ["Alex Coles", "Maciej Piechotka", "Michael Johnston"]
  s.email = "merb_global@googlegroups.com"
  s.homepage = "http://trac.ikonoklastik.com/merb_global/"
  s.rubyforge_project = 'merb-global'
  s.add_dependency('merb-core', '>= 0.9.1')
  s.add_dependency('treetop', '>= 1.2.3') # Tested on 1.2.3
  s.require_path = 'lib'
  s.autorequire = "merb_global"
  s.files = %w(LICENSE README Rakefile TODO HISTORY) +
            Dir.glob("{lib,specs,*_generators,examples}/**/*")
  
  # rdoc
  s.has_rdoc = true
  s.extra_rdoc_files = %w(README LICENSE TODO HISTORY)
end