rails-reveal-js 2.6.1 → 2.6.1.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 +4 -4
- data/README.md +23 -4
- data/lib/rails/reveal/js/version.rb +1 -1
- data/vendor/assets/javascripts/{reveal.min.js → reveal} +0 -0
- data/vendor/assets/stylesheets/{reveal.min.css → reveal} +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/README.md +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/beige.css +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/blood.css +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/default.css +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/moon.css +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/night.css +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/serif.css +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/simple.css +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/sky.css +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/solarized.css +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/source/beige.scss +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/source/blood.scss +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/source/default.scss +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/source/moon.scss +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/source/night.scss +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/source/serif.scss +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/source/simple.scss +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/source/sky.scss +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/source/solarized.scss +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/template/mixins.scss +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/template/settings.scss +0 -0
- data/vendor/assets/stylesheets/{theme → reveal-theme}/template/theme.scss +0 -0
- metadata +26 -26
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7d14a36ca1e70a8fd6d50124b66cae659f88964
|
4
|
+
data.tar.gz: 1cb19bada0faf6b8987fd23200c22c3e7ab19fce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59ab6ddce574229dd5be0546fc9056ab5614a5847e4b47a5ae04364c3de78b6002ee9a5794eebc1cc2af679b607a250b1b4072fc05487bd3fd0567042b573c73
|
7
|
+
data.tar.gz: 6c796df7f1e02de1ce16c12e3c5e224767fef33610c7e857f1a547b42868bf18b516a80f6c3c37fdf524ec7c658168976df128300d17492e4fe15dd05d9aee3f
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
#
|
1
|
+
# rails-reveal-js
|
2
2
|
|
3
|
-
|
3
|
+
Gem to add [reveal.js](https://github.com/hakimel/reveal.js) to the Rails Asset Pipeline.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -18,11 +18,30 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
|
21
|
+
Add the following to your JavaScript manifest file (application.js):
|
22
|
+
|
23
|
+
//= require reveal
|
24
|
+
|
25
|
+
And add the following to your Stylesheet manifest file (application.css):
|
26
|
+
|
27
|
+
*= require reveal
|
28
|
+
|
29
|
+
If you desire to require (optional) reveal.js themes, you may include them as well in your Stylesheet manifest file (application.css). For example:
|
30
|
+
|
31
|
+
*= require reveal-theme/default
|
32
|
+
|
33
|
+
*= require reveal-theme/beige
|
34
|
+
*= require reveal-theme/blood
|
35
|
+
*= require reveal-theme/moon
|
36
|
+
*= require reveal-theme/night
|
37
|
+
*= require reveal-theme/serif
|
38
|
+
*= require reveal-theme/simple
|
39
|
+
*= require reveal-theme/sky
|
40
|
+
*= require reveal-theme/solarized
|
22
41
|
|
23
42
|
## Contributing
|
24
43
|
|
25
|
-
1. Fork it ( http://github.com
|
44
|
+
1. Fork it ( http://github.com/negativetwelve/rails-reveal-js/fork )
|
26
45
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
46
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
47
|
4. Push to the branch (`git push origin my-new-feature`)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails-reveal-js
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.6.1
|
4
|
+
version: 2.6.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Miyashita
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-03-
|
11
|
+
date: 2014-03-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -68,30 +68,30 @@ files:
|
|
68
68
|
- lib/rails/reveal/js.rb
|
69
69
|
- lib/rails/reveal/js/version.rb
|
70
70
|
- rails-reveal-js.gemspec
|
71
|
-
- vendor/assets/javascripts/reveal
|
72
|
-
- vendor/assets/stylesheets/reveal
|
73
|
-
- vendor/assets/stylesheets/theme/README.md
|
74
|
-
- vendor/assets/stylesheets/theme/beige.css
|
75
|
-
- vendor/assets/stylesheets/theme/blood.css
|
76
|
-
- vendor/assets/stylesheets/theme/default.css
|
77
|
-
- vendor/assets/stylesheets/theme/moon.css
|
78
|
-
- vendor/assets/stylesheets/theme/night.css
|
79
|
-
- vendor/assets/stylesheets/theme/serif.css
|
80
|
-
- vendor/assets/stylesheets/theme/simple.css
|
81
|
-
- vendor/assets/stylesheets/theme/sky.css
|
82
|
-
- vendor/assets/stylesheets/theme/solarized.css
|
83
|
-
- vendor/assets/stylesheets/theme/source/beige.scss
|
84
|
-
- vendor/assets/stylesheets/theme/source/blood.scss
|
85
|
-
- vendor/assets/stylesheets/theme/source/default.scss
|
86
|
-
- vendor/assets/stylesheets/theme/source/moon.scss
|
87
|
-
- vendor/assets/stylesheets/theme/source/night.scss
|
88
|
-
- vendor/assets/stylesheets/theme/source/serif.scss
|
89
|
-
- vendor/assets/stylesheets/theme/source/simple.scss
|
90
|
-
- vendor/assets/stylesheets/theme/source/sky.scss
|
91
|
-
- vendor/assets/stylesheets/theme/source/solarized.scss
|
92
|
-
- vendor/assets/stylesheets/theme/template/mixins.scss
|
93
|
-
- vendor/assets/stylesheets/theme/template/settings.scss
|
94
|
-
- vendor/assets/stylesheets/theme/template/theme.scss
|
71
|
+
- vendor/assets/javascripts/reveal
|
72
|
+
- vendor/assets/stylesheets/reveal
|
73
|
+
- vendor/assets/stylesheets/reveal-theme/README.md
|
74
|
+
- vendor/assets/stylesheets/reveal-theme/beige.css
|
75
|
+
- vendor/assets/stylesheets/reveal-theme/blood.css
|
76
|
+
- vendor/assets/stylesheets/reveal-theme/default.css
|
77
|
+
- vendor/assets/stylesheets/reveal-theme/moon.css
|
78
|
+
- vendor/assets/stylesheets/reveal-theme/night.css
|
79
|
+
- vendor/assets/stylesheets/reveal-theme/serif.css
|
80
|
+
- vendor/assets/stylesheets/reveal-theme/simple.css
|
81
|
+
- vendor/assets/stylesheets/reveal-theme/sky.css
|
82
|
+
- vendor/assets/stylesheets/reveal-theme/solarized.css
|
83
|
+
- vendor/assets/stylesheets/reveal-theme/source/beige.scss
|
84
|
+
- vendor/assets/stylesheets/reveal-theme/source/blood.scss
|
85
|
+
- vendor/assets/stylesheets/reveal-theme/source/default.scss
|
86
|
+
- vendor/assets/stylesheets/reveal-theme/source/moon.scss
|
87
|
+
- vendor/assets/stylesheets/reveal-theme/source/night.scss
|
88
|
+
- vendor/assets/stylesheets/reveal-theme/source/serif.scss
|
89
|
+
- vendor/assets/stylesheets/reveal-theme/source/simple.scss
|
90
|
+
- vendor/assets/stylesheets/reveal-theme/source/sky.scss
|
91
|
+
- vendor/assets/stylesheets/reveal-theme/source/solarized.scss
|
92
|
+
- vendor/assets/stylesheets/reveal-theme/template/mixins.scss
|
93
|
+
- vendor/assets/stylesheets/reveal-theme/template/settings.scss
|
94
|
+
- vendor/assets/stylesheets/reveal-theme/template/theme.scss
|
95
95
|
homepage: https://github.com/negativetwelve/rails-reveal-js
|
96
96
|
licenses:
|
97
97
|
- MIT
|