Sha256: 3d169dea7f71d009ef384eb94a9dc3d52b5fce75ea3bfc65f2277824c4d30b00

Contents?: true

Size: 1.2 KB

Versions: 8

Compression:

Stored size: 1.2 KB

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "app_config"
    gem.summary = %Q{Application level configuration.}
    gem.description = %Q{Application level configuration that supports YAML config file, inheritance, ERB, and object member notation.}
    gem.email = "cjbottaro@alumni.cs.utexas.edu"
    gem.homepage = "http://github.com/cjbottaro/app_config"
    gem.authors = ["Christopher J Bottaro"]

    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

desc 'Default: run unit tests.'
task :default => :test

desc 'Test the app_config plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

desc 'Generate documentation for the app_config plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'AppConfig'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

8 entries across 8 versions & 3 rubygems

Version Path
cjbottaro-app_config-1.0.0 Rakefile
cjbottaro-app_config-1.0.1 Rakefile
cjbottaro-app_config-1.1.0 Rakefile
cjbottaro-app_config-1.2.0 Rakefile
pwim-app_config-1.0.1 Rakefile
pwim-app_config-1.0.2 Rakefile
pwim-app_config-1.0.3 Rakefile
viva-app_config-1.2.0 Rakefile