Sha256: 006ac67ad58d79ed9a89a896b2b19b2df2460f4d8321ea56efa4c00757612b59

Contents?: true

Size: 999 Bytes

Versions: 70

Compression:

Stored size: 999 Bytes

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 = "caren-api"
  gem.homepage = "http://github.com/foeken/caren-api"
  gem.license = "MIT"
  gem.summary = %Q{Reference implementation of Caren CareProvider API}
  gem.description = %Q{You can use this gem as inspiration of the base of your connections with Caren.}
  gem.email = "andre.foeken@nedap.com"
  gem.authors = ["Andre Foeken"]
  # 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

task :default => :spec

Version data entries

70 entries across 70 versions & 1 rubygems

Version Path
caren-api-0.4.34 Rakefile
caren-api-0.4.33 Rakefile
caren-api-0.4.32 Rakefile
caren-api-0.4.31 Rakefile
caren-api-0.4.30 Rakefile
caren-api-0.4.29 Rakefile
caren-api-0.4.28 Rakefile
caren-api-0.4.27 Rakefile
caren-api-0.4.26 Rakefile
caren-api-0.4.25 Rakefile