Sha256: 664f23f05d8da5d7cd3bf8de6f0bc626bfe4fc0ca48057e7e36c55888c6726e6

Contents?: true

Size: 1.28 KB

Versions: 18

Compression:

Stored size: 1.28 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 = 'fluent-plugin-xml-simple-filter'
  gem.homepage = 'https://github.com/CSharpRU/fluent-plugin-xml-simple-filter'
  gem.license = 'BSD-3-Clause'
  gem.summary = 'Fluent filter for XML'
  gem.description = 'Fluent filter for XML that just converts specified fields with XML to hashes'
  gem.email = 'c_sharp@mail.ru'
  gem.authors = ['Yaroslav Lukyanov']
  # dependencies defined in Gemfile
end

Jeweler::RubygemsDotOrgTasks.new

require 'rdoc/task'

Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "fluent-plugin-xml-simple-filter #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

# Get spec rake tasks working in RSpec 2.0
require 'rspec/core/rake_task'

desc 'Default: run specs.'
task :default => :spec

desc 'Run specs'
RSpec::Core::RakeTask.new do |t|

end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
fluent-plugin-xml-simple-filter-0.0.20 Rakefile
fluent-plugin-xml-simple-filter-0.0.19 Rakefile
fluent-plugin-xml-simple-filter-0.0.18 Rakefile
fluent-plugin-xml-simple-filter-0.0.17 Rakefile
fluent-plugin-xml-simple-filter-0.0.16 Rakefile
fluent-plugin-xml-simple-filter-0.0.15 Rakefile
fluent-plugin-xml-simple-filter-0.0.14 Rakefile
fluent-plugin-xml-simple-filter-0.0.13 Rakefile
fluent-plugin-xml-simple-filter-0.0.12 Rakefile
fluent-plugin-xml-simple-filter-0.0.11 Rakefile
fluent-plugin-xml-simple-filter-0.0.10 Rakefile
fluent-plugin-xml-simple-filter-0.0.9 Rakefile
fluent-plugin-xml-simple-filter-0.0.8 Rakefile
fluent-plugin-xml-simple-filter-0.0.7 Rakefile
fluent-plugin-xml-simple-filter-0.0.6 Rakefile
fluent-plugin-xml-simple-filter-0.0.5 Rakefile
fluent-plugin-xml-simple-filter-0.0.4 Rakefile
fluent-plugin-xml-simple-filter-0.0.3 Rakefile