$:.push File.expand_path('../lib', __FILE__) require 'rconf/version' Gem::Specification.new do |s| s.name = 'rconf' s.version = RightConf::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Raphael Simon'] s.email = ['raphael@rightscale.com'] s.homepage = 'http://rubygems.org/gems/rconf' s.summary = %q{Cross platform environment configuration} s.description = RightConf::DESCRIPTION s.rubyforge_project = 'rconf' s.add_dependency('json', '> 1.1.6') s.add_development_dependency('rspec', "~> 2.5") s.add_development_dependency('flexmock', "~> 0.9") s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- spec/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ['lib'] end