Sha256: 7e9862e42fc9b547efd6a4ebfe4c22725f7751996b5b4e9353801fe34f443157
Contents?: true
Size: 844 Bytes
Versions: 1
Compression:
Stored size: 844 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "soloist/version" Gem::Specification.new do |s| s.name = "soloist" s.version = Soloist::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Matthew Kocher"] s.email = ["kocher@gmail.com"] s.homepage = "http://github.com/mkocher/soloist" s.summary = %q{Soloist is a simple way of running chef-solo} s.description = %q{Soloist is an easy way of running chef solo, but it's not doing much.} s.rubyforge_project = "soloist" s.files = `git ls-files`.split("\n") 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"] s.add_dependency('chef') s.add_dependency('json') end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
soloist-0.9.0 | soloist.gemspec |