thoughts 0.0.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.
- data/.gitignore +5 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +21 -0
- data/README.rdoc +42 -0
- data/Rakefile +9 -0
- data/lib/thoughts.rb +3 -0
- data/lib/thoughts/version.rb +3 -0
- data/test/helper.rb +3 -0
- data/test/irb.rb +10 -0
- data/test/thoughts_test.rb +11 -0
- data/thoughts.gemspec +23 -0
- metadata +107 -0
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
thoughts (0.0.1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: http://rubygems.org/
|
8
|
+
specs:
|
9
|
+
leftright (0.9.1)
|
10
|
+
rake (0.9.2)
|
11
|
+
test-belt (2.0.0)
|
12
|
+
leftright (~> 0.9.0)
|
13
|
+
|
14
|
+
PLATFORMS
|
15
|
+
ruby
|
16
|
+
|
17
|
+
DEPENDENCIES
|
18
|
+
bundler (~> 1.0)
|
19
|
+
rake (~> 0.9.2)
|
20
|
+
test-belt (~> 2.0)
|
21
|
+
thoughts!
|
data/README.rdoc
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
= Thoughts
|
2
|
+
|
3
|
+
== Description
|
4
|
+
|
5
|
+
A static site generator for the creative at heart.
|
6
|
+
|
7
|
+
Thoughts cosists of three parts - a library for generating static sites, a CLI
|
8
|
+
for automating site generation tasks, and a web interface for creating content
|
9
|
+
and managing your site.
|
10
|
+
|
11
|
+
== Installation
|
12
|
+
|
13
|
+
gem install thoughts
|
14
|
+
|
15
|
+
== Usage
|
16
|
+
|
17
|
+
require 'thoughts'
|
18
|
+
|
19
|
+
== License
|
20
|
+
|
21
|
+
Copyright (c) 2011 Jordan Bach
|
22
|
+
|
23
|
+
Permission is hereby granted, free of charge, to any person
|
24
|
+
obtaining a copy of this software and associated documentation
|
25
|
+
files (the "Software"), to deal in the Software without
|
26
|
+
restriction, including without limitation the rights to use,
|
27
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
28
|
+
copies of the Software, and to permit persons to whom the
|
29
|
+
Software is furnished to do so, subject to the following
|
30
|
+
conditions:
|
31
|
+
|
32
|
+
The above copyright notice and this permission notice shall be
|
33
|
+
included in all copies or substantial portions of the Software.
|
34
|
+
|
35
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
36
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
37
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
38
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
39
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
40
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
41
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
42
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
data/Rakefile
ADDED
data/lib/thoughts.rb
ADDED
data/test/helper.rb
ADDED
data/test/irb.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
require 'test_belt'
|
2
|
+
|
3
|
+
# this file is required in when the 'irb' rake test is run.
|
4
|
+
# b/c 'test_belt' is required above, lib and test dirs will
|
5
|
+
# be added to the LOAD_PATH and the test helper will be
|
6
|
+
# required in.
|
7
|
+
|
8
|
+
# put any IRB setup code here
|
9
|
+
|
10
|
+
require 'thoughts'
|
data/thoughts.gemspec
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "thoughts/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "thoughts"
|
7
|
+
s.version = Thoughts::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["Jordan Bach"]
|
10
|
+
s.email = ["jordanbach@gmail.com"]
|
11
|
+
s.homepage = "http://github.com/jbgo/thoughts"
|
12
|
+
s.summary = "A static site generator for the creative at heart"
|
13
|
+
s.description = "Thoughts cosists of three parts - a library for generating static sites, a CLI for automating site generation tasks, and a web interface for creating content and managing your site."
|
14
|
+
|
15
|
+
s.files = `git ls-files`.split("\n")
|
16
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
17
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
18
|
+
s.require_paths = ["lib"]
|
19
|
+
|
20
|
+
s.add_development_dependency("bundler", ["~> 1.0"])
|
21
|
+
s.add_development_dependency("test-belt", ["~> 2.0"])
|
22
|
+
# s.add_dependency("gem-name", ["~> 0.0"])
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,107 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: thoughts
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Jordan Bach
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2011-07-26 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
type: :development
|
22
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
23
|
+
none: false
|
24
|
+
requirements:
|
25
|
+
- - ~>
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
hash: 15
|
28
|
+
segments:
|
29
|
+
- 1
|
30
|
+
- 0
|
31
|
+
version: "1.0"
|
32
|
+
name: bundler
|
33
|
+
prerelease: false
|
34
|
+
version_requirements: *id001
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
type: :development
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
+
none: false
|
39
|
+
requirements:
|
40
|
+
- - ~>
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
hash: 3
|
43
|
+
segments:
|
44
|
+
- 2
|
45
|
+
- 0
|
46
|
+
version: "2.0"
|
47
|
+
name: test-belt
|
48
|
+
prerelease: false
|
49
|
+
version_requirements: *id002
|
50
|
+
description: Thoughts cosists of three parts - a library for generating static sites, a CLI for automating site generation tasks, and a web interface for creating content and managing your site.
|
51
|
+
email:
|
52
|
+
- jordanbach@gmail.com
|
53
|
+
executables: []
|
54
|
+
|
55
|
+
extensions: []
|
56
|
+
|
57
|
+
extra_rdoc_files: []
|
58
|
+
|
59
|
+
files:
|
60
|
+
- .gitignore
|
61
|
+
- Gemfile
|
62
|
+
- Gemfile.lock
|
63
|
+
- README.rdoc
|
64
|
+
- Rakefile
|
65
|
+
- lib/thoughts.rb
|
66
|
+
- lib/thoughts/version.rb
|
67
|
+
- test/helper.rb
|
68
|
+
- test/irb.rb
|
69
|
+
- test/thoughts_test.rb
|
70
|
+
- thoughts.gemspec
|
71
|
+
homepage: http://github.com/jbgo/thoughts
|
72
|
+
licenses: []
|
73
|
+
|
74
|
+
post_install_message:
|
75
|
+
rdoc_options: []
|
76
|
+
|
77
|
+
require_paths:
|
78
|
+
- lib
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
none: false
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
hash: 3
|
85
|
+
segments:
|
86
|
+
- 0
|
87
|
+
version: "0"
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
hash: 3
|
94
|
+
segments:
|
95
|
+
- 0
|
96
|
+
version: "0"
|
97
|
+
requirements: []
|
98
|
+
|
99
|
+
rubyforge_project:
|
100
|
+
rubygems_version: 1.8.6
|
101
|
+
signing_key:
|
102
|
+
specification_version: 3
|
103
|
+
summary: A static site generator for the creative at heart
|
104
|
+
test_files:
|
105
|
+
- test/helper.rb
|
106
|
+
- test/irb.rb
|
107
|
+
- test/thoughts_test.rb
|