Skip to content

Commit

Permalink
Added files for automated gem packaging at github
Browse files Browse the repository at this point in the history
  • Loading branch information
thbar committed Oct 21, 2008
1 parent ca73349 commit 2f93e4a
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
5 changes: 5 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
== 1.0.0 / 2008-10-21
* Packaged as a gem.

== 0.9.0 / 2008-05-13
* First public release on GitHub.
6 changes: 6 additions & 0 deletions Manifest.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
diacritics_fu.gemspec
History.txt
lib/diacritics_fu.rb
Manifest.txt
README
spec/diacritics_fu_spec.rb
21 changes: 21 additions & 0 deletions diacritics_fu.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Gem::Specification.new do |s|
s.name = "diacritics_fu"
s.version = "1.0.0"
s.date = "2008-10-21"
s.summary = "Tiny Ruby library to remove accents and other diacritics from a string (relies on ActiveSupport)."
s.email = "thibaut.barrere@gmail.com"
s.homepage = "http://github.com/thbar/diacritics_fu"
s.description = "A small library to remove accents from a string."
s.has_rdoc = true
s.authors = ["Thibaut Barrère"]
s.files = ["History.txt",
"README",
"Manifest.txt"
"diacritics_fu.gemspec",
"lib/diacritics_fu.rb"]
s.test_files = ["spec/diacritics_fu_spec.rb"]

s.rdoc_options = ["--main", "README.txt"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
s.add_dependency("activesupport", ["> 0.0.0"])
end

0 comments on commit 2f93e4a

Please sign in to comment.