README.md in lambda_punch-0.0.3 vs README.md in lambda_punch-0.0.4
- old
+ new
@@ -40,9 +40,16 @@
```dockerfile
RUN bundle exec rake lambda_punch:install
```
+If you are using `LambdaPunch` with a non-Rails project, add this to your Rake file
+
+```ruby
+spec = Gem::Specification.find_by_name 'lambda_punch'
+load "#{spec.gem_dir}/lib/lambda_punch/tasks/install.rake"
+```
+
## 🧰 Usage
Anywhere in your application's code, use the `LambdaPunch.push` method to add blocks of code to your jobs queue.
```ruby