Rakefile in cockpit-0.0.1.7 vs Rakefile in cockpit-0.1.1
- old
+ new
@@ -3,19 +3,20 @@
require 'rake/gempackagetask'
spec = Gem::Specification.new do |s|
s.name = "cockpit"
s.authors = ["Lance Pollard"]
- s.version = "0.0.1.7"
- s.summary = "Cockpit: Super DRY Configuration for Ruby, Rails, and Sinatra Apps"
+ s.version = "0.1.1"
+ s.summary = "Super DRY Configuration Management for Ruby, Rails, and Sinatra Apps. With Pluggable NoSQL/SQL backends using Moneta"
s.homepage = "http://github.com/viatropos/cockpit"
s.email = "lancejpollard@gmail.com"
- s.description = "Super DRY Configuration for Ruby, Rails, and Sinatra Apps"
+ s.description = "Super DRY Configuration for Ruby, Rails, and Sinatra Apps. With Pluggable NoSQL/SQL backends using Moneta"
s.has_rdoc = false
s.rubyforge_project = "cockpit"
s.platform = Gem::Platform::RUBY
- s.files = %w(README.markdown Rakefile init.rb MIT-LICENSE) + Dir["{lib,rails,test,app}/**/*"] - Dir["test/tmp"]
+ s.files = %w(README.markdown Rakefile MIT-LICENSE) + Dir["{lib,test,app}/**/*"] - Dir["test/tmp"]
s.require_path = "lib"
+ s.add_dependency("moneta")
end
Rake::GemPackageTask.new(spec) do |pkg|
pkg.gem_spec = spec
pkg.package_dir = "pkg"
\ No newline at end of file