public
Description: Uses client-side Javascript to format a datetime instead of the Ruby on Rails server.
Homepage: http://www.disruptiveagility.com/plugin/client_date
Clone URL: git://github.com/ryanlowe/client_date.git
client_date / client_date.gemspec
100644 18 lines (18 sloc) 0.818 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Gem::Specification.new do |s|
  s.name = "client_date"
  s.version = "0.1.1"
  s.date = "2008-06-06"
  s.summary = "Uses client-side Javascript to format a datetime instead of the Ruby on Rails server"
  s.email = "rails@ryanlowe.ca"
  s.homepage = "http://github.com/ryanlowe/client_date"
  s.description = "Uses client-side Javascript to format a datetime instead of the Ruby on Rails server"
  s.has_rdoc = false
  s.authors = ["Ryan Lowe"]
  s.files = ["README", "CHANGELOG", "MIT-LICENSE","Rakefile", "client_date.gemspec", "init.rb",
    "lib/client_date.rb",
    "public/javascripts/client_date.js",
    "test/client_date_test.rb","test/test_helper.rb"]
  s.test_files = ["test/client_date_test.rb","test/test_helper.rb"]
  s.rdoc_options = ["--main", "README"]
  s.extra_rdoc_files = ["README","CHANGELOG"]
end