Sha256: 681b4967b410a0bd23192cc97aee4b67b32bf0cb2e72eb27dc02fbd95a10e5bd

Contents?: true

Size: 1.04 KB

Versions: 8

Compression:

Stored size: 1.04 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tag_along/version'

Gem::Specification.new do |sp|
  sp.name          = 'tag_along'
  sp.version       = TagAlong::VERSION
  sp.authors       = ['Dmitry Mozzherin']
  sp.email         = ['dmozzherin@gmail.com']
  sp.description   = %q{Tags a text with arbitrary tags
                          based on array of start/end offsets}
  sp.summary       = %q{A user who runs a search tool on a text would find 
                          multiple text fragments corresponding to the search.
                          These fragments can be found again by storing their 
                          start and end offsets. This gem places arbitrary
                          markup tags surrounding the fragments.}
  sp.homepage      = 'https://github.com/GlobalNamesArchitecture/tag_along'
  sp.license       = 'MIT'

  sp.files         = `git ls-files`.split($/)
  sp.test_files    = sp.files.grep(%r{^(spec|features)/})
  sp.require_paths = ['lib']
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
tag_along-0.8.2 tag_along.gemspec
tag_along-0.8.1 tag_along.gemspec
tag_along-0.8.0 tag_along.gemspec
tag_along-0.7.3 tag_along.gemspec
tag_along-0.7.2 tag_along.gemspec
tag_along-0.7.1 tag_along.gemspec
tag_along-0.7.0 tag_along.gemspec
tag_along-0.6.1 tag_along.gemspec