gem_bootstrap 0.0.1 → 0.0.2.pre

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b971c9ff6eeff1e96a93856890d5e3b526893dae
4
- data.tar.gz: 69a6c4147c0117e540b03b858345870bc5ec80f2
3
+ metadata.gz: 1c0b0e3e31ca84a882e6916beacb031e6c10c28b
4
+ data.tar.gz: 4f6f49ef719e41d3e319befb302b35d5e5730ab0
5
5
  SHA512:
6
- metadata.gz: 68276627da8235910abd8d04ef055d7810ef551aaf3332a99db3616165465d3bae1d8a89e8d1fff8bc9727a2cc67c624eac21cd0bac06298633832016cd0a2ef
7
- data.tar.gz: 83ce45e72f24287cb641cd990eafc20863783e4a6c62bf3d23f17c91d187989708bce84ba30f4966348202620959c44a656b34224a542d67edd68baa8c8cc88a
6
+ metadata.gz: 301bc73fd6fb976688065644bce95e1cbdca7894dc708ec3907141220a11235c36514d041688f06220c0f64d1079a918aeb1593226af2e0b47df4152ea011c93
7
+ data.tar.gz: d23467bd4ce727b7d5335334b91358ea744f4483172825bafcc4cacf0b2612bb021b8a3802b17a107115303f974cc0a57defa370574364f2c548a800ad951808
@@ -1,5 +1,10 @@
1
1
  ### Changelogs
2
2
 
3
+ #### 0.0.2
4
+
5
+ - Improve README.md
6
+ - Improve template files
7
+
3
8
  #### 0.0.1
4
9
 
5
10
  - Initial release
data/README.md CHANGED
@@ -1,10 +1,19 @@
1
1
  ## gem_bootstrap
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/gem_bootstrap.svg)](http://badge.fury.io/rb/gem_bootstrap)
4
- [![Dependency Status](https://gemnasium.com/agilecreativity/gem_bootstrap.png)](https://gemnasium.com/agilecreativity/gem_bootstrap)
5
- [![Code Climate](https://codeclimate.com/github/agilecreativity/gem_bootstrap.png)](https://codeclimate.com/github/agilecreativity/gem_bootstrap)
3
+ [![Gem Version](https://badge.fury.io/rb/gem_bootstrap.svg)][gem]
4
+ [![Dependency Status](https://gemnasium.com/agilecreativity/gem_bootstrap.png)][gemnasium]
5
+ [![Code Climate](https://codeclimate.com/github/agilecreativity/gem_bootstrap.png)][codeclimate]
6
6
 
7
- Generate the starting template for creating the ruby gem in ruby in one command.
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
@@ -1,3 +1,3 @@
1
1
  module GemBootstrap
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2.pre'
3
3
  end
@@ -1,8 +1,12 @@
1
1
  ## <%= MiscUtils.camel_case(name) %>
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/<%= name %>.svg)](http://badge.fury.io/rb/<%= name %>)
4
- [![Dependency Status](https://gemnasium.com/<%= options[:github_id] %>/<%= name %>.png)](https://gemnasium.com/<%= options[:github_id] %>/<%= name %>)
5
- [![Code Climate](https://codeclimate.com/github/<%= options[:github_id] %>/<%= name %>.png)](https://codeclimate.com/github/<%= options[:github_id] %>/<%= name %>)
3
+ [![Gem Version](https://badge.fury.io/rb/<%= name %>.svg)][gem]
4
+ [![Dependency Status](https://gemnasium.com/<%= options[:github_id] %>/<%= name %>.png)][gemnasium]
5
+ [![Code Climate](https://codeclimate.com/github/<%= options[:github_id] %>/<%= name %>.png)][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.1
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-09 00:00:00.000000000 Z
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: '0'
263
+ version: 1.3.1
264
264
  requirements: []
265
265
  rubyforge_project:
266
266
  rubygems_version: 2.2.2