Sha256: 5518eb1da4c0c34435ffb810d8afd3ebc0a9a6fe19d6140e20485441cacbee4c

Contents?: true

Size: 812 Bytes

Versions: 39

Compression:

Stored size: 812 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'EnjuManifestationViewer'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'



Bundler::GemHelper.install_tasks

require 'rspec/core'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |spec|
    spec.pattern = FileList['spec/**/*_spec.rb']
end

task :default => :spec

Version data entries

39 entries across 39 versions & 2 rubygems

Version Path
enju_manifestation_viewer-0.3.3 Rakefile
enju_manifestation_viewer-0.3.2 Rakefile
enju_manifestation_viewer-0.3.1 Rakefile
enju_manifestation_viewer-0.3.0 Rakefile
enju_manifestation_viewer-0.3.0.rc.1 Rakefile
enju_manifestation_viewer-0.3.0.beta.2 Rakefile
enju_manifestation_viewer-0.3.0.beta.1 Rakefile
enju_manifestation_viewer-0.2.4 Rakefile
enju_manifestation_viewer-0.2.3 Rakefile
enju_manifestation_viewer-0.2.2 Rakefile
enju_manifestation_viewer-0.2.1 Rakefile
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/enju_manifestation_viewer-0.2.0/Rakefile
enju_manifestation_viewer-0.2.0 Rakefile
enju_manifestation_viewer-0.2.0.beta.4 Rakefile
enju_manifestation_viewer-0.2.0.beta.3 Rakefile
enju_manifestation_viewer-0.2.0.beta.2 Rakefile
enju_manifestation_viewer-0.2.0.beta.1 Rakefile
enju_manifestation_viewer-0.1.1 Rakefile
enju_manifestation_viewer-0.1.0 Rakefile
enju_manifestation_viewer-0.1.0.pre19 Rakefile