Sha256: 574ff20f5082a2e8e443baa173b5ac89056d738e404fd62c2dfdc9d8d901601e
Contents?: true
Size: 1.16 KB
Versions: 1
Compression:
Stored size: 1.16 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "mof/version" Gem::Specification.new do |s| s.name = "mof" s.version = MOF::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Klaus Kämpf"] s.email = ["kkaempf@suse.de"] s.homepage = "https://github.com/kkaempf/mof" s.summary = %q{A pure Ruby parser for MOF (Managed Object Format) files} s.description = %q{The Managed Object Format (MOF) language used to describe classes and instances of the Common Information Model (CIM). See http://www.dmtf.org/education/mof} s.rubyforge_project = "mof" # CIM metamodel s.add_dependency("cim", ["~> 1.2"]) s.add_development_dependency('rake') s.add_development_dependency('bundler') s.add_development_dependency('racc') s.files = `git ls-files`.split("\n") << "lib/mof/parser.rb" 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 |
---|---|
mof-1.2.5 | mof.gemspec |