one_pager 0.0.2 → 0.0.3
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/.one-pager/{config.yml → config.json} +0 -0
- data/Gemfile.lock +1 -1
- data/README.md +12 -0
- data/lib/one_pager/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 14ec9e023c3e84a8d05c3aa0706ba3f415c5f3022e1546b41a92e8ba29bcf4df
|
|
4
|
+
data.tar.gz: b5f35ff57f305c93ae36a555fb587b47adbbfc44a2f26a286d50153637c7aa5d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d654bda79637b963255db061c0ad0b25450d1e68f8f5f568dc3ccdd18cd99bd1ee1fe133f407f9c3be07a858d18b79697e93bbbcb519a8dcf7ca7fb9a9dac711
|
|
7
|
+
data.tar.gz: b057f763540fe09a44839ecdb72cf89606eb807af438093d6d2e36390ffc8e432508b2c9b13eb649d009dd76ed122c779247d10a082c2bf59275f2b89663e131
|
|
File without changes
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# OnePager
|
|
2
|
+
|
|
3
|
+
Because everyone likes to write business proposals via the terminal.
|
|
4
|
+
|
|
5
|
+
## Description
|
|
6
|
+
|
|
7
|
+
Simply run `$ one-pager init` in any directory and it will create a `docs/one-pagers` folder if it does
|
|
8
|
+
not exist, as well as a `.one-pager` file if it already doesn't exist (this file is used for setting configurations).
|
|
9
|
+
|
|
10
|
+
From here you can run commands such as `one-pager create "Allow users to purchase in DogeCoin"` and it will
|
|
11
|
+
generate a markdown file (`doc/one-pagers/allow_users_to_purchase_in_dogecoin.md`), which will be pre-populated with
|
|
12
|
+
with your one-pager template. This can be configured via the `.one-pager` file.
|
data/lib/one_pager/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: one_pager
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Poage
|
|
@@ -113,7 +113,7 @@ extra_rdoc_files:
|
|
|
113
113
|
- one_pager.rdoc
|
|
114
114
|
files:
|
|
115
115
|
- ".gitignore"
|
|
116
|
-
- ".one-pager/config.
|
|
116
|
+
- ".one-pager/config.json"
|
|
117
117
|
- Gemfile
|
|
118
118
|
- Gemfile.lock
|
|
119
119
|
- README.md
|