Sha256: a79c87e0bedea2311e1cc2b3d36b508a7bd04cc0a76aca4d75345a0b28483ad4
Contents?: true
Size: 998 Bytes
Versions: 1
Compression:
Stored size: 998 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "cim" Gem::Specification.new do |s| s.name = "cim" s.version = CIM::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Klaus Kämpf"] s.email = ["kkaempf@suse.de"] s.homepage = "https://github.com/kkaempf/cim" s.summary = %q{A pure-Ruby implementation of the CIM meta model} s.description = %q{Instances of Cim classes are used to define a CIM schema, often represented as a .mof file. See http://www.dmtf.org/standards/cim and http://www.dmtf.org/education/mof for details} s.rubyforge_project = "cim" s.files = `git ls-files`.split("\n") s.files.reject! { |fn| fn == '.gitignore' } s.extra_rdoc_files = Dir['README*', 'TODO*', 'CHANGELOG*', 'LICENSE'] s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cim-0.5.0 | cim.gemspec |