Skip to content

Commit

Permalink
Version 1.1.4
Browse files Browse the repository at this point in the history
* Gemfiles requirement for ruby version was
updated to "~>3.0".
* Requires of the bundler gem were dropped from
Gemfiles since now it's bundled into Ruby standard
libraries.
* Requires of the rake gem were dropped from
Gemfiles since now it's bundled into Ruby standard
libraries.
* Version "0.1.0" in the CHANGELOG was replaced
for "Unreleased".
* Added "Usage" and "Contact" info to the README
template.
  • Loading branch information
damian-m-g committed Jan 6, 2022
1 parent d699438 commit 8a332d4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 9 deletions.
9 changes: 9 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
1.1.4
-----

* Gemfiles requirement for ruby version was updated to "~>3.0".
* Requires of the bundler gem were dropped from Gemfiles since now it's bundled into Ruby standard libraries.
* Requires of the rake gem were dropped from Gemfiles since now it's bundled into Ruby standard libraries.
* Version "0.1.0" in the CHANGELOG was replaced for "Unreleased".
* Added "Usage" and "Contact" info to the README template.

1.1.3
-----

Expand Down
24 changes: 15 additions & 9 deletions lib/cocot/contenido_de_archivos.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,14 @@ module COCOT; end

COCOT::CONTENIDO_DE_ARCHIVOS[:gemfile] = \
<<STR
# ruby '~>2.0'
# ruby '~>3.0'
source 'https://rubygems.org'
group :development do
gem 'rspec'
gem 'cucumber'
gem 'rake'
gem 'bundler'
gem 'yard'
end
Expand All @@ -51,14 +50,13 @@ module COCOT; end

COCOT::CONTENIDO_DE_ARCHIVOS[:gemfile_rspec_only] = \
<<STR
# ruby '~>2.0'
# ruby '~>3.0'
source 'https://rubygems.org'
group :development do
gem 'rspec'
gem 'rake'
gem 'bundler'
gem 'yard'
end
Expand All @@ -69,14 +67,13 @@ module COCOT; end

COCOT::CONTENIDO_DE_ARCHIVOS[:gemfile_cucumber_only] = \
<<STR
# ruby '~>2.0'
# ruby '~>3.0'
source 'https://rubygems.org'
group :development do
gem 'cucumber'
gem 'rake'
gem 'bundler'
gem 'yard'
end
Expand All @@ -87,13 +84,12 @@ module COCOT; end

COCOT::CONTENIDO_DE_ARCHIVOS[:gemfile_clean] = \
<<STR
# ruby '~>2.0'
# ruby '~>3.0'
source 'https://rubygems.org'
group :development do
gem 'rake'
gem 'bundler'
gem 'yard'
end
Expand Down Expand Up @@ -216,6 +212,16 @@ module COCOT; end
COCOT::CONTENIDO_DE_ARCHIVOS['README.md'] = \
<<STR
# name_of_the_project_upcased
# Usage
# Contact
STR

COCOT::CONTENIDO_DE_ARCHIVOS['CHANGELOG.md'] = \
Expand All @@ -226,7 +232,7 @@ module COCOT; end
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.1.0] - current_date
## [Unreleased] - current_date
### Added
- Pristine version.
STR

0 comments on commit 8a332d4

Please sign in to comment.