diff options
author | Ralph Amissah <ralph@amissah.com> | 2015-04-21 09:44:25 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2015-05-01 18:49:41 -0400 |
commit | 2ade55a30cd73ccc60fd9d3e3b2a12eae5f21629 (patch) | |
tree | 3bfcdf15fc88e7e2c99f0fd60a97588d61d67f6f /setup/qi_libs.rb | |
parent | c<-d: sync, roll develop into current dir branch (5==6) (diff) |
d: v6 made default branch (prior to v7 dir restructuring)
* v5 invocation available as legacy, but is the same as v6
* qi_libs, gem metadata, minor
* sisu_packaging.org: ruby require list; update sisu description
* bin/ chmod 755
Diffstat (limited to 'setup/qi_libs.rb')
-rw-r--r-- | setup/qi_libs.rb | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/setup/qi_libs.rb b/setup/qi_libs.rb index cad5e68a..938724a0 100644 --- a/setup/qi_libs.rb +++ b/setup/qi_libs.rb @@ -5,9 +5,15 @@ module Project_details def self.name 'SiSU' end + def self.summary + 'documents - structuring, publishing in multiple formats and search' + end def self.description 'documents - structuring, publishing in multiple formats and search' end + def self.homepage + 'http://www.sisudoc.org' + end def self.thor "ruby-thor files for the installation/setup of #{name}" end @@ -554,18 +560,20 @@ summary: #{vi[:project]} Gem::Specification.new do |s| s.name = '#{vi[:project].downcase}' s.version = '#{vi[:version_number]}' - s.date = '#{vi[:date]}' - s.summary = '#{Version_info.version_number_info(vi)}' - s.description = '#{Project_details.description}' s.authors = ["Ralph Amissah"] s.email = 'ralph.amissah@gmail.com' + s.date = '#{vi[:date]}' + s.summary = '#{Project_details.summary} #{Version_info.version_number_info(vi)}' + s.description = '#{Project_details.description} #{Version_info.version_number_info(vi)} (without external dependencies)' + s.homepage = '#{Project_details.homepage}' + s.license = 'GPL3' s.files = Dir['lib/#{Project_details.name.downcase}/#{branch}/*.rb'] + Dir['data/#{Project_details.name.downcase}/version/#{branch}.yml'] + Dir['data/#{Project_details.name.downcase}/image/*'] + Dir['bin/#{Project_details.name.downcase}gem'] + Dir['bin/#{Project_details.name.downcase}'] - s.license = 'GPL3' s.executables << '#{Project_details.name.downcase}gem' << '#{Project_details.name.downcase}' + s.has_rdoc = false end WOK end |