git_agent 0.0.1 → 0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 768908461e4a78cb35911f5ffc66922cd9191877
4
- data.tar.gz: fb58ff6e9514210651bc61eb66a1ab15cf6cb4ab
3
+ metadata.gz: d1bcd658d1e6069a9e308e0486cc29b96fab346c
4
+ data.tar.gz: 4e1a9d8a07feca793154908d786a9b27493f89e2
5
5
  SHA512:
6
- metadata.gz: c8e692289f753553e6854f9b5dcc23b44c0814a6b0aeaf2290bf63932ce1cc00b050e8325f7e3c35ec94f0f7c45aba6c72cdc9423458862f9880c8d827b63a06
7
- data.tar.gz: 979066cbccdcd01f190e5633aeff6defb6bd699cde9b1d39ae6db8830c2b2a7b87f5cac7d0b5f05398d7b8d62604d85376770d66716d03f9978c4f806735f567
6
+ metadata.gz: 3b48df9f793b9e5f6ebf61e055d74c02b4a70e15ead8d22cdfc806a1920c42d343db40939c0d7828932d7dae80f7f8ed783a97f3e8e7f74fd2ae6d86f05dc06e
7
+ data.tar.gz: 19c3c9cd6a3121a3e22f8cb8a5299706885f84fcc1b7cc9de8e238680935659aad3a6f15b1d503723ca79ec9f2e95a4ab457c402171ef05886b46ee98f9d0846
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # GitAgent
2
2
 
3
- TODO: Write a gem description
3
+ Command line utility tool to minitor git repository. If it finds new commits, it will send you an email to notify the changes.
4
4
 
5
5
  ## Installation
6
6
 
@@ -18,7 +18,7 @@ Or install it yourself as:
18
18
 
19
19
  ## Usage
20
20
 
21
- TODO: Write usage instructions here
21
+ check_repo -t git@github.com:ungsophy/git_agent.git -s foo@gmail.com -p 123123 -r bar@gmail.com -h https://github.com/ungsophy/git_agent
22
22
 
23
23
  ## Contributing
24
24
 
data/bin/check_repo CHANGED
@@ -1,8 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- lib = File.expand_path('../../lib', __FILE__)
4
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
-
6
3
  require 'optparse'
7
4
  require 'ostruct'
8
5
  require 'git_agent'
@@ -1,3 +1,3 @@
1
1
  class GitAgent
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sophy Eung