activeadmin_jobs 0.1.1 → 0.1.2
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/CHANGELOG.md +7 -1
- data/Gemfile.lock +1 -1
- data/README.md +5 -1
- data/lib/activeadmin_jobs/version.rb +1 -1
- data/lib/generators/activeadmin_jobs/install/install_generator.rb +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 07e83a90ef11938bba5c98aa29cc5ee65e82b695
|
|
4
|
+
data.tar.gz: 1bbff96ed1503dabfe23ac695acded7e6ebc2ec5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b1a14b6a65555f0a2675dba872ec4b7627d64f1626c8e340ee5adb0d1b10b2dd417292ec8995549352640ac947620b39fde5258bcf89d37191f52011ee97c07e
|
|
7
|
+
data.tar.gz: dc4c0b9a912f6d61c48da615013ae30467330b2ab7676aeac0c03f37dda1984c55a26a03bc5c40475182445483ac9624404c79b4ce151a67416f288fcc9ee953
|
data/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,17 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
4
4
|
|
|
5
|
+
### v0.1.2
|
|
6
|
+
|
|
7
|
+
#### Fixed
|
|
8
|
+
|
|
9
|
+
- Run job_notifier installer from this gem's installer.
|
|
10
|
+
|
|
5
11
|
### v0.1.1
|
|
6
12
|
|
|
7
13
|
#### Fixed
|
|
8
14
|
|
|
9
|
-
- Remove unreachable growl gem from gemspec
|
|
15
|
+
- Remove unreachable growl gem from gemspec.
|
|
10
16
|
|
|
11
17
|
### v0.1.0
|
|
12
18
|
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -12,6 +12,10 @@ It's a Rails engine that allows you to play nice with [Active Job](https://githu
|
|
|
12
12
|
Add to your Gemfile:
|
|
13
13
|
|
|
14
14
|
```ruby
|
|
15
|
+
source 'https://rails-assets.org' do
|
|
16
|
+
gem 'rails-assets-growl', '~> 1.3.1'
|
|
17
|
+
end
|
|
18
|
+
|
|
15
19
|
gem "activeadmin_jobs"
|
|
16
20
|
```
|
|
17
21
|
|
|
@@ -20,7 +24,7 @@ bundle install
|
|
|
20
24
|
```
|
|
21
25
|
|
|
22
26
|
```bash
|
|
23
|
-
rails generate
|
|
27
|
+
rails generate activeadmin_jobs:install
|
|
24
28
|
```
|
|
25
29
|
|
|
26
30
|
If you use `AdminUser` class in `ActiveAdmin` you will need to add the following code:
|