Sha256: f09d8444cb647e47a8e9b519fbe88df607f99003cfefca9f1341acd7ab4e6054
Contents?: true
Size: 827 Bytes
Versions: 1
Compression:
Stored size: 827 Bytes
Contents
require 'rake' gem_spec = Gem::Specification.new do |gem_spec| gem_spec.name = "kitsune" gem_spec.version = "0.0.17" gem_spec.summary = "Integrated Rails Content Management System." gem_spec.email = "matt@toastyapps.com" gem_spec.homepage = "http://github.com/toastyapps/kitsune" gem_spec.description = "Integrated Rails Content Management System." gem_spec.authors = ["Matthew Mongeau <matt@toastyapps.com>"] gem_spec.files = FileList["[A-Z]*", "{app,config,generators,lib,rails}/**/*"] gem_spec.requirements << "will_paginate" gem_spec.requirements << "haml" gem_spec.add_dependency('will_paginate', '~> 2.3.11') gem_spec.add_dependency('haml', '~> 2.2.12') end desc "Generate gemspec file" task :gemspec do File.open("#{gem_spec.name}.gemspec", 'w') do |f| f.write gem_spec.to_yaml end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kitsune-0.0.17 | Rakefile |