Sha256: 6fb6628565e0d4bdd0e21e26757c175d2c8f46d4710c7a4e857d812991fd8ce3

Contents?: true

Size: 1.21 KB

Versions: 10

Compression:

Stored size: 1.21 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 = "ruby-conf"
  gem.homepage = "http://github.com/blazingpair/ruby-conf"
  gem.license = "MIT"
  gem.summary = %Q{dsl (domain specific language) for config files in ruby}
  gem.description = %Q{rubyconf is a ruby configuration dsl that aims to make it simple to write and read configurations for ruby apps without a yaml or xml file}
  gem.email = "blazingpair@blazingcloud.net"
  gem.authors = ["Curtis Schofield & Hollin Wilkins"]
  # 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

task :default => :spec

require 'yard'
YARD::Rake::YardocTask.new

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ruby-conf-1.4.4 Rakefile
ruby-conf-1.4.3 Rakefile
ruby-conf-1.4.2 Rakefile
ruby-conf-1.4.1 Rakefile
ruby-conf-1.4.0 Rakefile
ruby-conf-1.3.0 Rakefile
ruby-conf-1.1.0 Rakefile
ruby-conf-1.0.1 Rakefile
ruby-conf-0.1.0 Rakefile
ruby-conf-0.0.0 Rakefile