Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Generate RDoc documentation. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk | version-1.3.7 |
| Files: | files | file ages | folders |
| SHA1: |
2720babe78aad430306a7c2e032f9556 |
| User & Date: | wbp 2016-02-18 18:18:18.000 |
Context
|
2016-02-21
| ||
| 03:32 | Add tests for readBoolEntry, readRealEntry, writeBoolEntry, and writeRealEntry. check-in: 8538d16488 user: wbp tags: trunk, version-1.3.8 | |
|
2016-02-18
| ||
| 18:18 | Generate RDoc documentation. check-in: 2720babe78 user: wbp tags: trunk, version-1.3.7 | |
|
2016-02-16
| ||
| 21:36 | Eliminate dependencies on cat(1) and pax(1) in Rakefile. check-in: bb9e92df24 user: wbp tags: trunk, version-1.3.6 | |
Changes
Changes to Rakefile.
1 | # Rakefile for xregistry gem. | | | 1 2 3 4 5 6 7 8 9 |
# Rakefile for xregistry gem.
# Last modified: 18-Feb-2016 Wm. Parsons
require 'rake/testtask'
require 'zlib'
name = 'xregistry'
version = IO.read('VERSION').chomp
package = "#{name}-#{version}"
|
| ︙ | ︙ | |||
71 72 73 74 75 76 77 |
end
end
end
end
desc "Install #{name} gem"
task :install do
| | | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
end
end
end
end
desc "Install #{name} gem"
task :install do
system "gem install --user-install #{package}.gem --document rdoc,ri"
end
desc "Uninstall #{name} gem"
task :uninstall do
system "gem uninstall #{name} -v #{version}"
end
Rake::TestTask.new :test
|
Changes to VERSION.
|
| | | 1 | 1.3.7 |