agile-cli 0.0.2 → 0.0.3
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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +9 -16
- data/agile-cli.gemspec +3 -2
- data/bin/agile +1 -1
- data/lib/agile/constants.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 37b3ab4c045b2d98c057f7cef17e0a0c9385b66ab08574c881ce4b6dc3edf7f6
|
|
4
|
+
data.tar.gz: c359bb55a4f493eb7758cc4f9ee8c3a721004b73fa409533bfe9a54ee88ee077
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ea2ebb6bcb07303276150d6acaed4dd994de4e351e6623a4980d87527b20c520b3edca0763d6782f7d31a432b90b41c927ccd2a3bca01a201802bc851c40afa
|
|
7
|
+
data.tar.gz: a31f277fe544e85e5ed2847a06424aa7bbc3138a5ac7b9c55b7241c00df2c9683a6efc1c73a13fd076a98c42ee9b5741ee3a4d89c28725855f7de0a6bc294276
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
# Agile::Cli
|
|
2
|
-
|
|
3
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/agile/cli`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
6
|
-
|
|
7
1
|
## Installation
|
|
8
2
|
|
|
9
3
|
Add this line to your application's Gemfile:
|
|
@@ -20,16 +14,15 @@ Or install it yourself as:
|
|
|
20
14
|
|
|
21
15
|
$ gem install agile-cli
|
|
22
16
|
|
|
23
|
-
##
|
|
24
|
-
|
|
25
|
-
TODO: Write usage instructions here
|
|
17
|
+
## Getting Started
|
|
26
18
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
19
|
+
### Installation
|
|
20
|
+
```
|
|
21
|
+
$ gem install agile-cli
|
|
32
22
|
|
|
33
|
-
|
|
23
|
+
```
|
|
24
|
+
### Using
|
|
25
|
+
```
|
|
26
|
+
$ agile
|
|
34
27
|
|
|
35
|
-
|
|
28
|
+
```
|
data/agile-cli.gemspec
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
|
|
2
|
+
require_relative 'lib/agile/constants'
|
|
2
3
|
|
|
3
4
|
Gem::Specification.new do |spec|
|
|
4
5
|
spec.name = "agile-cli"
|
|
5
|
-
spec.version =
|
|
6
|
+
spec.version = Agile::VERSION
|
|
6
7
|
spec.authors = ["rubizza-camp"]
|
|
7
8
|
spec.licenses = ['MIT']
|
|
8
9
|
spec.summary = %q{Command line instrument for agile.}
|
|
9
|
-
spec.description = %q{Command line instrument for agile.}
|
|
10
|
+
spec.description = %q{Command line instrument for agile. Our git repo https://github.com/rubizza-camp/AgileCli}
|
|
10
11
|
spec.homepage = "https://github.com/rubizza-camp/AgileCli"
|
|
11
12
|
spec.files = `git ls-files`.split($\)
|
|
12
13
|
spec.require_paths = ['lib']
|
data/bin/agile
CHANGED
data/lib/agile/constants.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: agile-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- rubizza-camp
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-08-
|
|
11
|
+
date: 2019-08-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -66,7 +66,7 @@ dependencies:
|
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '3.0'
|
|
69
|
-
description: Command line instrument for agile.
|
|
69
|
+
description: Command line instrument for agile. Our git repo https://github.com/rubizza-camp/AgileCli
|
|
70
70
|
email:
|
|
71
71
|
executables:
|
|
72
72
|
- agile
|