gemsurance_slack 1.0.1 → 1.0.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 +8 -0
- data/README.md +8 -0
- data/gemsurance_slack.gemspec +1 -1
- data/lib/gemsurance_slack/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4cd0036572851448a0b718bb14d2ab13d13e0279
|
4
|
+
data.tar.gz: 57d3b215e98b361338319d57b1740f1e67a2a28a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81770feb99b7d5b6c97cac7671adc3f7a9603a2ec66bc503031f19a3a4e587f9821cffd1d4149fda13130ba4bfd6f724d56ab09f01a491269f24602615bd11c8
|
7
|
+
data.tar.gz: 027f9ca02c312166a37a5f05cef4a1974a741c0809de1602c7c0ab1edf6449e3298a6fc0ec30f11337b656a49e7e309f742168068efa45397bff9760856eb75c
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
|
5
5
|
This project adheres to [Keep a Changelog](http://keepachangelog.com/) and [Semantic Versioning](http://semver.org/).
|
6
6
|
|
7
|
+
## [1.0.2] - 2015-03-20
|
8
|
+
# Added
|
9
|
+
- Bumped Gemsurance to 0.6.0 (Support bundled gems in deployment mode)
|
10
|
+
|
11
|
+
## [1.0.1] - 2015-03-20
|
12
|
+
# Added
|
13
|
+
- Bumped Gemsurance to 0.5.0 (Public access to gem infos)
|
14
|
+
|
7
15
|
## [1.0.0] - 2015-03-20
|
8
16
|
# Added
|
9
17
|
- Initial version
|
data/README.md
CHANGED
@@ -67,6 +67,14 @@ If you're using the scheduling gem [Clockwork](https://github.com/tomykaira/cloc
|
|
67
67
|
every(1.day, 'Check gems status', :at => '00:30') { GemsuranceSlack.check_and_notify }
|
68
68
|
```
|
69
69
|
|
70
|
+
## Cron setup
|
71
|
+
|
72
|
+
For a daily check at midnight by using Cron, edit your crontab file and add this line :
|
73
|
+
|
74
|
+
```bash
|
75
|
+
00 00 * * * cd /Users/you/projects/myrailsapp && /usr/local/bin/rake RAILS_ENV=production gemsurance_slack:check
|
76
|
+
```
|
77
|
+
|
70
78
|
## Contributing
|
71
79
|
|
72
80
|
1. Fork it ( https://github.com/gatemedia/gemsurance_slack/fork )
|
data/gemsurance_slack.gemspec
CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
|
-
spec.add_dependency("gemsurance", "~> 0.
|
21
|
+
spec.add_dependency("gemsurance", "~> 0.6.0")
|
22
22
|
spec.add_dependency("slack-notifier", "~> 1.1.0")
|
23
23
|
|
24
24
|
spec.add_development_dependency "bundler", "~> 1.7"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gemsurance_slack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Colon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gemsurance
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.6.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
26
|
+
version: 0.6.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: slack-notifier
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|