Hello community,

here is the log from the commit of package rubygem-temple for openSUSE:Factory 
checked in at 2020-03-07 21:40:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-temple (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-temple.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-temple"

Sat Mar  7 21:40:21 2020 rev:3 rq:773857 version:0.8.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-temple/rubygem-temple.changes    
2019-03-27 16:17:32.651578018 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-temple.new.26092/rubygem-temple.changes 
2020-03-07 21:40:24.200359851 +0100
@@ -1,0 +2,11 @@
+Mon Feb 10 15:54:46 UTC 2020 - Stephan Kulow <co...@suse.com>
+
+- updated to version 0.8.2
+ see installed CHANGES
+
+  0.8.2
+  
+    * Support TruffleRuby in Temple::Filters::StaticAnalyzer (#127)
+    * Support TruffleRuby in Temple::Filters::StringSplitter (#127)
+
+-------------------------------------------------------------------

Old:
----
  temple-0.8.1.gem

New:
----
  temple-0.8.2.gem

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

Other differences:
------------------
++++++ rubygem-temple.spec ++++++
--- /var/tmp/diff_new_pack.hbXV1J/_old  2020-03-07 21:40:24.684360179 +0100
+++ /var/tmp/diff_new_pack.hbXV1J/_new  2020-03-07 21:40:24.688360181 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-temple
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # 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-temple
-Version:        0.8.1
+Version:        0.8.2
 Release:        0
 %define mod_name temple
 %define mod_full_name %{mod_name}-%{version}
@@ -32,7 +32,7 @@
 BuildRequires:  %{ruby >= 1.9.2}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  ruby-macros >= 5
-Url:            https://github.com/judofyr/temple
+URL:            https://github.com/judofyr/temple
 Source:         https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:        gem2rpm.yml
 Summary:        Template compilation framework in Ruby

++++++ temple-0.8.1.gem -> temple-0.8.2.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGES new/CHANGES
--- old/CHANGES 2019-03-03 14:42:20.000000000 +0100
+++ new/CHANGES 2019-09-12 22:47:18.000000000 +0200
@@ -1,3 +1,8 @@
+0.8.2
+
+  * Support TruffleRuby in Temple::Filters::StaticAnalyzer (#127)
+  * Support TruffleRuby in Temple::Filters::StringSplitter (#127)
+
 0.8.1
 
   * Stop relying on deprecated method in Rails (#121)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md       2019-03-03 14:42:20.000000000 +0100
+++ new/README.md       2019-09-12 22:47:18.000000000 +0200
@@ -1,7 +1,7 @@
 Temple
 ======
 
-[![Build 
Status](https://secure.travis-ci.org/judofyr/temple.svg?branch=master)](http://travis-ci.org/judofyr/temple)
 [![Dependency 
Status](https://gemnasium.com/judofyr/temple.svg?travis)](https://gemnasium.com/judofyr/temple)
 [![Code 
Climate](https://codeclimate.com/github/judofyr/temple.svg)](https://codeclimate.com/github/judofyr/temple)
 [![Gem 
Version](https://badge.fury.io/rb/temple.svg)](https://rubygems.org/gems/temple)
+[![Build 
Status](https://secure.travis-ci.org/judofyr/temple.svg?branch=master)](http://travis-ci.org/judofyr/temple)
 [![Code 
Climate](https://codeclimate.com/github/judofyr/temple.svg)](https://codeclimate.com/github/judofyr/temple)
 [![Gem 
Version](https://badge.fury.io/rb/temple.svg)](https://rubygems.org/gems/temple)
 
 Temple is an abstraction and a framework for compiling templates to pure Ruby.
 It's all about making it easier to experiment, implement and optimize template
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/temple/filters/string_splitter.rb 
new/lib/temple/filters/string_splitter.rb
--- old/lib/temple/filters/string_splitter.rb   2019-03-03 14:42:20.000000000 
+0100
+++ new/lib/temple/filters/string_splitter.rb   2019-09-12 22:47:18.000000000 
+0200
@@ -7,7 +7,7 @@
   module Filters
     # Compile [:dynamic, "foo#{bar}"] to [:multi, [:static, 'foo'], [:dynamic, 
'bar']]
     class StringSplitter < Filter
-      if defined?(Ripper) && RUBY_VERSION >= "2.0.0"
+      if defined?(Ripper) && RUBY_VERSION >= "2.0.0" && 
Ripper.respond_to?(:lex)
         class << self
           # `code` param must be valid string literal
           def compile(code)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/temple/static_analyzer.rb 
new/lib/temple/static_analyzer.rb
--- old/lib/temple/static_analyzer.rb   2019-03-03 14:42:20.000000000 +0100
+++ new/lib/temple/static_analyzer.rb   2019-09-12 22:47:18.000000000 +0200
@@ -30,7 +30,7 @@
 
     class << self
       def available?
-        defined?(Ripper)
+        defined?(Ripper) && Ripper.respond_to?(:lex)
       end
 
       def static?(code)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/temple/version.rb new/lib/temple/version.rb
--- old/lib/temple/version.rb   2019-03-03 14:42:20.000000000 +0100
+++ new/lib/temple/version.rb   2019-09-12 22:47:18.000000000 +0200
@@ -1,3 +1,3 @@
 module Temple
-  VERSION = '0.8.1'
+  VERSION = '0.8.2'
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2019-03-03 14:42:20.000000000 +0100
+++ new/metadata        2019-09-12 22:47:18.000000000 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: temple
 version: !ruby/object:Gem::Version
-  version: 0.8.1
+  version: 0.8.2
 platform: ruby
 authors:
 - Magnus Holm
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2019-03-03 00:00:00.000000000 Z
+date: 2019-09-12 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: tilt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/test/test_static_analyzer.rb 
new/test/test_static_analyzer.rb
--- old/test/test_static_analyzer.rb    2019-03-03 14:42:20.000000000 +0100
+++ new/test/test_static_analyzer.rb    2019-09-12 22:47:18.000000000 +0200
@@ -3,7 +3,7 @@
 describe Temple::StaticAnalyzer do
   describe '.available?' do
     it 'should return true if its dependency is available' do
-      Temple::StaticAnalyzer.available?.should.equal(defined?(Ripper))
+      Temple::StaticAnalyzer.available?.should.equal(defined?(Ripper) && 
Ripper.respond_to?(:lex))
     end
   end
 


Reply via email to