README.md in clockwork_web-0.1.1 vs README.md in clockwork_web-0.1.2
- old
+ new
@@ -13,11 +13,11 @@
## Installation
Add this line to your application’s Gemfile:
```ruby
-gem 'clockwork_web'
+gem "clockwork_web"
```
And add it to your `config/routes.rb`.
```ruby
@@ -42,11 +42,11 @@
```
#### Devise
```ruby
-authenticate :user, lambda {|user| user.admin? } do
+authenticate :user, ->(user) { user.admin? } do
mount ClockworkWeb::Engine, at: "clockwork"
end
```
## Monitoring
@@ -80,5 +80,14 @@
- [Report bugs](https://github.com/ankane/clockwork_web/issues)
- Fix bugs and [submit pull requests](https://github.com/ankane/clockwork_web/pulls)
- Write, clarify, or fix documentation
- Suggest or add new features
+
+To get started with development:
+
+```sh
+git clone https://github.com/ankane/clockwork_web.git
+cd clockwork_web
+bundle install
+bundle exec rake test
+```