Sha256: c2f16b5fd6549959ca8f7dfe3646cdb0120708c75a627ba38c32045ded94eb23
Contents?: true
Size: 1.56 KB
Versions: 2
Compression:
Stored size: 1.56 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "strings/version" Gem::Specification.new do |spec| spec.name = "strings" spec.version = Strings::VERSION spec.authors = ["Piotr Murach"] spec.email = ["me@piotrmurach.com"] spec.summary = %q{A set of useful functions for transforming strings.} spec.description = %q{A set of useful functions such as fold, truncate, wrap and more for transoforming strings.} spec.homepage = "https://github.com/piotrmurach/strings" spec.license = "MIT" spec.metadata["allowed_push_host"] = "https://rubygems.org" spec.metadata["changelog_uri"] = "https://github.com/piotrmurach/strings/blob/master/CHANGELOG.md" spec.metadata["documentation_uri"] = "https://www.rubydoc.info/gems/strings" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/piotrmurach/strings" spec.files = Dir['{lib,spec}/**/*.rb', '{bin,tasks}/*', 'strings.gemspec'] spec.files += Dir['README.md', 'CHANGELOG.md', 'LICENSE.txt', 'Rakefile'] spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "strings-ansi", "~> 0.1" spec.add_dependency "unicode_utils", "~> 1.4" spec.add_dependency "unicode-display_width", "~> 1.5" spec.add_development_dependency "bundler", ">= 1.5" spec.add_development_dependency "rake" spec.add_development_dependency "rspec", ">= 3.0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
strings-0.1.8 | strings.gemspec |
strings-0.1.7 | strings.gemspec |