Sha256: 98d18f445664c1b8f89c78d16cec78a887e5748134e5bab0522d765aba3635a3

Contents?: true

Size: 1.27 KB

Versions: 17

Compression:

Stored size: 1.27 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", "andyjeffries"]
    # 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

17 entries across 17 versions & 1 rubygems

Version Path
LVS-JSONService-0.3.2 Rakefile
LVS-JSONService-0.3.3 Rakefile
LVS-JSONService-0.4.8 Rakefile
LVS-JSONService-0.4.7 Rakefile
LVS-JSONService-0.4.6 Rakefile
LVS-JSONService-0.4.5 Rakefile
LVS-JSONService-0.4.4 Rakefile
LVS-JSONService-0.4.3 Rakefile
LVS-JSONService-0.4.2 Rakefile
LVS-JSONService-0.4.1 Rakefile
LVS-JSONService-0.4.0 Rakefile
LVS-JSONService-0.3.9 Rakefile
LVS-JSONService-0.3.8 Rakefile
LVS-JSONService-0.3.7 Rakefile
LVS-JSONService-0.3.6 Rakefile
LVS-JSONService-0.3.5 Rakefile
LVS-JSONService-0.3.4 Rakefile