Sha256: 1c2fef8240f79858980ad58950c327a555334e88b2bd1cf4234b3df02b433732

Contents?: true

Size: 1.25 KB

Versions: 12

Compression:

Stored size: 1.25 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "JSONService"
    gem.summary = %Q{TODO}
    gem.email = "info@lvs.co.uk"
    gem.homepage = "http://github.com/lvs/JSONService"
    gem.authors = ["LVS"]
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end

rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end

begin
  gem 'ci_reporter'
  require 'ci/reporter/rake/rspec'
rescue LoadError
  # do nothing
end

require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.spec_files = FileList['spec/**/*_spec.rb']
end

Spec::Rake::SpecTask.new(:rcov) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end


task :default => :spec

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  if File.exist?('VERSION.yml')
    config = YAML.load(File.read('VERSION.yml'))
    version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
  else
    version = ""
  end

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "JSONService #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
LVS-JSONService-0.0.0 Rakefile
LVS-JSONService-0.1.0 Rakefile
LVS-JSONService-0.2.0 Rakefile
LVS-JSONService-0.2.1 Rakefile
LVS-JSONService-0.2.2 Rakefile
LVS-JSONService-0.2.3 Rakefile
LVS-JSONService-0.2.4 Rakefile
LVS-JSONService-0.2.5 Rakefile
LVS-JSONService-0.2.6 Rakefile
LVS-JSONService-0.2.8 Rakefile
LVS-JSONService-0.2.9 Rakefile
LVS-JSONService-0.3.0 Rakefile