Sha256: 25f97e329408ebdf2852c527105cf108974a9cf3b4fddf60fb4d56d727f39387
Contents?: true
Size: 969 Bytes
Versions: 5
Compression:
Stored size: 969 Bytes
Contents
# encoding: UTF-8 require 'rubygems' begin require 'bundler/setup' rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end require 'rake' require 'rake/rdoctask' require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task :default => :spec Rake::RDocTask.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'Saasaparilla' rdoc.options << '--line-numbers' << '--inline-source' rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('lib/**/*.rb') end # begin # require "jeweler" # Jeweler::Tasks.new do |gem| # gem.name = "saasaparilla" # gem.summary = "Saas engine" # gem.files = Dir["{lib}/**/*", "{app}/**/*", "{config}/**/*"] # # other fields that would normally go in your gemspec # # like authors, email and has_rdoc can also be included here # # end # rescue # puts "Jeweler or one of its dependencies is not installed." # end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
saasaparilla-0.2.2 | Rakefile |
saasaparilla-0.2.1 | Rakefile |
saasaparilla-0.1.8 | Rakefile |
saasaparilla-0.1.7 | Rakefile |
saasaparilla-0.1.6 | Rakefile |