Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

Commit

Permalink
ruby-gem-v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed Feb 17, 2016
1 parent 04b2338 commit 5ec0a54
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Bootstrap a new [Ruby] gem in less than a minute.
Optionally, reset to the latest [release][Releases] with

```
$ git reset --hard ruby-gem-v2.0.0
$ git reset --hard ruby-gem-v2.0.1
```

2. Run
Expand Down Expand Up @@ -170,7 +170,7 @@ $ bundle
Run `$ rake -T` to see all Rake tasks.

```
rake build # Build makenew-ruby_gem-2.0.0.gem into the pkg directory
rake build # Build makenew-ruby_gem-2.0.1.gem into the pkg directory
rake bump:current[tag] # Show current gem version
rake bump:major[tag] # Bump major part of gem version
rake bump:minor[tag] # Bump minor part of gem version
Expand All @@ -179,9 +179,9 @@ rake bump:pre[tag] # Bump pre part of gem version
rake bump:set # Sets the version number using the VERSION environment variable
rake clean # Remove any temporary products
rake clobber # Remove any generated files
rake install # Build and install makenew-ruby_gem-2.0.0.gem into system gems
rake install:local # Build and install makenew-ruby_gem-2.0.0.gem into system gems without network access
rake release[remote] # Create tag v2.0.0 and build and push makenew-ruby_gem-2.0.0.gem to Rubygems
rake install # Build and install makenew-ruby_gem-2.0.1.gem into system gems
rake install:local # Build and install makenew-ruby_gem-2.0.1.gem into system gems without network access
rake release[remote] # Create tag v2.0.1 and build and push makenew-ruby_gem-2.0.1.gem to Rubygems
rake rubocop # Run RuboCop
rake rubocop:auto_correct # Auto-correct RuboCop offenses
rake spec # Run RSpec code examples
Expand Down
2 changes: 1 addition & 1 deletion lib/makenew/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# Primary module for this gem.
module Makenew
# Current Makenew version.
VERSION = '2.0.0'.freeze
VERSION = '2.0.1'.freeze
end
2 changes: 1 addition & 1 deletion makenew-ruby_gem.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(features|spec|test)/})
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 2.0.0'
spec.required_ruby_version = '>= 2.0.1'

spec.add_development_dependency 'bundler', '~> 1.6'
spec.add_development_dependency 'rake', '~> 10.4'
Expand Down

0 comments on commit 5ec0a54

Please sign in to comment.