Hello community,

here is the log from the commit of package rubygem-hoe for openSUSE:Factory 
checked in at 2016-04-12 19:35:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-hoe (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-hoe.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-hoe"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-hoe/rubygem-hoe.changes  2015-09-27 
08:39:00.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-hoe.new/rubygem-hoe.changes     
2016-04-12 19:35:39.000000000 +0200
@@ -1,0 +2,17 @@
+Wed Apr  6 06:23:19 UTC 2016 - [email protected]
+
+- updated to version 3.15.0
+ see installed History.rdoc
+
+  === 3.15.0 / 2016-03-25
+  
+  * 1 minor enhancement:
+  
+    * Added ruby version declarations for hoe-spec. ruby20!
+  
+  * 2 bug fixes:
+  
+    * Fixed running rdoc if it was satisfied outside of GEM_HOME.
+    * Relaxed requirement on rake to include new rake 11.x. (hsbt)
+
+-------------------------------------------------------------------

Old:
----
  hoe-3.14.2.gem

New:
----
  hoe-3.15.0.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-hoe.spec ++++++
--- /var/tmp/diff_new_pack.CbBKYM/_old  2016-04-12 19:35:40.000000000 +0200
+++ /var/tmp/diff_new_pack.CbBKYM/_new  2016-04-12 19:35:40.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-hoe
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-hoe
-Version:        3.14.2
+Version:        3.15.0
 Release:        0
 %define mod_name hoe
 %define mod_full_name %{mod_name}-%{version}

++++++ hoe-3.14.2.gem -> hoe-3.15.0.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/History.rdoc new/History.rdoc
--- old/History.rdoc    2015-09-15 00:23:13.000000000 +0200
+++ new/History.rdoc    2016-03-26 00:33:16.000000000 +0100
@@ -1,3 +1,14 @@
+=== 3.15.0 / 2016-03-25
+
+* 1 minor enhancement:
+
+  * Added ruby version declarations for hoe-spec. ruby20!
+
+* 2 bug fixes:
+
+  * Fixed running rdoc if it was satisfied outside of GEM_HOME.
+  * Relaxed requirement on rake to include new rake 11.x. (hsbt)
+
 === 3.14.2 / 2015-09-14
 
 * 1 minor enhancement:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Rakefile new/Rakefile
--- old/Rakefile        2015-09-15 00:23:13.000000000 +0200
+++ new/Rakefile        2016-03-26 00:33:16.000000000 +0100
@@ -21,7 +21,7 @@
   pluggable!
   require_rubygems_version ">= 1.4"
 
-  dependency "rake", [">= 0.8", "< 11.0"] # FIX: to force it to exist 
pre-isolate
+  dependency "rake", [">= 0.8", "< 12.0"] # FIX: to force it to exist 
pre-isolate
 end
 
 task :plugins do
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
Files old/checksums.yaml.gz.sig and new/checksums.yaml.gz.sig differ
Files old/data.tar.gz.sig and new/data.tar.gz.sig differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/hoe/publish.rb new/lib/hoe/publish.rb
--- old/lib/hoe/publish.rb      2015-09-15 00:23:13.000000000 +0200
+++ new/lib/hoe/publish.rb      2016-03-26 00:33:16.000000000 +0100
@@ -206,6 +206,11 @@
     title = "#{group_name}'s #{title}" if group_name != name
     rdoc  = Gem.bin_wrapper "rdoc"
 
+    unless File.exist? rdoc then
+      warn "Can't find #{rdoc}. Falling back."
+      rdoc = "rdoc"
+    end
+
     %W[#{rdoc}
        --title #{title}
        -o #{local_rdoc_dir}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/hoe.rb new/lib/hoe.rb
--- old/lib/hoe.rb      2015-09-15 00:23:13.000000000 +0200
+++ new/lib/hoe.rb      2016-03-26 00:33:16.000000000 +0100
@@ -91,7 +91,7 @@
   include Rake::DSL if defined?(Rake::DSL)
 
   # duh
-  VERSION = "3.14.2"
+  VERSION = "3.15.0"
 
   @@plugins = [:clean, :debug, :deps, :flay, :flog, :newb, :package,
                :publish, :gemcutter, :signing, :test]
@@ -833,6 +833,48 @@
   end
 
   ##
+  # Declare that this gem requires ruby to be in the 1.8+ family.
+
+  def ruby18!
+    require_ruby_version "~> 1.8"
+  end
+
+  ##
+  # Declare that this gem requires ruby to be in the 1.9 family.
+
+  def ruby19!
+    require_ruby_version "~> 1.9"
+  end
+
+  ##
+  # Declare that this gem requires ruby to be in the 2.0+ family.
+
+  def ruby20!
+    require_ruby_version "~> 2.0"
+  end
+
+  ##
+  # Declare that this gem requires ruby to be in the 2.1+ family.
+
+  def ruby21!
+    require_ruby_version "~> 2.1"
+  end
+
+  ##
+  # Declare that this gem requires ruby to be in the 2.2+ family.
+
+  def ruby22!
+    require_ruby_version "~> 2.2"
+  end
+
+  ##
+  # Declare that this gem requires ruby to be in the 2.3+ family.
+
+  def ruby23!
+    require_ruby_version "~> 2.3"
+  end
+
+  ##
   # Provide a linear degrading value from n to m over start to finis
   # dates. If not provided, start and finis will default to 1/1 and
   # 12/31 of the current year.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2015-09-15 00:23:13.000000000 +0200
+++ new/metadata        2016-03-26 00:33:16.000000000 +0100
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: hoe
 version: !ruby/object:Gem::Version
-  version: 3.14.2
+  version: 3.15.0
 platform: ruby
 authors:
 - Ryan Davis
@@ -10,9 +10,9 @@
 cert_chain:
 - |
   -----BEGIN CERTIFICATE-----
-  MIIDPjCCAiagAwIBAgIBAjANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu
+  MIIDPjCCAiagAwIBAgIBAzANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu
   ZC1ydWJ5MRkwFwYKCZImiZPyLGQBGRYJemVuc3BpZGVyMRMwEQYKCZImiZPyLGQB
-  GRYDY29tMB4XDTE0MDkxNzIzMDcwN1oXDTE1MDkxNzIzMDcwN1owRTETMBEGA1UE
+  GRYDY29tMB4XDTE1MDkxOTIwNTEyMloXDTE2MDkxODIwNTEyMlowRTETMBEGA1UE
   AwwKcnlhbmQtcnVieTEZMBcGCgmSJomT8ixkARkWCXplbnNwaWRlcjETMBEGCgmS
   JomT8ixkARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALda
   b9DCgK+627gPJkB6XfjZ1itoOQvpqH1EXScSaba9/S2VF22VYQbXU1xQXL/WzCkx
@@ -22,14 +22,14 @@
   qhtV7HJxNKuPj/JFH0D2cswvzznE/a5FOYO68g+YCuFi5L8wZuuM8zzdwjrWHqSV
   gBEfoTEGr7Zii72cx+sCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
   HQYDVR0OBBYEFEfFe9md/r/tj/Wmwpy+MI8d9k/hMA0GCSqGSIb3DQEBBQUAA4IB
-  AQAFoDJRokCQdxFfOrmsKX41KOFlU/zjrbDVM9hgB/Ur999M6OXGSi8FitXNtMwY
-  FVjsiAPeU7HaWVVcZkj6IhINelTkXsxgGz/qCzjHy3iUMuZWw36cS0fiWJ5rvH+e
-  hD7uXxJSFuyf1riDGI1aeWbQ74WMwvNstOxLUMiV5a1fzBhlxPqb537ubDjq/M/h
-  zPUFPVYeL5KjDHLCqI2FwIk2sEMOQgjpXHzl+3NlD2LUgUhHDMevmgVua0e2GT1B
-  xJcC6UN6NHMOVMyAXsr2HR0gRRx4ofN1LoP2KhXzSr8UMvQYlwPmE0N5GQv1b5AO
-  VpzF30vNaJK6ZT7xlIsIlwmH
+  AQB+Hx8xUgrpZa4P8H8gR8zme5kISwQrG80MbpqJV6/G3/ZicRFhN5sjwu0uHGue
+  bd9Cymf6oIRwHVarJux2M32T6bL07Hmi07w2QaPc3MnMKB/D46SRZ2JSSGPFRBTc
+  SilobMRoGs/7B15uGFUEnNrCB/ltMqhwwSx1r++UQPfeySHEV9uqu03E5Vb7J37O
+  2Er6PLXHRiYsIycD1LkMi6YnixdITRHmrqJYE2rsjaIfpIehiusVAPHkNf7qbpHq
+  qx3h45R1CAsObX0SQDIT+rRbQrtKz1GHIZTOFYvEJjUY1XmRTZupD3CJ8Q7sDqSy
+  NLq5jm1fq6Y9Uolu3RJbmycf
   -----END CERTIFICATE-----
-date: 2015-09-14 00:00:00.000000000 Z
+date: 2016-03-25 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: rake
@@ -40,7 +40,7 @@
         version: '0.8'
     - - <
       - !ruby/object:Gem::Version
-        version: '11.0'
+        version: '12.0'
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
@@ -50,7 +50,7 @@
         version: '0.8'
     - - <
       - !ruby/object:Gem::Version
-        version: '11.0'
+        version: '12.0'
 - !ruby/object:Gem::Dependency
   name: minitest
   requirement: !ruby/object:Gem::Requirement
Files old/metadata.gz.sig and new/metadata.gz.sig differ


Reply via email to