Sha256: fe6afec491c7b9de2c0c0e71cc81b018647cfbf2ac758fd876c023bcb6389b85

Contents?: true

Size: 975 Bytes

Versions: 11

Compression:

Stored size: 975 Bytes

Contents

name = File.basename( __FILE__, '.gemspec' )
version = File.read(File.expand_path('../VERSION', __FILE__)).strip
require 'date'

Gem::Specification.new do |s|

  s.authors = ['Tom Locke']
  s.email = 'tom@tomlocke.com'
  s.homepage = 'http://hobocentral.net'
  s.rubyforge_project = 'hobo'
  s.summary = 'Rich field types and migration generator for Rails'
  s.description = 'Rich field types and migration generator for Rails'

  s.add_runtime_dependency('hobo_support', ["= #{version}"])
  s.add_development_dependency('rubydoctest', [">= 0"])
  s.add_development_dependency('RedCloth', [">= 0"]) # for testing rich types
  s.add_development_dependency('kramdown', [">= 0"])  # for testing rich types

  s.executables = ["hobofields"]
  s.files = `git ls-files -x #{name}/* -z`.split("\0")

  s.name = name
  s.version = version
  s.date = Date.today.to_s

  s.required_rubygems_version = ">= 1.3.6"
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]

end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
hobo_fields-2.1.1 hobo_fields.gemspec
hobo_fields-2.1.0 hobo_fields.gemspec
hobo_fields-2.1.0.pre4 hobo_fields.gemspec
hobo_fields-2.1.0.pre3 hobo_fields.gemspec
hobo_fields-2.1.0.pre2 hobo_fields.gemspec
hobo_fields-2.1.0.pre1 hobo_fields.gemspec
hobo_fields-2.0.1 hobo_fields.gemspec
hobo_fields-2.0.0 hobo_fields.gemspec
hobo_fields-2.0.0.pre10 hobo_fields.gemspec
hobo_fields-2.0.0.pre9 hobo_fields.gemspec
hobo_fields-2.0.0.pre8 hobo_fields.gemspec