Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HOTFIX - readme update and version label removed #5

Merged
merged 3 commits into from
Mar 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
/spec/reports/
/tmp/
.DS_Store

/Gemfile.lock
*.bundle
*.so
*.o
*.a
mkmf.log
*.gem
# rspec failure tracking
.rspec_status
27 changes: 8 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,17 @@
# Rails::Interactive

Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/rails/interactive`. To experiment with that code, run `bin/console` for an interactive prompt.

TODO: Delete this and the text above, and describe your gem
[![Gem Version](https://badge.fury.io/rb/rails-interactive.svg)](https://badge.fury.io/rb/rails-interactive)

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'rails-interactive'
```bash
$ gem install rails-interactive
```

And then execute:

$ bundle install

Or install it yourself as:

$ gem install rails-interactive

## Usage

TODO: Write usage instructions here
```bash
$ rails-interactive new
```

## Development

Expand All @@ -32,12 +21,12 @@ To install this gem onto your local machine, run `bundle exec rake install`. To

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/rails-interactive. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/rails-interactive/blob/master/CODE_OF_CONDUCT.md).
Bug reports and pull requests are welcome on GitHub at https://github.com/oguzsh/rails-interactive. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/oguzsh/rails-interactive/blob/master/CODE_OF_CONDUCT.md).

## License

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

## Code of Conduct

Everyone interacting in the Rails::Interactive project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/rails-interactive/blob/master/CODE_OF_CONDUCT.md).
Everyone interacting in the Rails::Interactive project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/oguzsh/rails-interactive/blob/master/CODE_OF_CONDUCT.md).
2 changes: 1 addition & 1 deletion lib/interactive/message.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module Interactive
class Message
def self.greet
render_ascii
puts "Welcome to Rails Interactive CLI - #{Interactive::VERSION}".colorize(:yellow)
puts "Welcome to Rails Interactive CLI".colorize(:yellow)
end

def self.help
Expand Down