Sha256: 0fadfd12c57e23ed77184dccca8363ea8c6b617ad1490371b805abc339666a2a
Contents?: true
Size: 1.39 KB
Versions: 2
Compression:
Stored size: 1.39 KB
Contents
# encoding: utf-8 require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' require 'jeweler' Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options gem.name = "prosto_cache" gem.homepage = "http://github.com/olek/prosto_cache" gem.license = "MIT" gem.summary = %Q{Very simple caching for your ActiveRecord models.} gem.description = %Q{Use this gem if you want a simple 'enum-like' cache for your models that does not restrict updates, but will stay current with them.} gem.email = "olek@woodenbits.com" gem.authors = ["Olek Poplavsky"] # dependencies defined in Gemfile end Jeweler::RubygemsDotOrgTasks.new require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end RSpec::Core::RakeTask.new(:rcov) do |spec| spec.pattern = 'spec/**/*_spec.rb' spec.rcov = true end require 'reek/rake/task' Reek::Rake::Task.new do |t| t.fail_on_error = true t.verbose = false t.source_files = 'lib/**/*.rb' end require 'roodi' require 'roodi_task' RoodiTask.new do |t| t.verbose = false end task :default => :spec require 'yard' YARD::Rake::YardocTask.new
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
prosto_cache-0.1.1 | Rakefile |
prosto_cache-0.1.0 | Rakefile |