middleman-presentation 0.15.5 → 0.15.6

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: 6a90f6181cb4b1112f7a950037d1338ebdd0cb8d
4
- data.tar.gz: 70b187a6de5e8d529c57b9dd2082df313f38b210
3
+ metadata.gz: fbe3e0ab8f49e4f2c64520d6f0726c9ff11737a7
4
+ data.tar.gz: 2804f20ff4cdd7ccb99e48a2e44c27a776288dcf
5
5
  SHA512:
6
- metadata.gz: 6c0672a73c1bb76d46088caa8506a8198adda938aaf9fd91c320934507beee75864e2b846b53afd0044b117aa8ffe6298655a54601518cb64661c569d26e4c48
7
- data.tar.gz: bde1528e0607f6c1b69bc4877ffbf7b974274fe033b4cf60af092bd0b9ea5fe9d9e59eeb1fc46f78ff70c87e6696b09ad3f0b722205ef787560bad6683f40256
6
+ metadata.gz: 2ba9d7811db8702126371dd5e0458c5ae752179e2aab57ab9270010a1cf3b34b8b7c98f373cdc99fc0913db8d04ead686a658d749cd63006c90ae71cded08b41
7
+ data.tar.gz: a2dd3ea9ce2c54c3cfacb17d27c348fb7d5259aaf428574b46153b004fb2b14d805001e008213f39a29c132f8e5a967cb21b4fc046dbec3243f4c7138bd5f2df
data/Gemfile.lock CHANGED
@@ -11,7 +11,7 @@ GIT
11
11
  PATH
12
12
  remote: .
13
13
  specs:
14
- middleman-presentation (0.15.4)
14
+ middleman-presentation (0.15.5)
15
15
  addressable (~> 2.3.5)
16
16
  bundler
17
17
  erubis
data/README.md CHANGED
@@ -486,7 +486,10 @@ There are four different templates available:
486
486
 
487
487
  Addiontionlly users can define one `custom`-slide-template. It's file extension
488
488
  is used for the resulting slide. Given a template `custom.erb.tt` it becomes
489
- `01.html.erb` when running `middleman slide 01`.
489
+ `01.html.erb` when running `middleman slide 01`.
490
+
491
+ You may need to add the
492
+ template parser-gem to your `Gemfile` and require it in your `config.rb`.
490
493
 
491
494
  **Example**
492
495
 
@@ -510,8 +513,9 @@ system.
510
513
  *templates/custom.haml.tt*:
511
514
 
512
515
  ```
513
- %h1 <%%= site_title %>
514
- %h2 <%%= title %>
516
+ %section
517
+ %h1 Site Title
518
+ %h2 <%%= title %>
515
519
  ```
516
520
 
517
521
  After writing the file to the filesystem you can use it with the
@@ -522,6 +526,9 @@ After writing the file to the filesystem you can use it with the
522
526
  bundle exec middleman slide 01
523
527
  ```
524
528
 
529
+ If you have more than one "custom"-template the first is one used. The order is
530
+ based on file name.
531
+
525
532
  ### Predefined slide templates
526
533
 
527
534
  There are four predefined slide templates available:
@@ -252,7 +252,7 @@ module Middleman
252
252
  end
253
253
 
254
254
  def create_helper_scripts
255
- %w(start bootstrap slide presentation build).each do |s|
255
+ %w(start bootstrap slide presentation build export).each do |s|
256
256
  copy_file File.join('script', s), File.join(root_directory, 'script', s)
257
257
  chmod File.join(root_directory, 'script', s), 0755
258
258
  end
@@ -3,6 +3,6 @@
3
3
  module Middleman
4
4
  # Presentation
5
5
  module Presentation
6
- VERSION = '0.15.5'
6
+ VERSION = '0.15.6'
7
7
  end
8
8
  end
@@ -232,7 +232,6 @@ footer#mp-site-footer {
232
232
  left: 0px;
233
233
  width: 100%;
234
234
  text-align: center;
235
- z-index: 99;
236
235
  }
237
236
 
238
237
  #mp-copyright-notice {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-presentation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.5
4
+ version: 0.15.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max Meyer