slideshow-models 3.0.0 → 3.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9bff401667556357fa77a5b0053d5f8d33a61f8b
4
- data.tar.gz: d07a675f210ddc960b4c41d1f772f5a986d3c404
3
+ metadata.gz: ae6fbc86bac566ecfa4b2906afc0c11d243e061d
4
+ data.tar.gz: eee81eb2a0456e3e284e0100007b06e1d25aef94
5
5
  SHA512:
6
- metadata.gz: 4a941abe7d2db3333e82d49e9b8f7b4712a5f3926c2a6049ed186e06614a155366fc8e86d3aa1333cbf50e0c7d83633c8cf306186d9873e516b8ec10a1dc6d01
7
- data.tar.gz: 34d10b6271177fa5d7fde0d125ead19ceabdd1aa1006296c8dae5c0ca75ca90b76d299e71ebbb25b2c732c6cced66a58b8a0685a4a5e2d25773fbf4d6d3d8db5
6
+ metadata.gz: ef4318d385ef0a99775c3e9194ab63a2ed0e5fd3752ded64407906d852bfdda5bc91e6464f3457e6086cdb397fe2e3c1dd2f404f000c381854ae7789c0953e1c
7
+ data.tar.gz: 98d0cf267ff810f4b5922038e577db9d378ed5a46c0e086eb841af70cdd4bdeb1957b29191d1606b3c008ff4a10d7c9c3a370bba366ad9b45e08e7aa474eb90a
@@ -128,7 +128,7 @@ class Gen ## todo: rename command to build
128
128
 
129
129
  logger.debug "inname=#{inname}"
130
130
 
131
- content = File.read( inname )
131
+ content = File.read_utf8( inname )
132
132
 
133
133
  # run text filters
134
134
 
@@ -37,7 +37,7 @@ def uv_worker( code, opts )
37
37
  if uv_themes[ theme ].nil?
38
38
  uv_themes[ theme ] = true
39
39
 
40
- theme_content = File.read( "#{config.cache_dir}/css/#{theme}.css" )
40
+ theme_content = File.read_utf8( "#{config.cache_dir}/css/#{theme}.css" )
41
41
 
42
42
  theme_out = %{/* styles for ultraviolet code syntax highlighting theme '#{theme}' */\n\n}
43
43
  theme_out << theme_content
@@ -5,7 +5,7 @@ module Slideshow
5
5
 
6
6
  def s9_include( name, opts = {} )
7
7
  puts " Including '#{name}'..."
8
- content = File.read( name )
8
+ content = File.read_utf8( name )
9
9
  end
10
10
 
11
11
 
@@ -49,7 +49,7 @@ end
49
49
 
50
50
  def find_content_from( name, part )
51
51
  begin
52
- content = File.read( name )
52
+ content = File.read_utf8( name )
53
53
 
54
54
  # note: for now content with no parts selected gets filtered too and (part) marker lines get removed from source
55
55
  lines = find_part_lines_in( content, part )
@@ -4,7 +4,7 @@ module Slideshow
4
4
 
5
5
  MAJOR = 3
6
6
  MINOR = 0
7
- PATCH = 0
7
+ PATCH = 1
8
8
  VERSION = [MAJOR,MINOR,PATCH].join('.')
9
9
 
10
10
  def self.version
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slideshow-models
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gerald Bauer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-02 00:00:00.000000000 Z
11
+ date: 2016-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: props