agile-cli 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 92877bf8040ca943673a868c398931b926b863db84b53017c3ce3b471b09865d
4
- data.tar.gz: '081969eb34b5380fac7222069011ebbb2656d1162ccc60eaadd41259d68407b4'
3
+ metadata.gz: 37b3ab4c045b2d98c057f7cef17e0a0c9385b66ab08574c881ce4b6dc3edf7f6
4
+ data.tar.gz: c359bb55a4f493eb7758cc4f9ee8c3a721004b73fa409533bfe9a54ee88ee077
5
5
  SHA512:
6
- metadata.gz: 8714f40592861bdc5132a1b5ba15ca7b732849e5bccc08c041b9d168f325a17c72b213e60fdfa333ca288bccd425c93f1aaff721f0e70af00a82669c8dc29ea4
7
- data.tar.gz: 531decb28b6672ee02f6302957958cca319fcda5a139dda81adb3bc33d812d1a05838b867f1cb13652901baa634600b075ef398f3556103c6587d69b03434e1d
6
+ metadata.gz: 2ea2ebb6bcb07303276150d6acaed4dd994de4e351e6623a4980d87527b20c520b3edca0763d6782f7d31a432b90b41c927ccd2a3bca01a201802bc851c40afa
7
+ data.tar.gz: a31f277fe544e85e5ed2847a06424aa7bbc3138a5ac7b9c55b7241c00df2c9683a6efc1c73a13fd076a98c42ee9b5741ee3a4d89c28725855f7de0a6bc294276
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- agile-cli (0.0.2)
4
+ agile-cli (0.0.3)
5
5
  thor
6
6
 
7
7
  GEM
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
- ## Usage
24
-
25
- TODO: Write usage instructions here
17
+ ## Getting Started
26
18
 
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
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
- ## Contributing
23
+ ```
24
+ ### Using
25
+ ```
26
+ $ agile
34
27
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/agile-cli.
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 = '0.0.2'
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
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require_relative '../lib/agile'
3
+ require_relative "../lib/agile"
4
4
 
5
5
  Agile::CLI.start
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Agile
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.3"
5
5
  end
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.2
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-06 00:00:00.000000000 Z
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