rabbit-theme-starqle 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 9fe7bca2c49b311b13e25b0fea5373524807406a
4
+ data.tar.gz: 7b21cce3fb6d3fb5cd1257f99de2f9eae3f9aec0
5
+ SHA512:
6
+ metadata.gz: 5e076975019be6b5526e82d26d65f8853637eb6f083d79c748e2b76c76b538931cd4ad5a77238311bd60847eeb598b49d7c5a8bcc3810eb153cc1cbe54da953e
7
+ data.tar.gz: 800e5eece824d6624dd375e700569010912907eaf3d1377f74035dae37517cc3b15648f808ef2fe0520671d4b6d7cfb411353dc26dcac0eb2abc881556b9cbce
@@ -0,0 +1,46 @@
1
+ # Starqle theme
2
+
3
+ The Rabbit theme for Starqle family.
4
+
5
+ ## License
6
+
7
+ ### Slide
8
+
9
+ MIT
10
+
11
+ Use the followings for notation of the author:
12
+
13
+ * Giovanni Sakti
14
+
15
+ ## For author
16
+
17
+ ### Show
18
+
19
+ rake
20
+
21
+ ### Publish
22
+
23
+ rake publish
24
+
25
+ ## For users
26
+
27
+ ### Install
28
+
29
+ gem install rabbit-theme-starqle
30
+
31
+ ### Show
32
+
33
+ rabbit -t rabbit-theme-starqle rabbit-slide.gem
34
+
35
+ ## Customize
36
+
37
+ ### Run as slide show mode
38
+
39
+ You can show your slide for exhibit by using slide show mode. On slide
40
+ show mode, your slide is moved to the next page automatically. When
41
+ your slide goes to the last page, your slide goes to the first page.
42
+
43
+ Set "RABBIT_SLIDE_SHOW" environment variable to use slide show mode
44
+ like the following:
45
+
46
+ % RABBIT_SLIDE_SHOW=yes rake
@@ -0,0 +1,13 @@
1
+ require "rabbit/task/theme"
2
+
3
+ spec = nil
4
+ Rabbit::Task::Theme.new do |task|
5
+ task.required_rabbit_version = ">= 2.2.0"
6
+ spec = task.spec
7
+ end
8
+
9
+ desc "Tag the current version"
10
+ task :tag do
11
+ sh("git", "tag", "-a", "-m", "Publish #{spec.version}", spec.version.to_s)
12
+ sh("git", "push", "--tags")
13
+ end
@@ -0,0 +1,12 @@
1
+ ---
2
+ id: starqle
3
+ tags:
4
+ - starqle
5
+ version: 1.0.0
6
+ licenses:
7
+ - MIT
8
+ author:
9
+ markup_language: :rd
10
+ name: Starqle
11
+ email: info@starqle.com
12
+ rubygems_user: giosakti
@@ -0,0 +1,24 @@
1
+ @margin_left = screen_x(1)
2
+ @margin_right = screen_x(1)
3
+
4
+ # @title_slide_title_font_size = @large_font_size
5
+ # @title_slide_subtitle_font_size = @small_font_size
6
+
7
+ match(Slide, HeadLine) do |headlines|
8
+ headlines.horizontal_centering = true
9
+
10
+ # This code below already available as default theme
11
+ # I put it here to show on how to style specific slide
12
+ # headlines.each do |headline|
13
+ # slide = headline.slide
14
+ # headline.hide if slide["hide-title"] == true
15
+ # end
16
+ end
17
+
18
+ match(Slide, Body) do |bodies|
19
+ bodies.vertical_centering = true
20
+ end
21
+
22
+ include_theme("default")
23
+ # include_theme("rabbit-theme-nyankosakana")
24
+ # include_theme("rabbit-theme-yart")
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rabbit-theme-starqle
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Starqle
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-10-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rabbit
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 2.2.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 2.2.0
27
+ description: The Rabbit theme for Starqle family.
28
+ email:
29
+ - info@starqle.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - README.md
35
+ - Rakefile
36
+ - config.yaml
37
+ - pdf/theme-benchmark-en.pdf
38
+ - pdf/theme-benchmark-ja.pdf
39
+ - theme.rb
40
+ homepage: http://theme.rabbit-shocker.org/themes/starqle/
41
+ licenses:
42
+ - MIT
43
+ metadata: {}
44
+ post_install_message:
45
+ rdoc_options: []
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ requirements: []
59
+ rubyforge_project:
60
+ rubygems_version: 2.6.13
61
+ signing_key:
62
+ specification_version: 4
63
+ summary: Starqle theme
64
+ test_files: []