Sha256: 092c63bd175776071a18d632eed1ffad3368ea569e49eed0fc3cbc247fe8251e

Contents?: true

Size: 1.83 KB

Versions: 1

Compression:

Stored size: 1.83 KB

Contents

# -*- encoding: utf-8 -*-
require 'rubygems' unless Object.const_defined?(:Gem)
require File.dirname(__FILE__) + "/lib/has_machine_tags/version"

Gem::Specification.new do |s|
  s.name        = "has_machine_tags"
  s.version     = HasMachineTags::VERSION
  s.authors     = ["Gabriel Horner"]
  s.email       = "gabriel.horner@gmail.com"
  s.homepage    = "http://tagaholic.me/has_machine_tags/"
  s.summary = "A rails tagging gem which implements flickr's machine tags and maybe more (semantic tags)."
  s.description = "This plugin implements Flickr's machine tags as explained here[http://www.flickr.com/groups/api/discuss/72157594497877875] while still maintaining standard tagging behavior.  Basically, a machine tag has a namespace, a predicate and a value in the format     [namespace]:[predicate]=[value]   This allows for more precise tagging as tags can have unlimited contexts provided by combinations of namespaces and predicates. These unlimited contexts also make machine tags ripe for modeling relationships between objects. Read the HasMachineTags::TagMethods class documentation for a more thorough explanation.  A demo app using this plugin is here. This gem should run on all major Ruby versions and work with Rails 2.3.x and up."
  s.required_rubygems_version = ">= 1.3.6"
  s.add_development_dependency 'bacon', '>= 1.1.0'
  s.add_development_dependency 'bacon-bits'
  s.add_development_dependency 'activerecord', '~> 3.2.0'
  s.add_development_dependency 'sqlite3', '~> 1.3.0'
  s.add_development_dependency 'activerecord-jdbcsqlite3-adapter', '~> 1.2.2'
  s.files = Dir.glob(%w[{lib,test}/**/*.rb bin/* [A-Z]*.{txt,rdoc} ext/**/*.{rb,c} **/deps.rip]) + %w{Rakefile .gemspec .travis.yml}
  s.files += Dir.glob('generators/**/*.rb') + ['init.rb', '.gitignore', 'Gemfile']
  s.extra_rdoc_files = ["README.rdoc", "LICENSE.txt"]
  s.license = 'MIT'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
has_machine_tags-0.2.1 .gemspec