Sha256: 99a0b21a49cf42a726929cdf374759beb89dccb87d766e352d0648dc9f68d7c3
Contents?: true
Size: 748 Bytes
Versions: 4
Compression:
Stored size: 748 Bytes
Contents
# -*- coding: utf-8 -*- require 'rake' require 'jeweler' require 'rspec/core/rake_task' desc 'Default: Run all specs for a specific rails version.' task :default => :spec desc "Run all specs for a specific rails version" RSpec::Core::RakeTask.new(:spec) do |t| t.pattern = '**/*_spec.rb' end Jeweler::Tasks.new do |gem| gem.name = "dynamic_configuration" gem.summary = "Flexible configuration library for Ruby and Rails applications." gem.description = "Flexible configuration library for Ruby and Rails applications." gem.email = "jrzeszotko@gmail.com" gem.homepage = "http://github.com/jaroslawr/dynamic_configuration" gem.authors = ["Jarosław Rzeszótko"] gem.add_dependency('builder') end Jeweler::RubygemsDotOrgTasks.new
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
dynamic_configuration-0.2.0 | Rakefile |
dynamic_configuration-0.1.6 | Rakefile |
dynamic_configuration-0.1.5 | Rakefile |
dynamic_configuration-0.1.4 | Rakefile |