slideshow-models 3.2.0 → 3.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b621853de6619c00eb51f0ec88ad1ae89c9ddecb
4
- data.tar.gz: b552e40f59f0524fde019ee3c85e8f1d5835aa38
3
+ metadata.gz: db8a6417de23cd181d66d232f0693c338e64ea26
4
+ data.tar.gz: 4221e96f1790f20f6d0883db70837ef60d664e5e
5
5
  SHA512:
6
- metadata.gz: 15234f03210c70adae3370017077e80fab96cba607b9476f0e5b100c73bcfda81a8a26d4046195525f31e9a96d8f4f63d31ed47a4ae0ebbe4eb3591a92f5eb0a
7
- data.tar.gz: 90d8e8ab65594cf2b340ca9656aec522c695ce2d445c268bc09acf18019e939859d60b2135f8b0a9bd685d465f8b311c46829595f1451f3892ea7a316aed2a51
6
+ metadata.gz: c4364800946513628a0e521b1c7fe5c9366719c8adc07f1987aeb7e02409f94235780baa786cb349b6bc8c3046815592d99f08358dffa53f7dea4cb452c3f738
7
+ data.tar.gz: 76a22b17c1db80d05721263ad135daa90ec6864dae089018dab8f9339903419581901edc62f8c0a30aa27c598d3dcdb9b865709fd5338bcc24c6b751e8dfe53f
data/Rakefile CHANGED
@@ -18,7 +18,7 @@ Hoe.spec 'slideshow-models' do
18
18
  ['logutils', '>= 0.6.1'],
19
19
  ['kramdown', '>= 1.10.0'],
20
20
  ['textutils', '>= 0.10.0'],
21
- ['pakman', '>= 0.6.0'],
21
+ ['pakman', '>= 0.7.0'],
22
22
  ['activesupport'],
23
23
  ]
24
24
 
@@ -8,11 +8,11 @@
8
8
 
9
9
 
10
10
  #############
11
- # shortcuts for fetching template packs (w/ optional quick starter samples)
11
+ # shortcuts for fetching template packs (w/ optional quick starter samples)
12
12
  # maps shortcut to URI
13
13
 
14
14
 
15
- s6blank: https://raw.github.com/slideshow-templates/slideshow-s6-blank/gh-pages/s6blank.txt
15
+ s6blank: https://raw.github.com/slideshow-templates/slideshow-s6-blank/master/s6blank.txt
16
16
 
17
17
  s6syntax: https://raw.github.com/slideshow-templates/slideshow-s6-syntax-highlighter/master/s6syntax.txt
18
18
 
@@ -31,21 +31,23 @@ csss:
31
31
  - https://raw.github.com/slideshow-templates/slideshow-csss/master/csss.txt.quick
32
32
 
33
33
  deck.js:
34
- - https://raw.github.com/slideshow-templates/slideshow-deck.js/gh-pages/deck.js.txt
35
- - https://raw.github.com/slideshow-templates/slideshow-deck.js/gh-pages/deck.js.txt.quick
34
+ - https://raw.github.com/slideshow-templates/slideshow-deck.js/master/deck.js.txt
35
+ - https://raw.github.com/slideshow-templates/slideshow-deck.js/master/deck.js.txt.quick
36
36
 
37
37
  impress.js:
38
- - https://raw.github.com/slideshow-templates/slideshow-impress.js/gh-pages/impress.js.txt
39
- - https://raw.github.com/slideshow-templates/slideshow-impress.js/gh-pages/impress.js.txt.quick
38
+ - https://raw.github.com/slideshow-templates/slideshow-impress.js/master/impress.js.txt
39
+ - https://raw.github.com/slideshow-templates/slideshow-impress.js/master/impress.js.txt.quick
40
40
 
41
41
  shower: https://raw.github.com/slideshow-templates/slideshow-shower/master/shower.txt
42
42
 
43
43
 
44
+ reveal.js: https://raw.github.com/slideshow-templates/slideshow-reveal.js/master/reveal.js.txt
44
45
 
45
- reveal.js: https://raw.github.com/avillafiorita/slideshow-reveal.js/master/reveal.txt
46
-
46
+ ## "old" reveal.js by avillafiorita - no longer updated (not using new liquid templates)
47
+ ## reveal.js: https://raw.github.com/avillafiorita/slideshow-reveal.js/master/reveal.txt
48
+ ##
47
49
  # alias - rename manifest to reveal.js.txt -- possible?
48
- reveal: https://raw.github.com/avillafiorita/slideshow-reveal.js/master/reveal.txt
50
+ ## reveal: https://raw.github.com/avillafiorita/slideshow-reveal.js/master/reveal.txt
49
51
 
50
52
 
51
53
  ##############
@@ -61,9 +63,3 @@ plugins:
61
63
  - https://raw.github.com/slideshow-s9/slideshow-plugins/master/analytics/analytics.txt.plugin
62
64
  - https://raw.github.com/slideshow-s9/slideshow-plugins/master/tables/tables.txt.plugin
63
65
  - https://raw.github.com/slideshow-s9/slideshow-plugins/master/snippets/snippets.txt.plugin
64
-
65
-
66
- #############################
67
- # Quick Starter Stamples
68
-
69
- formatting: https://raw.github.com/slideshow-s9/formatting/master/formatting.txt.quick
@@ -3,7 +3,7 @@
3
3
  module Slideshow
4
4
 
5
5
  MAJOR = 3
6
- MINOR = 2
6
+ MINOR = 3
7
7
  PATCH = 0
8
8
  VERSION = [MAJOR,MINOR,PATCH].join('.')
9
9
 
@@ -14,7 +14,7 @@ module Slideshow
14
14
  def self.root
15
15
  "#{File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )}"
16
16
  end
17
-
17
+
18
18
  # version string for generator meta tag (includes ruby version)
19
19
  def self.generator
20
20
  "Slide Show (S9) v#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
@@ -25,4 +25,3 @@ module Slideshow
25
25
  end
26
26
 
27
27
  end # module Slideshow
28
-
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.2.0
4
+ version: 3.3.0
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-05-09 00:00:00.000000000 Z
11
+ date: 2016-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: props
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: 0.6.0
75
+ version: 0.7.0
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: 0.6.0
82
+ version: 0.7.0
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: activesupport
85
85
  requirement: !ruby/object:Gem::Requirement