README.md in rails-vue-helpers-0.1.0 vs README.md in rails-vue-helpers-0.1.1
- old
+ new
@@ -1,10 +1,10 @@
# Rails::Vue::Helpers
**VueHelpers** is a small gem developed by [Unagi](https://unagi.com.ar/) for Ruby on Rails applications. It has built-in helpers with [Vue.js](https://vuejs.org/) compatibility in order to use some of the most common Rails helpers with Vue.js directives.
-The gem allows Rails applications extends the implementation of `link_to`, `content_tag` and `check_box_tag` in order to support Vue.js directives.
+The gem extends the implementation of Rails' `link_to`, `content_tag` and `check_box_tag` in order to support Vue.js directives.
## Installation
Add this line to your application's Gemfile:
@@ -20,15 +20,15 @@
$ gem install rails-vue-helpers
## Usage
-This gem extends some of the most commons Rails helpers, so the original helpers can be used in the same the way as before without any modification.
+This gem extends some of the most commons Rails helpers, so the original helpers can be used in the same way as before without any modification.
-However, if you'd like to add some Vue directives, you should use consider this gem syntax. The following options applies for all the helpers the gem provides, which at the present time are: `link_to`, `content_tag` and `check_box_tag`.
+However, if you'd like to add some Vue directives, you should consider this gem syntax. The following options apply for all the helpers the gem provides, which at the present time are: `link_to`, `content_tag` and `check_box_tag`.
-All the options are received as values of the `vue` key. This key is another option as `class` or `id`, which are officially supported by Rails helpers. So, a full example could be the next one:
+All the options are received as values of the `vue` key. This key is another option such as `class` or `id`, which are officially supported by Rails helpers. So, a full example could be the next one:
```ruby
<%= link_to users_path,
class: 'btn btn-primary',
vue: {
@@ -118,10 +118,10 @@
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
-Bug reports and pull requests are welcome on GitHub at https://github.com/lucashour/rails-vue-helpers.
+Bug reports and pull requests are welcome on GitHub at https://github.com/unagisoftware/rails-vue-helpers.
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).