gambiarra 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +16 -20
- data/lib/gambiarra/ui/views/install.rb +1 -1
- data/lib/gambiarra/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85fb3c2939728e7cc90ac84affa562710b8c862b5ebc13e336ce549f34c3a979
|
4
|
+
data.tar.gz: a9a3a5463950044551ae01c8e67cca125430780c8fefba68a162ac3b45bb0690
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9440bd2ea5c31fc9af375afd44d77a4baf9bd8750444d5b67811ac45b071b5604048736491837ec759b550d0f1fd6086d2541232f4bb4e1d60dcb5ea8ae1ec62
|
7
|
+
data.tar.gz: 16d08b5694c3c91cb26dc919a7e126928cad8f04cb73fc75b0dcd152e723f6b8b6153c66bba8037de71fb1e17ee46d234b20abea89fc10d31359948a633469e7
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,38 +1,34 @@
|
|
1
1
|
# Gambiarra
|
2
2
|
|
3
|
-
|
3
|
+
Gambiarra is an intuitive framework for CLI applications.
|
4
4
|
|
5
|
-
|
5
|
+
First of all, install it in your machine:
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
Add this line to your application's Gemfile:
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
gem 'gambiarra'
|
7
|
+
```shell
|
8
|
+
gem install 'gambiarra'
|
13
9
|
```
|
10
|
+
Then, on the terminal, go inside of your project, or create a new folder, `cd` into it and run:
|
14
11
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
Or install it yourself as:
|
12
|
+
```shell
|
13
|
+
gambiarra
|
14
|
+
```
|
20
15
|
|
21
|
-
|
16
|
+
Select `install`. You can also use it to create new `views`. That's it!
|
22
17
|
|
23
|
-
## Usage
|
24
18
|
|
25
|
-
|
19
|
+
You can see it working by running:
|
26
20
|
|
27
|
-
|
21
|
+
```
|
22
|
+
exe/your_application_name
|
23
|
+
```
|
28
24
|
|
29
|
-
|
25
|
+
Notice it will automatically get the application name by the folder name.
|
30
26
|
|
31
|
-
|
27
|
+
After that, add new views (with questions or not) and happy coding!
|
32
28
|
|
33
29
|
## Contributing
|
34
30
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
31
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/pedrozath/gambiarra. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
32
|
|
37
33
|
## License
|
38
34
|
|
data/lib/gambiarra/version.rb
CHANGED