stastic 0.1.0 → 0.2.0
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.
- data/Rakefile +11 -0
- data/bin/stastic +11 -1
- data/lib/server.rb +43 -0
- data/lib/stastic/client.rb +72 -0
- data/lib/stastic/command.rb +41 -0
- data/lib/stastic/commands/auth.rb +8 -0
- data/lib/stastic/commands/base.rb +96 -0
- data/lib/stastic/commands/create.rb +68 -0
- data/lib/stastic/commands/domains.rb +41 -0
- data/lib/stastic/commands/help.rb +33 -0
- data/lib/stastic/commands/info.rb +26 -0
- data/lib/stastic/commands/list.rb +37 -0
- data/lib/stastic/commands/preview.rb +9 -0
- data/lib/stastic/commands/publish.rb +34 -0
- data/lib/stastic/commands/rename.rb +25 -0
- data/lib/stastic/commands/set.rb +54 -0
- data/lib/stastic/config.rb +79 -0
- data/lib/stastic/generator.rb +50 -0
- data/lib/stastic/generators/default.rb +31 -0
- data/lib/stastic/generators/jekyll.rb +72 -0
- data/lib/stastic.rb +1 -1
- data/lib/trollop.rb +782 -0
- data/templates/default/index.html +7 -0
- metadata +73 -6
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stastic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 23
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
8
|
+
- 2
|
9
9
|
- 0
|
10
|
-
version: 0.
|
10
|
+
version: 0.2.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Brian Smith
|
@@ -15,13 +15,45 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-03-01 00:00:00 -08:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
|
-
name:
|
22
|
+
name: rest-client
|
23
23
|
prerelease: false
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 13
|
30
|
+
segments:
|
31
|
+
- 1
|
32
|
+
- 6
|
33
|
+
- 1
|
34
|
+
version: 1.6.1
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: json
|
39
|
+
prerelease: false
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 1
|
46
|
+
segments:
|
47
|
+
- 1
|
48
|
+
- 5
|
49
|
+
- 1
|
50
|
+
version: 1.5.1
|
51
|
+
type: :runtime
|
52
|
+
version_requirements: *id002
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: rspec
|
55
|
+
prerelease: false
|
56
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
25
57
|
none: false
|
26
58
|
requirements:
|
27
59
|
- - ">="
|
@@ -31,7 +63,21 @@ dependencies:
|
|
31
63
|
- 0
|
32
64
|
version: "0"
|
33
65
|
type: :development
|
34
|
-
version_requirements: *
|
66
|
+
version_requirements: *id003
|
67
|
+
- !ruby/object:Gem::Dependency
|
68
|
+
name: fakefs
|
69
|
+
prerelease: false
|
70
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
hash: 3
|
76
|
+
segments:
|
77
|
+
- 0
|
78
|
+
version: "0"
|
79
|
+
type: :development
|
80
|
+
version_requirements: *id004
|
35
81
|
description: Create, deploy and manage your Stastic sites
|
36
82
|
email:
|
37
83
|
- bsmith@swig505.com
|
@@ -42,9 +88,30 @@ extensions: []
|
|
42
88
|
extra_rdoc_files: []
|
43
89
|
|
44
90
|
files:
|
91
|
+
- lib/server.rb
|
92
|
+
- lib/stastic/client.rb
|
93
|
+
- lib/stastic/command.rb
|
94
|
+
- lib/stastic/commands/auth.rb
|
95
|
+
- lib/stastic/commands/base.rb
|
96
|
+
- lib/stastic/commands/create.rb
|
97
|
+
- lib/stastic/commands/domains.rb
|
98
|
+
- lib/stastic/commands/help.rb
|
99
|
+
- lib/stastic/commands/info.rb
|
100
|
+
- lib/stastic/commands/list.rb
|
101
|
+
- lib/stastic/commands/preview.rb
|
102
|
+
- lib/stastic/commands/publish.rb
|
103
|
+
- lib/stastic/commands/rename.rb
|
104
|
+
- lib/stastic/commands/set.rb
|
105
|
+
- lib/stastic/config.rb
|
106
|
+
- lib/stastic/generator.rb
|
107
|
+
- lib/stastic/generators/default.rb
|
108
|
+
- lib/stastic/generators/jekyll.rb
|
45
109
|
- lib/stastic.rb
|
110
|
+
- lib/trollop.rb
|
46
111
|
- bin/stastic
|
112
|
+
- Rakefile
|
47
113
|
- README.md
|
114
|
+
- templates/default/index.html
|
48
115
|
has_rdoc: true
|
49
116
|
homepage: http://stastic.com
|
50
117
|
licenses: []
|