slideit 0.1.1 → 0.1.2
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/LICENSE +22 -0
- data/README.md +2 -7
- data/examples/extra_attributes.md +42 -0
- data/examples/simple.md +39 -0
- data/lib/slideit/container.rb +25 -2
- data/lib/slideit/template.rb +3 -3
- data/lib/slideit/version.rb +1 -1
- metadata +5 -4
- data/CODE_OF_CONDUCT.md +0 -49
- data/TODO.md +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d585adacbbc1fe4ac30ac043180ed1ba1616cbf5
|
4
|
+
data.tar.gz: d09712421db78d79bdb9b04a4aaf06a2912e7e91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c5e9f7e13784aaf5446e40974a86bfef72fe945f2467e851c9a16a98288cd093da103f70b9c28672b00fecb89b42f6017a8c987daf918f9228bb8faf48d8581
|
7
|
+
data.tar.gz: 51e9a67e6882ba80b3bbe1f4825aefff9c5b89efd8408bdd0af55da9756b3ad4243f843941d1e40d1b74b687c5a101ec4c7fc43a75e467ee1d167137fc870c09
|
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2016 Vincent Xie
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -39,14 +39,9 @@ Slide 3
|
|
39
39
|
slideit test.md
|
40
40
|
```
|
41
41
|
|
42
|
-
|
42
|
+
It will open following url in browser.
|
43
43
|
`http://localhost:8000/test.md`
|
44
44
|
|
45
|
-
## Development
|
46
|
-
|
47
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
48
|
-
|
49
45
|
## Contributing
|
50
46
|
|
51
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/xiewenwei/slideit. This project is intended to be a safe, welcoming space for collaboration
|
52
|
-
|
47
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/xiewenwei/slideit. This project is intended to be a safe, welcoming space for collaboration.
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# Slide It
|
2
|
+
|
3
|
+
It is my slides.
|
4
|
+
|
5
|
+
---
|
6
|
+
|
7
|
+
## Demo 1
|
8
|
+
|
9
|
+

|
10
|
+
|
11
|
+
It is great!
|
12
|
+
|
13
|
+
---
|
14
|
+
|
15
|
+
## Demo 2
|
16
|
+
|
17
|
+

|
18
|
+
|
19
|
+
---
|
20
|
+
|
21
|
+
## Demo 3.1
|
22
|
+
|
23
|
+
- Item 1 <!-- .element: class="fragment" data-fragment-index="1" -->
|
24
|
+
- Item 2 <!-- .element: class="fragment" data-fragment-index="2" -->
|
25
|
+
- Item 3 <!-- .element: class="fragment" data-fragment-index="3" -->
|
26
|
+
|
27
|
+
----
|
28
|
+
|
29
|
+
## Demo 3.2
|
30
|
+
|
31
|
+
<!-- .slide: data-background="#afafaf" -->
|
32
|
+
- Item 3.2
|
33
|
+
|
34
|
+
----
|
35
|
+
|
36
|
+
## Demo 3.3
|
37
|
+
|
38
|
+
- Item 3.3
|
39
|
+
|
40
|
+
---
|
41
|
+
|
42
|
+
The End
|
data/examples/simple.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# Slide It
|
2
|
+
|
3
|
+
It is my slides.
|
4
|
+
|
5
|
+
---
|
6
|
+
|
7
|
+
## Demo 1
|
8
|
+
|
9
|
+

|
10
|
+
|
11
|
+
---
|
12
|
+
|
13
|
+
## Demo 2
|
14
|
+
|
15
|
+

