activeadmin_jobs 0.5.0 → 0.5.1
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 +6 -0
- data/Gemfile.lock +1 -1
- data/app/assets/javascripts/activeadmin_jobs/growl_setup.js +3 -1
- data/lib/activeadmin_jobs/version.rb +1 -1
- 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: cd5d5b5c81bebf2daa2def1b80b4b55210829912
|
|
4
|
+
data.tar.gz: 4c02f014d52093b175a1806c9b2c90456aa90551
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d4c00f776e3e3916bd62a92edd95f9499eb7b0b530fc6d4cfaa7455989d270db5e002730868840394f13f4a7e6ff89159fed3179b839cf898acead09e45db84
|
|
7
|
+
data.tar.gz: 8a227a9e54c256c82cd02e68204d9e24e51f728d01fbb6cae384441e75df6af12a9c7449e5f14bf0a0091cdf0783fd4e4b1b6603a0a9011f72c7999754668863
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
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.5.1
|
|
6
|
+
|
|
7
|
+
##### Fixed
|
|
8
|
+
|
|
9
|
+
- Demodulize job_class attribute to get the right path in js file too.
|
|
10
|
+
|
|
5
11
|
### v0.5.0
|
|
6
12
|
|
|
7
13
|
##### Added
|
data/Gemfile.lock
CHANGED
|
@@ -24,7 +24,9 @@ JobNotifier.onNotify = function(result) {
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
function camelToDash(str) {
|
|
27
|
-
|
|
27
|
+
var parts = str.split('::');
|
|
28
|
+
str = parts[parts.length - 1].str.replace(/\W+/g, '_');
|
|
29
|
+
return str.replace(/([a-z\d])([A-Z])/g, '$1_$2').toLowerCase();
|
|
28
30
|
}
|
|
29
31
|
|
|
30
32
|
function getTranslations() {
|