Sha256: 28bc31e05a01c84adbb6d67d61f9203ad269880ed80b09754036b3d820e8fd36

Contents?: true

Size: 1.09 KB

Versions: 1

Compression:

Stored size: 1.09 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "papla/version"

Gem::Specification.new do |s|
  s.name        = "papla"
  s.version     = Papla::VERSION
  s.authors     = ["Olek Janiszewski"]
  s.email       = ["olek.janiszewski@gmail.com"]
  s.homepage    = "https://github.com/exviva/papla"
  s.summary     = %q{Use Ruby to convert numbers into Polish words}
  s.description = %q{Papla is a Ruby gem that allows you to convert numbers into Polish words (e.g. 153 into "sto pięćdziesiąt trzy"), including the decimal part as cents and currency symbol. Its primary use case are invoices, where the total amount has to be displayed as words at the bottom line.}

  s.rubyforge_project = "papla"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  # specify any dependencies here; for example:
  s.add_development_dependency 'rspec', '>= 2.8.0.rc2'
  # s.add_runtime_dependency "rest-client"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
papla-0.0.1 papla.gemspec