creategem 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -2
  3. data/lib/creategem/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4f6b440d648fbfb26b7b161b6f60e35d4dd10cfe
4
- data.tar.gz: be4b11420f945623d1bf1eb33d995ef15d755dce
3
+ metadata.gz: c3c34fd1a9d0687485181936993dedf5681a68af
4
+ data.tar.gz: 6a77720d84f8e761d0de7938bb6b695ba23d1231
5
5
  SHA512:
6
- metadata.gz: 9f1d5bef360b8245d36d2db38924acb08373f20c8ac1bebbf98f10e218d5b821584b95de6e6400a02478bf31787c168beb1bbbdca868fd70fc81d37d1c57dda4
7
- data.tar.gz: 422eaf2aae01475029e1176fddcdecf1b7fdd5106df234c5d5bf71b7c5260c9c78347aa17cf18e74e68d33a8af69af4e16052786f02c51e55aeccb6d1fe22874
6
+ metadata.gz: 98b2fbdecf13a63597aceca0221f884bea05f8bdb23369d451462ddf6a9632fe4c2e59595ad83871a99c177c4fa61bf5baba4731d801fd475e09c36f9e9a9245
7
+ data.tar.gz: 0d5e958d39d0afeece4ccc71d946b2b5e1ddf7c5c42a70fb4cc6e1d178b58a9ac30cc740f19b811c7e8c1ecfeb69408bb1697195cba1cd7cdd47b84e34ecd260
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Creategem
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/creategem.png)](https://badge.fury.io/rb/creategem)
4
+
3
5
  Creategem creates a scaffold project for a new gem that already has a remote repository (Github or Bitbucket) and is ready to be released in a private or public gem server.
4
6
 
5
7
  This project was inspired by the Bundler's `bundle gem GEM command and by the great article [Deveoping a RubyGem using Bundler](https://github.com/radar/guides/blob/master/gem-development.md) by @radar.
@@ -27,11 +29,11 @@ When called without any options it is assumed that you want a gem with an execut
27
29
 
28
30
  During the creation you will be asked for your bitbucket user name and the url of your geminabox gem server (only the first time, as the user name and the gem server url are saved in your git global config). You will also be asked to enter your bitbucket password when the remote repository is created for you with the bitbucket rest api.
29
31
 
30
- When you use the --public option a github repository is created for the gem and on release the gem is pushed to rubygems.org.
32
+ When you use the `--public` option a github repository is created for the gem and on release the gem is pushed to rubygems.org.
31
33
 
32
34
  During the creation you will be asked for your github user name (only the first time, as the user name is saved in your git global config). You will also be asked to enter your github password when the remote repository is created for you with the github rest api.
33
35
 
34
- Per default a gem is created with an executable based on Thor, but you can omit the executable with the option --no-executable.
36
+ Per default a gem is created with an executable based on Thor, but you can omit the executable with the option `--no-executable`.
35
37
 
36
38
  After you create the gem, edit your gemspec and change the summary and the description, commit the changes to git and invoke `rake release_patch` and your gem is being released.
37
39
 
@@ -1,3 +1,3 @@
1
1
  module Creategem
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: creategem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Jancev