Sha256: ab6f56b8d0db0b3e465693e41f319d11a654de05f6ef64ef53b12e86596404a1
Contents?: true
Size: 1.35 KB
Versions: 7
Compression:
Stored size: 1.35 KB
Contents
require 'rubygems' require 'bundler' require './lib/open_ehr' 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 = "open_ehr" gem.homepage = "http://github.com/skoba/ruby-impl-openehr" gem.license = "The openEHR Open Source Software license(mozilla tri-license)" gem.summary = %Q{Ruby implementation of the openEHR specification} gem.description = %Q{This project is an implementation of the openEHR specification on Ruby.} gem.email = "skoba@moss.gr.jp" gem.authors = ["Shinji KOBAYASHI", "Akimichi Tatsukawa"] # 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 require 'rdoc/task' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "gempack #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
open_ehr-1.0.2 | Rakefile |
open_ehr-1.0.1 | Rakefile |
open_ehr-1.0.0 | Rakefile |
open_ehr-0.9.5 | Rakefile |
open_ehr-0.9.4 | Rakefile |
open_ehr-0.9.3 | Rakefile |
open_ehr-0.9.2 | Rakefile |