forked from ruby-hl7/ruby-hl7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
150 lines (130 loc) · 4.46 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# $Id$
require 'rubygems'
require 'rake'
require 'rdoc/task'
require 'rubygems/package_task'
require 'rake/contrib/sshpublisher'
require 'rbconfig'
require 'rubyforge'
require 'rspec'
require 'rspec/core/rake_task'
require 'simplecov'
$: << './lib'
require 'ruby-hl7'
require 'message_parser'
require 'message'
require 'segment_list_storage'
require 'segment_generator'
require 'segment'
full_name = "Ruby-HL7"
short_name = full_name.downcase
RAKEVERSION = 11.0
# Many of these tasks were garnered from zenspider's Hoe
# just forced to work my way
desc 'Default: Run all examples'
task :default => :spec
if RUBY_VERSION < '1.9.1'
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = short_name
s.full_name
s.summary = "Ruby HL7 Library"
s.authors = ["Mark Guzman"]
s.email = "ruby-hl7@googlegroups.com"
s.homepage = "http://github.com/ruby-hl7/ruby-hl7"
s.description = "A simple library to parse and generate HL7 2.x messages"
s.require_path = "lib"
s.has_rdoc = true
s.rubyforge_project = short_name
s.required_ruby_version = '>= 1.8.6'
s.extra_rdoc_files = %w[README.rdoc LICENSE]
s.files = FileList["{bin,lib,test_data}/**/*"].to_a
s.test_files = FileList["{test}/**/test*.rb"].to_a
s.add_dependency("rake", ">= #{RAKEVERSION}")
end
rescue LoadError
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install jeweler"
end
end
spec = Gem::Specification.new do |s|
s.name = short_name
s.full_name
s.version = HL7::VERSION
s.author = "Mark Guzman"
s.email = "ruby-hl7@googlegroups.com"
s.homepage = "https://github.com/ruby-hl7/ruby-hl7"
s.platform = Gem::Platform::RUBY
s.summary = "Ruby HL7 Library"
s.rubyforge_project = short_name
s.description = "A simple library to parse and generate HL7 2.x messages"
s.files = FileList["{bin,lib,test_data}/**/*"].to_a
s.require_path = "lib"
s.test_files = FileList["{test}/**/test*.rb"].to_a
s.has_rdoc = true
s.required_ruby_version = '>= 1.8.6'
s.extra_rdoc_files = %w[README.rdoc LICENSE]
s.add_dependency("rake", ">= #{RAKEVERSION}")
s.add_dependency("rubyforge", ">= #{::RubyForge::VERSION}")
end
desc "Run all examples"
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = 'spec/**/*.rb'
spec.ruby_opts = '-w'
end
desc "Run all examples with SimpleCov"
RSpec::Core::RakeTask.new(:spec_with_simplecov) do |spec|
ENV['COVERAGE'] = 'true'
spec.pattern = 'spec/**/*.rb'
end
RDoc::Task.new do |rd|
rd.main = "README.rdoc"
rd.rdoc_files.include("README.rdoc", "LICENSE", "lib/**/*.rb")
rd.title = "%s (%s) Documentation" % [ full_name, spec.version ]
rd.rdoc_dir = 'doc'
end
Gem::PackageTask.new(spec) do |pkg|
pkg.need_tar = true
end
desc 'Clean up all the extras'
task :clean => [ :clobber_rdoc, :clobber_package ] do
%w[*.gem ri coverage*].each do |pattern|
files = Dir[pattern]
rm_rf files unless files.empty?
end
end
namespace :forge do
desc 'Publish RDoc to RubyForge'
task :publish_docs => [:clean, :rdoc] do
config = YAML.load(File.read(File.expand_path("~/.rubyforge/user-config.yml")))
host = "#{config["username"]}@rubyforge.org"
remote_dir = "/var/www/gforge-projects/#{spec.rubyforge_project}"
local_dir = 'doc'
sh %{rsync -av --delete #{local_dir}/ #{host}:#{remote_dir}}
end
desc 'Package and upload the release to rubyforge.'
task :release => [:clean, :package] do |t|
v = ENV["VERSION"] or abort "Must supply VERSION=x.y.z"
abort "Versions don't match '#{v}' vs '#{spec.version}'" if v != spec.version.to_s
pkg = "pkg/#{spec.name}-#{spec.version}"
if $DEBUG then
puts "release_id = rf.add_release #{spec.rubyforge_project.inspect}, #{spec.name.inspect}, #{version.inspect}, \"#{pkg}.tgz\""
puts "rf.add_file #{spec.rubyforge_project.inspect}, #{spec.name.inspect}, release_id, \"#{pkg}.gem\""
end
rf = RubyForge.new
puts "Logging in"
rf.login
changes = open("NOTES.md").readlines.join("") if File.exists?("NOTES.md")
c = rf.userconfig
c["release_notes"] = spec.description if spec.description
c["release_changes"] = changes if changes
c["preformatted"] = true
files = ["#{pkg}.tgz", "#{pkg}.gem"].compact
puts "Releasing #{spec.name} v. #{spec.version}"
rf.add_release spec.rubyforge_project, spec.name, spec.version.to_s, *files
end
end
desc 'Install the package as a gem'
task :install_gem => [:clean, :package] do
sh "sudo gem install pkg/*.gem"
end