public
Description: Formats and escapes database text for safe use in Ruby on Rails views
Homepage:
Clone URL: git://github.com/ryanlowe/easy_format.git
easy_format / easy_format.gemspec
100644 16 lines (16 sloc) 0.742 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Gem::Specification.new do |s|
  s.name = "easy_format"
  s.version = "0.1.1"
  s.date = "2008-06-01"
  s.summary = "Formats and escapes database text for safe use in Ruby on Rails views"
  s.email = "rails@ryanlowe.ca"
  s.homepage = "http://github.com/ryanlowe/easy_format"
  s.description = "Formats and escapes database text for safe use in Ruby on Rails views"
  s.has_rdoc = false
  s.authors = ["Ryan Lowe"]
  s.files = ["README", "CHANGELOG", "MIT-LICENSE","Rakefile", "easy_format.gemspec", "init.rb","lib/easy_format.rb",
    "test/easy_format_test.rb","test/test_helper.rb"]
  s.test_files = ["test/easy_format_test.rb","test/test_helper.rb"]
  s.rdoc_options = ["--main", "README"]
  s.extra_rdoc_files = ["README","CHANGELOG"]
end