Skip to content

Commit

Permalink
release of 0.1 as gem
Browse files Browse the repository at this point in the history
  • Loading branch information
grosser committed Feb 19, 2009
1 parent e6bc850 commit c1d615f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1 +1,2 @@
pkg
benchmark/locle
3 changes: 1 addition & 2 deletions Rakefile
Expand Up @@ -18,8 +18,7 @@ begin
gem.email = "grosser.michael@gmail.com"
gem.homepage = "http://github.com/grosser/fast_gettext"
gem.authors = ["Michael Grosser"]
gem.add_dependency ['']
gem.files += FileList["vendor/**/*"]
gem.files += FileList["{lib,vendor,spec,benchmark}/**/*"]
end
rescue LoadError
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
Expand Down
28 changes: 28 additions & 0 deletions fast_gettext.gemspec
@@ -0,0 +1,28 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{fast_gettext}
s.version = "0.1.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Michael Grosser"]
s.date = %q{2009-02-19}
s.email = %q{grosser.michael@gmail.com}
s.files = ["lib/fast_gettext.rb", "lib/fast_gettext", "lib/fast_gettext/storage.rb", "lib/fast_gettext/mo_file.rb", "vendor/mofile.rb", "spec/fast_gettext_spec.rb", "spec/spec_helper.rb", "spec/locale", "spec/locale/en", "spec/locale/en/LC_MESSAGES", "spec/locale/en/LC_MESSAGES/test.mo", "spec/locale/de", "spec/locale/de/LC_MESSAGES", "spec/locale/de/LC_MESSAGES/test.mo", "spec/fast_gettext", "spec/fast_gettext/storage_spec.rb", "spec/fast_gettext/mo_file_spec.rb", "benchmark/original.rb", "benchmark/fast_gettext.rb", "benchmark/locale", "benchmark/locale/de", "benchmark/locale/de/LC_MESSAGES", "benchmark/locale/de/LC_MESSAGES/large.mo", "benchmark/base.rb"]
s.has_rdoc = true
s.homepage = %q{http://github.com/grosser/fast_gettext}
s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1}
s.summary = %q{A simple, fast and threadsafe implementation of GetText}

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end

0 comments on commit c1d615f

Please sign in to comment.