tacape 0.0.3 → 0.0.4

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/Readme.md CHANGED
@@ -3,9 +3,9 @@
3
3
  Tacape
4
4
  ======
5
5
 
6
- This is a work in progrees, I would wait until I have the testing suite implemented to publish this but time is slipping away from me, maybe you can help!
6
+ This is a **WORK IN PROGRESS**, I would wait until I have the testing suite implemented to publish this but time is slipping away from me, maybe you can help!
7
7
 
8
- Just fork [Tacape Tools]((https://github.com/lucasmartins/tacape-tools)), add your tool, and make a pull request.
8
+ Just fork [Tacape Tools](https://github.com/lucasmartins/tacape-tools), add your tool, and make a pull request.
9
9
 
10
10
  You can test your tools locally just throwing them at the `~/.tacape/tools` folder.
11
11
 
@@ -17,6 +17,47 @@ Have fun!
17
17
 
18
18
  This repo is used by [Tacape](https://github.com/lucasmartins/tacape)
19
19
 
20
+ ### Configuration
21
+ Each Tacape Tool have its own configuration file, they are JSON files inside `~/.tacape/config`.
22
+
23
+ Install
24
+ =======
25
+
26
+ As any other Gem:
27
+ `$ gem install tacape`
28
+
29
+ You may have to run a rehash for Rbenv:
30
+ `$ rbenv rehash`
31
+
32
+ Use
33
+ ===
34
+
35
+ Tacape is a CLI tool based on Thor, so just run `tacape` to see the commands available:
36
+
37
+ ```
38
+ $ tacape
39
+ This is Tacape, a command-line tool that gathers years of personal crafting, don't use it too seriously thou.
40
+ Commands:
41
+ tacape check # Checks for system dependencies
42
+ tacape dns # Tacape Tool for DNS things
43
+ tacape help [COMMAND] # Describe available commands or one specific command
44
+ tacape owngit # Tacape Tool for managing remote Bare Git repositories through SSH
45
+ tacape update # Updates the Tools local repository
46
+ tacape version # Shows version
47
+ ```
48
+
49
+ Contribute
50
+ ==========
51
+
52
+ Have any scripts laying around that you could be sharing?
53
+
54
+ Just fork [Tacape Tools](https://github.com/lucasmartins/tacape-tools), add your tool, and make a pull request.
55
+
56
+ Support
57
+ =======
58
+
59
+ This is an opensource project so don't expect premium support, but don't be shy, post any troubles you're having in the [Issues](https://github.com/lucasmartins/tacape/issues) page and we'll do what we can to help.
60
+
20
61
  License
21
62
  =======
22
63
 
@@ -68,7 +68,6 @@ module Tacape
68
68
  end
69
69
 
70
70
  def update_tools
71
- #Should the tools be updated at each command?
72
71
  Thread.new {
73
72
  `cd #{@current_os.tool_folder} && git pull`
74
73
  }
@@ -80,8 +79,6 @@ module Tacape
80
79
  end
81
80
  unless File.exists? @current_os.tool_folder
82
81
  `git clone git@bitbucket.org:lucasmartins/tacape-tools.git #{@current_os.tool_folder}`
83
- else
84
- update_tools
85
82
  end
86
83
  end
87
84
 
@@ -2,7 +2,7 @@ module Tacape
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- PATCH = 3
5
+ PATCH = 4
6
6
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tacape
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-06-12 00:00:00.000000000 Z
12
+ date: 2013-06-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport