akamairb 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +23 -9
  3. data/lib/akamairb/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e10ba567e1374f6435f3db072e46dfa9a9f5c25d
4
- data.tar.gz: 3de24ff9e0947772ffd6a883f703eb66ccaa938c
3
+ metadata.gz: ec49a24fb1c5eb6ece112a0ae56003c8deecdcf9
4
+ data.tar.gz: b8e169ff7491a45faf9090128d351aa879d9ad93
5
5
  SHA512:
6
- metadata.gz: 4de1861229eb773109711b294c2eedd8bd73c1530e1f094fecc06ef754f794123e564108e5364556cf58eaa28f7bfe30117d26753b5be602a6081d7e2b769bc1
7
- data.tar.gz: 7990fae04f391f0579ba3214190d4c3d693be6f1e786f8eaa9937390111fa2eca267cb71ec422d3a115c792f3255fef6de27c69468b7a501e23d7278394bf557
6
+ metadata.gz: d565d01070bd82e69d732993968127fae5ba62191d346acad99e8f9fbed0c996a5d8ae766da40652e08fb78b99057923522d338161f0c7f57437ea80719a08ae
7
+ data.tar.gz: 68063e3d70cf349109ea26312a537f3fcbe80d0ec2db2042755daf7893483c3d5ff9f0dca1c6e2af73b587e893be2aafed7277f5eb89998f32a21fc27a9a1f1c
data/README.md CHANGED
@@ -1,24 +1,33 @@
1
1
  # Akamairb
2
2
 
3
- TODO: Write a gem description
3
+ Simple command-line tool for managing Akamai cache purges.
4
4
 
5
5
  ## Installation
6
6
 
7
- Add this line to your application's Gemfile:
7
+ Install it yourself as:
8
8
 
9
- gem 'akamairb'
9
+ $ gem install akamairb
10
10
 
11
- And then execute:
11
+ ## Usage
12
12
 
13
- $ bundle
13
+ ### Setup:
14
14
 
15
- Or install it yourself as:
15
+ Akamairb needs a special file `.akamai.yml` in your home directory.
16
16
 
17
- $ gem install akamairb
17
+ The format of the `.akamai.yml` file is pretty straighforward
18
18
 
19
- ## Usage
19
+ user: YOUR_USER
20
+ pass: YOUR_PASSWORD
21
+
22
+ ### Commands:
23
+
24
+ * akamai help [COMMAND] # Describe available commands or one specific command
25
+ * akamai purge URLS # purge urls from Akamai
26
+ * akamai show ID # show progress of a purge
20
27
 
21
- TODO: Write usage instructions here
28
+ ### Params:
29
+
30
+ * --debug # Show raw response from akamai
22
31
 
23
32
  ## Contributing
24
33
 
@@ -27,3 +36,8 @@ TODO: Write usage instructions here
27
36
  3. Commit your changes (`git commit -am 'Add some feature'`)
28
37
  4. Push to the branch (`git push origin my-new-feature`)
29
38
  5. Create new Pull Request
39
+
40
+
41
+ ## THANKS
42
+
43
+ This tool is shamelessly inspired in Juan Lupion's [tacoma](https://github.com/pantulis/tacoma)
@@ -1,3 +1,3 @@
1
1
  module Akamai
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: akamairb
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
  - Manuel Albarrán