Sha256: 8254bdb6af593ae887e36e925951cd51683aa9c8b4cd26b235e1359d694557bb

Contents?: true

Size: 1.06 KB

Versions: 5

Compression:

Stored size: 1.06 KB

Contents

#   Copyright 2014 innoQ Deutschland GmbH
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rdoc/task'
require 'rake/testtask'

Rake::RDocTask.new do |rdoc|
  files = ['README.md', 'LICENSE', 'lib/**/*.rb']
  rdoc.rdoc_files.add(files)
  rdoc.main = "README.md" # page to start on
  rdoc.title = "RubyJSONHome Documentation"
  rdoc.rdoc_dir = 'doc' # rdoc output folder
  rdoc.options << '--line-numbers'
end

Rake::TestTask.new do |t|
  t.test_files = FileList['test/**/*.rb']
end

task :default => :test

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ruby-json-home-0.0.6 Rakefile
ruby-json-home-0.0.5 Rakefile
ruby-json-home-0.0.4 Rakefile
ruby-json-home-0.0.2 Rakefile
ruby-json-home-0.0.1 Rakefile