Sha256: 5e9d54ed8407cd345bb18ff9132939f9fa8f9dfacd5aab7763b9f8765df0c49a

Contents?: true

Size: 1.16 KB

Versions: 1

Compression:

Stored size: 1.16 KB

Contents

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

# Maintain your gem's version:
require "formatted_length/version"

# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
  s.name        = "formatted_length"
  s.version     = FormattedLength::VERSION
  s.authors     = ["Meron Bareket"]
  s.email       = ["mrnbrkt@gmail.com"]
  s.homepage    = "http://github.com/mrnbrkt"
  s.summary     = "Adds ability to present integer amount of seconds as text"
  s.description = "Adds formatted_length function to classes that acts_like_formatted_length, converting a length represented in seconds to a string"

  s.rubyforge_project = "formatted_length"

  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 "rake"
  s.add_development_dependency "rspec"
  s.add_development_dependency "supermodel"
  s.add_development_dependency "fuubar"
  # s.add_runtime_dependency "rest-client"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
formatted_length-0.0.7 formatted_length.gemspec