bonfire 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.rvmrc +1 -1
- data/Gemfile.lock +3 -1
- data/README.md +13 -2
- data/Rakefile +1 -1
- data/bin/bonfire +6 -0
- data/bonfire.gemspec +1 -0
- data/lib/bonfire/version.rb +1 -1
- metadata +21 -6
data/.rvmrc
CHANGED
@@ -1 +1 @@
|
|
1
|
-
rvm use default@
|
1
|
+
rvm use default@bonfire
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
bonfire (0.0
|
4
|
+
bonfire (0.1.0)
|
5
5
|
haml (>= 3.0)
|
6
6
|
rdiscount (>= 1.6.8)
|
7
7
|
thor (>= 0.14.0)
|
@@ -15,6 +15,7 @@ GEM
|
|
15
15
|
rspec (~> 2.0)
|
16
16
|
rspec-instafail (~> 0.1.4)
|
17
17
|
ruby-progressbar (~> 0.0.9)
|
18
|
+
gem-release (0.0.16)
|
18
19
|
haml (3.0.25)
|
19
20
|
nokogiri (1.4.4)
|
20
21
|
rdiscount (1.6.8)
|
@@ -37,6 +38,7 @@ PLATFORMS
|
|
37
38
|
DEPENDENCIES
|
38
39
|
bonfire!
|
39
40
|
fuubar
|
41
|
+
gem-release
|
40
42
|
haml (>= 3.0)
|
41
43
|
nokogiri
|
42
44
|
rdiscount (>= 1.6.8)
|
data/README.md
CHANGED
@@ -2,7 +2,18 @@
|
|
2
2
|
|
3
3
|
This is a set of Ruby scripts, packaged in a gem, that helps you write e-books for the Amazon Kindle.
|
4
4
|
|
5
|
-
|
5
|
+
More detail: http://infews.github.com/bonfire
|
6
6
|
|
7
|
-
|
7
|
+
## Contributor's Guide
|
8
8
|
|
9
|
+
All pull requests will be considered. But like all projects, we're opinionated. We welcome your contributions
|
10
|
+
that are thoughtful and include specs. Pull requests without specs will be glossed over as they are clearly not
|
11
|
+
thoughtful enough.
|
12
|
+
|
13
|
+
If there's interest, we'll make an email list. In the meantime, Github Issues and direct emails are fine.
|
14
|
+
|
15
|
+
## Appendix
|
16
|
+
|
17
|
+
Distributed under the MIT License
|
18
|
+
|
19
|
+
Copyright © 2011 Infews LLC
|
data/Rakefile
CHANGED
data/bin/bonfire
ADDED
data/bonfire.gemspec
CHANGED
data/lib/bonfire/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bonfire
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Davis W. Frank
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-03-
|
18
|
+
date: 2011-03-06 00:00:00 -08:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -125,13 +125,27 @@ dependencies:
|
|
125
125
|
version: "0"
|
126
126
|
type: :development
|
127
127
|
version_requirements: *id007
|
128
|
+
- !ruby/object:Gem::Dependency
|
129
|
+
name: gem-release
|
130
|
+
prerelease: false
|
131
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
132
|
+
none: false
|
133
|
+
requirements:
|
134
|
+
- - ">="
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
hash: 3
|
137
|
+
segments:
|
138
|
+
- 0
|
139
|
+
version: "0"
|
140
|
+
type: :development
|
141
|
+
version_requirements: *id008
|
128
142
|
description: |-
|
129
143
|
All the scripts you need to write books in Markdown then publish them via Amazon's Kindle
|
130
144
|
Digital Publishing.
|
131
145
|
email:
|
132
146
|
- dwfrank+bonfire@infe.ws
|
133
|
-
executables:
|
134
|
-
|
147
|
+
executables:
|
148
|
+
- bonfire
|
135
149
|
extensions: []
|
136
150
|
|
137
151
|
extra_rdoc_files: []
|
@@ -145,6 +159,7 @@ files:
|
|
145
159
|
- MIT_LICENSE.md
|
146
160
|
- README.md
|
147
161
|
- Rakefile
|
162
|
+
- bin/bonfire
|
148
163
|
- bonfire.gemspec
|
149
164
|
- lib/bonfire.rb
|
150
165
|
- lib/bonfire/draft.rb
|