gem_bootstrap 0.0.1 → 0.0.2.pre
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/CHANGELOGS.md +5 -0
- data/README.md +15 -4
- data/lib/gem_bootstrap/version.rb +1 -1
- data/templates/README.md +9 -3
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1c0b0e3e31ca84a882e6916beacb031e6c10c28b
|
|
4
|
+
data.tar.gz: 4f6f49ef719e41d3e319befb302b35d5e5730ab0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 301bc73fd6fb976688065644bce95e1cbdca7894dc708ec3907141220a11235c36514d041688f06220c0f64d1079a918aeb1593226af2e0b47df4152ea011c93
|
|
7
|
+
data.tar.gz: d23467bd4ce727b7d5335334b91358ea744f4483172825bafcc4cacf0b2612bb021b8a3802b17a107115303f974cc0a57defa370574364f2c548a800ad951808
|
data/CHANGELOGS.md
CHANGED
data/README.md
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
## gem_bootstrap
|
|
2
2
|
|
|
3
|
-
[]
|
|
4
|
-
[]
|
|
5
|
-
[]
|
|
3
|
+
[][gem]
|
|
4
|
+
[][gemnasium]
|
|
5
|
+
[][codeclimate]
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
[gem]: http://badge.fury.io/rb/gem_bootstrap)
|
|
8
|
+
[gemnasium]: https://gemnasium.com/agilecreativity/gem_bootstrap
|
|
9
|
+
[codeclimate]: https://codeclimate.com/github/agilecreativity/gem_bootstrap
|
|
10
|
+
|
|
11
|
+
Generate the starting template for creating ruby gem in ruby in just one command.
|
|
12
|
+
|
|
13
|
+
TL;DR
|
|
14
|
+
```sh
|
|
15
|
+
gem install gem_bootstrap --pre; gem_bootstrap generate awesome_gem --github-id awesome_developer -- email cool@awesomedev.com --author 'John Guru II'
|
|
16
|
+
```
|
|
8
17
|
|
|
9
18
|
### Features:
|
|
10
19
|
|
|
@@ -12,6 +21,7 @@ Generate the starting template for creating the ruby gem in ruby in one command.
|
|
|
12
21
|
- Document with [Yard][]
|
|
13
22
|
- Style check with [Rubocop][]
|
|
14
23
|
- Debug with [Pry][]
|
|
24
|
+
- TDD/BDD with [Guard][]
|
|
15
25
|
- Initial git commit with [Grit] gem
|
|
16
26
|
- Build on top of the most popular [Thor][] framework
|
|
17
27
|
- Give you simple working structure that you can build upon but not dictate on
|
|
@@ -114,3 +124,4 @@ awesome_gem
|
|
|
114
124
|
[Yard]: https://github.com/lsegal/yard
|
|
115
125
|
[Rubocop]: https://github.com/bbatsov/rubocop
|
|
116
126
|
[Pry]: https://github.com/pry/pry
|
|
127
|
+
[Guard]: https://github.com/guard/guard
|
data/templates/README.md
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
## <%= MiscUtils.camel_case(name) %>
|
|
2
2
|
|
|
3
|
-
[]
|
|
4
|
-
[]
|
|
5
|
-
[]
|
|
3
|
+
[][gem]
|
|
4
|
+
[][gemnasium]
|
|
5
|
+
[][codeclimate]
|
|
6
|
+
|
|
7
|
+
[gem]: http://badge.fury.io/rb/<%= name %>
|
|
8
|
+
[gemnasium]: https://gemnasium.com/<%= options[:github_id] %>/<%= name %>
|
|
9
|
+
[codeclimate]: https://codeclimate.com/github/<%= options[:github_id] %>/<%= name %>
|
|
6
10
|
|
|
7
11
|
Quickly generate the starting template for creating CLI ruby gem.
|
|
8
12
|
Generated template contain the simplest possible structure so that we don't have
|
|
@@ -15,6 +19,7 @@ Features:
|
|
|
15
19
|
- Debug with pry[pry][]
|
|
16
20
|
- Documentation with [yard][]
|
|
17
21
|
- Style check with [rubocop][]
|
|
22
|
+
- BDD/TDD with guard [guard][]
|
|
18
23
|
- Initial git manipulation using [grit][]
|
|
19
24
|
|
|
20
25
|
### Installation
|
|
@@ -51,6 +56,7 @@ include <%= MiscUtils.camel_case(name) %>
|
|
|
51
56
|
|
|
52
57
|
[thor]: https://github.com/erikhuda/thor
|
|
53
58
|
[minitest]: https://github.com/seattlerb/minitest
|
|
59
|
+
[guard]: https://github.com/guard/guard
|
|
54
60
|
[yard]: https://github.com/lsegal/yard
|
|
55
61
|
[pry]: https://github.com/pry/pry
|
|
56
62
|
[rubocop]: https://github.com/bbatsov/rubocop
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gem_bootstrap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2.pre
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Burin Choomnuan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-05-
|
|
11
|
+
date: 2014-05-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -258,9 +258,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
258
258
|
version: '0'
|
|
259
259
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
260
260
|
requirements:
|
|
261
|
-
- - "
|
|
261
|
+
- - ">"
|
|
262
262
|
- !ruby/object:Gem::Version
|
|
263
|
-
version:
|
|
263
|
+
version: 1.3.1
|
|
264
264
|
requirements: []
|
|
265
265
|
rubyforge_project:
|
|
266
266
|
rubygems_version: 2.2.2
|