Mange-git-remote-monitor 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.
- data/HISTORY.markdown +26 -0
- data/Rakefile +4 -1
- data/TODO +10 -9
- data/VERSION.yml +1 -1
- data/bin/git-remote-monitor +62 -12
- data/lib/git_remote_monitor.rb +6 -2
- data/lib/git_remote_monitor/git_wrapper.rb +32 -1
- data/lib/git_remote_monitor/monitor.rb +17 -7
- data/lib/git_remote_monitor/notifier.rb +11 -32
- data/lib/git_remote_monitor/notifiers.rb +52 -0
- data/lib/git_remote_monitor/notifiers/base.rb +38 -0
- data/lib/git_remote_monitor/notifiers/meow.rb +72 -0
- data/lib/git_remote_monitor/status.rb +58 -0
- data/spec/git_remote_monitor/git_wrapper_spec.rb +116 -14
- data/spec/git_remote_monitor/monitor_spec.rb +138 -0
- data/spec/git_remote_monitor/notifier_spec.rb +46 -0
- data/spec/git_remote_monitor/notifiers/base_spec.rb +49 -0
- data/spec/git_remote_monitor/notifiers/meow_spec.rb +113 -0
- data/spec/git_remote_monitor/notifiers_spec.rb +54 -0
- data/spec/git_remote_monitor/status_spec.rb +57 -0
- data/spec/git_remote_monitor_spec.rb +37 -0
- data/spec/spec.opts +3 -0
- data/spec/spec_helper.rb +28 -4
- metadata +18 -3
- data/HISTORY +0 -15
data/HISTORY
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
┌──────────────────────┐
|
2
|
-
│ Legend |
|
3
|
-
├──────────────────────┤
|
4
|
-
│ + = New feature |
|
5
|
-
| b = Fixed bug |
|
6
|
-
| * = General fix |
|
7
|
-
| - = Known regression |
|
8
|
-
└──────────────────────┘
|
9
|
-
|
10
|
-
VERSION 0.1
|
11
|
-
===========
|
12
|
-
+ Basic support for notifications
|
13
|
-
+ Basic fetch wrapper to git
|
14
|
-
+ Basic monitor, waiting 20 seconds between each fetch
|
15
|
-
+ Simple comparing remotes with local possible
|