|
16
|
+
|
17
|
+
---
|
18
|
+
|
19
|
+
## Demo 3.1
|
20
|
+
|
21
|
+
- Item1
|
22
|
+
- Item2
|
23
|
+
- Item3
|
24
|
+
|
25
|
+
----
|
26
|
+
|
27
|
+
## Demo 3.2
|
28
|
+
|
29
|
+
- Item 3.2
|
30
|
+
|
31
|
+
----
|
32
|
+
|
33
|
+
## Demo 3.3
|
34
|
+
|
35
|
+
- Item 3.3
|
36
|
+
|
37
|
+
---
|
38
|
+
|
39
|
+
The End
|
data/lib/slideit/container.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
require 'socket'
|
2
|
+
|
1
3
|
require "slideit/template"
|
2
4
|
|
3
5
|
module Slideit
|
@@ -29,7 +31,7 @@ module Slideit
|
|
29
31
|
|
30
32
|
def prepare
|
31
33
|
root = File.expand_path "../../../res/reveal.js-3.3.0", __FILE__
|
32
|
-
@port = @options[:port] ? @options[:port].to_i :
|
34
|
+
@port = @options[:port] ? @options[:port].to_i : get_available_port
|
33
35
|
|
34
36
|
@server = WEBrick::HTTPServer.new Port: @port, DocumentRoot: root
|
35
37
|
|
@@ -39,6 +41,27 @@ module Slideit
|
|
39
41
|
mount_assets
|
40
42
|
end
|
41
43
|
|
44
|
+
def get_available_port
|
45
|
+
port = 8000
|
46
|
+
times = 0
|
47
|
+
while is_port_open?(port)
|
48
|
+
times += 1
|
49
|
+
break if times > 5
|
50
|
+
port = 8000 + rand(10240)
|
51
|
+
end
|
52
|
+
port
|
53
|
+
end
|
54
|
+
|
55
|
+
def is_port_open?(port)
|
56
|
+
begin
|
57
|
+
s = TCPSocket.new('127.0.0.1', port)
|
58
|
+
s.close
|
59
|
+
return true
|
60
|
+
rescue Errno::ECONNREFUSED, Errno::EHOSTUNREACH
|
61
|
+
return false
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
42
65
|
def mount_slide
|
43
66
|
file_name = File.basename(@file)
|
44
67
|
@server.mount_proc "/#{file_name}" do |req, res|
|
@@ -69,7 +92,7 @@ module Slideit
|
|
69
92
|
files = Dir["#{md_dir}/**/*"]
|
70
93
|
pairs = {}
|
71
94
|
files.each do |file|
|
72
|
-
if
|
95
|
+
if FileTest.file?(file) && !EXECLUDES.include?(File.extname(file))
|
73
96
|
key = file.sub md_dir, ""
|
74
97
|
pairs[key] = file
|
75
98
|
end
|
data/lib/slideit/template.rb
CHANGED
@@ -41,7 +41,7 @@ module Slideit
|
|
41
41
|
</script>
|
42
42
|
|
43
43
|
<!--[if lt IE 9]>
|
44
|
-
<script src="lib/js/html5shiv.js"></script>
|
44
|
+
<script src="/lib/js/html5shiv.js"></script>
|
45
45
|
<![endif]-->
|
46
46
|
</head>
|
47
47
|
|
@@ -90,7 +90,7 @@ module Slideit
|
|
90
90
|
]
|
91
91
|
});
|
92
92
|
|
93
|
-
{__print-pdf-
|
93
|
+
{__print-pdf-script__}
|
94
94
|
|
95
95
|
</script>
|
96
96
|
|
@@ -116,7 +116,7 @@ module Slideit
|
|
116
116
|
SEPARATOR_PATTERN = "{__separator__}"
|
117
117
|
SEPARATOR_VERTICAL_PATTERN = "{__separator-vertical__}"
|
118
118
|
SEPARATOR_NOTES_PATTERN = "{__separator-notes__}"
|
119
|
-
PRINT_PDF_PATTERN = "{__print-pdf-
|
119
|
+
PRINT_PDF_PATTERN = "{__print-pdf-script__}"
|
120
120
|
|
121
121
|
def render
|
122
122
|
html = BASE.dup
|
data/lib/slideit/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slideit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vincent
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-10-
|
11
|
+
date: 2016-10-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -62,12 +62,13 @@ extra_rdoc_files: []
|
|
62
62
|
files:
|
63
63
|
- ".gitignore"
|
64
64
|
- ".travis.yml"
|
65
|
-
- CODE_OF_CONDUCT.md
|
66
65
|
- Gemfile
|
66
|
+
- LICENSE
|
67
67
|
- README.md
|
68
68
|
- Rakefile
|
69
|
-
- TODO.md
|
70
69
|
- bin/slideit
|
70
|
+
- examples/extra_attributes.md
|
71
|
+
- examples/simple.md
|
71
72
|
- lib/slideit.rb
|
72
73
|
- lib/slideit/container.rb
|
73
74
|
- lib/slideit/template.rb
|
data/CODE_OF_CONDUCT.md
DELETED
@@ -1,49 +0,0 @@
|
|
1
|
-
# Contributor Code of Conduct
|
2
|
-
|
3
|
-
As contributors and maintainers of this project, and in the interest of
|
4
|
-
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
-
contribute through reporting issues, posting feature requests, updating
|
6
|
-
documentation, submitting pull requests or patches, and other activities.
|
7
|
-
|
8
|
-
We are committed to making participation in this project a harassment-free
|
9
|
-
experience for everyone, regardless of level of experience, gender, gender
|
10
|
-
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
-
body size, race, ethnicity, age, religion, or nationality.
|
12
|
-
|
13
|
-
Examples of unacceptable behavior by participants include:
|
14
|
-
|
15
|
-
* The use of sexualized language or imagery
|
16
|
-
* Personal attacks
|
17
|
-
* Trolling or insulting/derogatory comments
|
18
|
-
* Public or private harassment
|
19
|
-
* Publishing other's private information, such as physical or electronic
|
20
|
-
addresses, without explicit permission
|
21
|
-
* Other unethical or unprofessional conduct
|
22
|
-
|
23
|
-
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
-
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
-
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
-
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
-
threatening, offensive, or harmful.
|
28
|
-
|
29
|
-
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
-
fairly and consistently applying these principles to every aspect of managing
|
31
|
-
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
-
Conduct may be permanently removed from the project team.
|
33
|
-
|
34
|
-
This code of conduct applies both within project spaces and in public spaces
|
35
|
-
when an individual is representing the project or its community.
|
36
|
-
|
37
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
-
reported by contacting a project maintainer at vincent@boohee.com. All
|
39
|
-
complaints will be reviewed and investigated and will result in a response that
|
40
|
-
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
-
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
-
incident.
|
43
|
-
|
44
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
-
version 1.3.0, available at
|
46
|
-
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
-
|
48
|
-
[homepage]: http://contributor-covenant.org
|
49
|
-
[version]: http://contributor-covenant.org/version/1/3/0/
|