Sha256: 6aa703ac60cdc051f2b2bb996460b1caecae535d633fb5b80324e96072ba2eb1
Contents?: true
Size: 761 Bytes
Versions: 1
Compression:
Stored size: 761 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 = 'Core Ruby extensions from the Hobo project' s.description = 'Core Ruby extensions from the Hobo project' s.add_runtime_dependency('rails', ["~> 4.0.2"]) # s.add_development_dependency('rubydoctest', [">= 0"]) 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hobo_support-2.1.2 | hobo_support.gemspec |