spinto 0.2.8 → 0.2.9
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +7 -0
- data/README.md +58 -0
- data/lib/spinto.rb +1 -1
- data/spinto.gemspec +5 -3
- metadata +20 -18
data/LICENSE
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright (c) 2012 Matthew Beale
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
Spinto Ruby Gem
|
2
|
+
---------------
|
3
|
+
|
4
|
+
[Spinto](http://www.spintoapp.com) is a CMS alternative for
|
5
|
+
building websites with non-technical contributors over Git.
|
6
|
+
The site builder on Spinto's server is a flavor
|
7
|
+
of [Jekyll](https://github.com/mojombo/jekyll), with added
|
8
|
+
support for [CoffeeScript](http://coffeescript.org/),
|
9
|
+
[LESS](http://lesscss.org/),
|
10
|
+
[SASS and SCSS](http://sass-lang.com/).
|
11
|
+
|
12
|
+
The Spinto Ruby Gem comes with a server to build and preview
|
13
|
+
your website on your own computer. Open a terminal and `cd`
|
14
|
+
into a Spinto/Jekyll project, and start the server:
|
15
|
+
|
16
|
+
``` bash
|
17
|
+
spinto-site --auto --server
|
18
|
+
```
|
19
|
+
|
20
|
+
Now you can open a browser to [http://localhost:4000](http://localhost:4000)
|
21
|
+
and see your website. The `--auto` flag will ensure your
|
22
|
+
website is rebuilt when files are changed.
|
23
|
+
|
24
|
+
```
|
25
|
+
> spinto-site --help
|
26
|
+
Spinto-site is the spintoapp.com wrapper of jekyll,
|
27
|
+
the blog-aware, static site generator.
|
28
|
+
|
29
|
+
Basic Command Line Usage:
|
30
|
+
spinto-site # . -> ./_site
|
31
|
+
spinto-site <path to write generated site> # . -> <path>
|
32
|
+
spinto-site <path to source> <path to write generated site> # <path> -> <path>
|
33
|
+
spinto-site --auto --server # Host your site locally
|
34
|
+
|
35
|
+
Configuration is read from '<source>/_config.yml' but can be overriden
|
36
|
+
using the following options:
|
37
|
+
|
38
|
+
--[no-]auto Auto-regenerate
|
39
|
+
--server [PORT] Start web server (default port 4000)
|
40
|
+
--no-server Do not start a web server
|
41
|
+
--url [URL] Set custom site.url
|
42
|
+
--version Display current version
|
43
|
+
```
|
44
|
+
|
45
|
+
**Installation**
|
46
|
+
|
47
|
+
``` bash
|
48
|
+
gem install spinto
|
49
|
+
```
|
50
|
+
|
51
|
+
And you're done!
|
52
|
+
|
53
|
+
**Additional Info**
|
54
|
+
|
55
|
+
The Spinto Ruby Gem is available under the MIT License.
|
56
|
+
|
57
|
+
Written by [Matthew Beale](matt.beale@madhatted.com) for [Spinto](http://www.spintoapp.com).
|
58
|
+
|
data/lib/spinto.rb
CHANGED
data/spinto.gemspec
CHANGED
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
|
|
4
4
|
s.rubygems_version = '1.3.5'
|
5
5
|
|
6
6
|
s.name = 'spinto'
|
7
|
-
s.version = '0.2.
|
8
|
-
s.date = '2012-
|
7
|
+
s.version = '0.2.9'
|
8
|
+
s.date = '2012-03-27'
|
9
9
|
|
10
10
|
s.summary = "The site generator used at spintoapp.com"
|
11
11
|
s.description = "Spinto uses Jekyll and plugins to build static sites, this gem provides the spinto-site builder."
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
|
|
21
21
|
s.rdoc_options = ["--charset=UTF-8"]
|
22
22
|
s.extra_rdoc_files = %w[]
|
23
23
|
|
24
|
-
s.add_runtime_dependency('spinto-jekyll', "0.11.2.
|
24
|
+
s.add_runtime_dependency('spinto-jekyll', "0.11.2.3")
|
25
25
|
s.add_runtime_dependency('coffee-script', "2.2.0")
|
26
26
|
s.add_runtime_dependency('sass', "3.1.15")
|
27
27
|
s.add_runtime_dependency('less', "2.0.9")
|
@@ -33,6 +33,8 @@ Gem::Specification.new do |s|
|
|
33
33
|
# = MANIFEST =
|
34
34
|
s.files = %w[
|
35
35
|
Gemfile
|
36
|
+
LICENSE
|
37
|
+
README.md
|
36
38
|
Rakefile
|
37
39
|
_plugins/coffeescript_converter.rb
|
38
40
|
_plugins/include_tree.rb
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spinto
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.9
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,22 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-03-27 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: spinto-jekyll
|
16
|
-
requirement: &
|
16
|
+
requirement: &2158841240 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - =
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.11.2.
|
21
|
+
version: 0.11.2.3
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *2158841240
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: coffee-script
|
27
|
-
requirement: &
|
27
|
+
requirement: &2158840780 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - =
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 2.2.0
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *2158840780
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: sass
|
38
|
-
requirement: &
|
38
|
+
requirement: &2158868220 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - =
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: 3.1.15
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *2158868220
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: less
|
49
|
-
requirement: &
|
49
|
+
requirement: &2158867760 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - =
|
@@ -54,10 +54,10 @@ dependencies:
|
|
54
54
|
version: 2.0.9
|
55
55
|
type: :runtime
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *2158867760
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: RedCloth
|
60
|
-
requirement: &
|
60
|
+
requirement: &2158867300 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - =
|
@@ -65,10 +65,10 @@ dependencies:
|
|
65
65
|
version: 4.2.9
|
66
66
|
type: :runtime
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *2158867300
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rake
|
71
|
-
requirement: &
|
71
|
+
requirement: &2158866840 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
74
74
|
- - ~>
|
@@ -76,10 +76,10 @@ dependencies:
|
|
76
76
|
version: '0.9'
|
77
77
|
type: :development
|
78
78
|
prerelease: false
|
79
|
-
version_requirements: *
|
79
|
+
version_requirements: *2158866840
|
80
80
|
- !ruby/object:Gem::Dependency
|
81
81
|
name: rdoc
|
82
|
-
requirement: &
|
82
|
+
requirement: &2158866380 !ruby/object:Gem::Requirement
|
83
83
|
none: false
|
84
84
|
requirements:
|
85
85
|
- - ~>
|
@@ -87,7 +87,7 @@ dependencies:
|
|
87
87
|
version: '3.11'
|
88
88
|
type: :development
|
89
89
|
prerelease: false
|
90
|
-
version_requirements: *
|
90
|
+
version_requirements: *2158866380
|
91
91
|
description: Spinto uses Jekyll and plugins to build static sites, this gem provides
|
92
92
|
the spinto-site builder.
|
93
93
|
email: matt.beale@madhatted.com
|
@@ -97,6 +97,8 @@ extensions: []
|
|
97
97
|
extra_rdoc_files: []
|
98
98
|
files:
|
99
99
|
- Gemfile
|
100
|
+
- LICENSE
|
101
|
+
- README.md
|
100
102
|
- Rakefile
|
101
103
|
- _plugins/coffeescript_converter.rb
|
102
104
|
- _plugins/include_tree.rb
|
@@ -122,7 +124,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
122
124
|
version: '0'
|
123
125
|
segments:
|
124
126
|
- 0
|
125
|
-
hash: -
|
127
|
+
hash: -4285360036639741543
|
126
128
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
127
129
|
none: false
|
128
130
|
requirements:
|