action_service 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -0
- data/lib/action_service.rb +1 -1
- data/lib/action_service/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f09311e78c7bdc7b65a8720be9311b43db5ebf00be2712a8513a3e9bb603a18
|
|
4
|
+
data.tar.gz: f6d92477c56904c9a5a174bbcd75fa0636d7b28217003ff690fc2b1bc3846148
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab96ebc189fc37d1d1b25c793416e58da44398a54987aa84f46a634d87b50f8b252d3b5c6c7de159820ece10d7a081c666abea624444ec992c3fc7958bfd7857
|
|
7
|
+
data.tar.gz: ed18fa0b6a1b315faf21dc92cd5c2cdddde1daa6659b4386c17eb2a5a81abde9d6a7c1be51c065ce5de6a2c63fab7985439c81a81b89ad20410103c73b74a6c6
|
data/README.md
CHANGED
|
@@ -118,6 +118,9 @@ class Cache::List::AddHashService < ApplicationService
|
|
|
118
118
|
end
|
|
119
119
|
```
|
|
120
120
|
|
|
121
|
+
## Troubleshooting
|
|
122
|
+
In case your Rails app can't access the services directory and showing an error like `uninitialized constant ServiceName` you can solve it by adding `app/services` to `config/spring.rb`
|
|
123
|
+
|
|
121
124
|
## Contributing
|
|
122
125
|
Bug reports and pull requests are welcome on GitHub at [https://github.com/abdofawzi5/action_service](https://github.com/abdofawzi5/action_service). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
123
126
|
|
data/lib/action_service.rb
CHANGED