Sha256: e8d0f3ee59d6fb6a32204060a30aee971dfb9183ef9afd627930a0fecd65c14c
Contents?: true
Size: 1.28 KB
Versions: 2
Compression:
Stored size: 1.28 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "sinatra_resource" gem.summary = %Q{RESTful actions with Sinatra and MongoMapper} gem.description = %Q{A DSL for creating RESTful actions with Sinatra and MongoMapper. It embraces the Resource Oriented Architecture as explained by Leonard Richardson and Sam Ruby.} gem.email = "djames@sunlightfoundation.com" gem.homepage = "http://github.com/djsun/sinatra_resource" gem.authors = ["David James"] gem.add_dependency 'mongo_mapper', '= 0.8.2' gem.add_dependency 'sinatra', '>= 1.0' gem.add_dependency 'query_string_filter', '>= 0.1.4' gem.add_development_dependency 'crack', '>= 0.1.4' gem.add_development_dependency 'tu-context', '>= 0.5.8' gem.add_development_dependency 'pending', '>= 0.1.1' gem.add_development_dependency 'rspec', '>= 1.2.9' gem.add_development_dependency 'yard', '>= 0.2.3.5' # gem is a Gem::Specification ... # ... see http://www.rubygems.org/read/chapter/20 for additional settings end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler (or a dependency) not available. Install with: gem install jeweler" end task :default => :spec Dir.glob(File.dirname(__FILE__) + '/tasks/*.rake').each { |f| load f }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sinatra_resource-0.4.22 | Rakefile |
sinatra_resource-0.4.21 | Rakefile |