Sha256: 3a4d0422396054278f33d6bc9582a9453042ab2c0199ead8d5d52d41a3f34c4d

Contents?: true

Size: 1.22 KB

Versions: 3

Compression:

Stored size: 1.22 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "acts_as_content_highlightable"
  spec.version       = ActsAsContentHighlightable::VERSION
  spec.authors       = ["Karthik Ravichandran"]
  spec.email         = ["kb1990@gmail.com"]
  spec.summary       = %q{One way to highlight HTML content with Rails + Javascript.}
  spec.description   = %q{By tagging all the text nodes in the HTML content, this gem enables highlighting text and saving those highlights with user information}
  spec.homepage      = "https://github.com/kbravi/acts_as_content_highlightable"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "nokogiri"

  spec.add_development_dependency "bundler", "~> 1.14"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"
  spec.add_development_dependency "pg"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
acts_as_content_highlightable-0.2.1 acts_as_content_highlightable.gemspec
acts_as_content_highlightable-0.2.0 acts_as_content_highlightable.gemspec
acts_as_content_highlightable-0.1.0 acts_as_content_highlightable.gemspec