diff options
Diffstat (limited to 'CLI/ruby')
| -rw-r--r-- | CLI/ruby/Gemfile.lock | 4 | ||||
| -rw-r--r-- | CLI/ruby/README.md | 2 | ||||
| -rw-r--r-- | CLI/ruby/game_of_life.gemspec | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/CLI/ruby/Gemfile.lock b/CLI/ruby/Gemfile.lock index 447b89a..4354bad 100644 --- a/CLI/ruby/Gemfile.lock +++ b/CLI/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - game_of_life (0.1.0) + terminal_game_of_life (0.1.0) thor (~> 1.0) GEM @@ -60,12 +60,12 @@ PLATFORMS DEPENDENCIES bundler - game_of_life! pry-byebug rake redcarpet rspec rubocop + terminal_game_of_life! yard BUNDLED WITH diff --git a/CLI/ruby/README.md b/CLI/ruby/README.md index 50058d1..0e8fb42 100644 --- a/CLI/ruby/README.md +++ b/CLI/ruby/README.md @@ -4,7 +4,7 @@ The implementation of the [Conway's Game of Life](https://en.wikipedia.org/wiki/ ## Installation ```bash -$ gem install game_of_life +$ gem install terminal_game_of_life ``` ## Usage diff --git a/CLI/ruby/game_of_life.gemspec b/CLI/ruby/game_of_life.gemspec index 1626bf4..73ea1c8 100644 --- a/CLI/ruby/game_of_life.gemspec +++ b/CLI/ruby/game_of_life.gemspec @@ -3,7 +3,7 @@ require_relative "lib/game_of_life/version" Gem::Specification.new do |spec| - spec.name = "game_of_life" + spec.name = "terminal_game_of_life" spec.version = GameOfLife::VERSION spec.authors = ["a14m"] spec.email = ["[email protected]"] |
