agile-cli 0.0.1 → 0.0.2
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/.DS_Store +0 -0
- data/.gitignore +11 -0
- data/.localized +0 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +37 -0
- data/README.md +35 -0
- data/Rakefile +6 -0
- data/agile-cli.gemspec +20 -0
- data/bin/agile +5 -0
- data/bin/setup +8 -0
- data/lib/agile/commands/hello.rb +8 -0
- data/lib/agile/commands/version.rb +8 -0
- data/lib/agile/constants.rb +5 -0
- data/lib/agile.rb +9 -0
- data/spec/agile/cli_spec.rb +9 -0
- data/spec/spec_helper.rb +14 -0
- metadata +22 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92877bf8040ca943673a868c398931b926b863db84b53017c3ce3b471b09865d
|
4
|
+
data.tar.gz: '081969eb34b5380fac7222069011ebbb2656d1162ccc60eaadd41259d68407b4'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8714f40592861bdc5132a1b5ba15ca7b732849e5bccc08c041b9d168f325a17c72b213e60fdfa333ca288bccd425c93f1aaff721f0e70af00a82669c8dc29ea4
|
7
|
+
data.tar.gz: 531decb28b6672ee02f6302957958cca319fcda5a139dda81adb3bc33d812d1a05838b867f1cb13652901baa634600b075ef398f3556103c6587d69b03434e1d
|
data/.DS_Store
ADDED
Binary file
|
data/.gitignore
ADDED
data/.localized
ADDED
File without changes
|
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
agile-cli (0.0.2)
|
5
|
+
thor
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
diff-lcs (1.3)
|
11
|
+
rake (10.5.0)
|
12
|
+
rspec (3.8.0)
|
13
|
+
rspec-core (~> 3.8.0)
|
14
|
+
rspec-expectations (~> 3.8.0)
|
15
|
+
rspec-mocks (~> 3.8.0)
|
16
|
+
rspec-core (3.8.2)
|
17
|
+
rspec-support (~> 3.8.0)
|
18
|
+
rspec-expectations (3.8.4)
|
19
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
20
|
+
rspec-support (~> 3.8.0)
|
21
|
+
rspec-mocks (3.8.1)
|
22
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
23
|
+
rspec-support (~> 3.8.0)
|
24
|
+
rspec-support (3.8.2)
|
25
|
+
thor (0.20.3)
|
26
|
+
|
27
|
+
PLATFORMS
|
28
|
+
ruby
|
29
|
+
|
30
|
+
DEPENDENCIES
|
31
|
+
agile-cli!
|
32
|
+
bundler (~> 1.17)
|
33
|
+
rake (~> 10.0)
|
34
|
+
rspec (~> 3.0)
|
35
|
+
|
36
|
+
BUNDLED WITH
|
37
|
+
1.17.2
|
data/README.md
ADDED
@@ -0,0 +1,35 @@
|
|
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
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'agile-cli'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install agile-cli
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
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).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/agile-cli.
|
data/Rakefile
ADDED
data/agile-cli.gemspec
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "agile-cli"
|
5
|
+
spec.version = '0.0.2'
|
6
|
+
spec.authors = ["rubizza-camp"]
|
7
|
+
spec.licenses = ['MIT']
|
8
|
+
spec.summary = %q{Command line instrument for agile.}
|
9
|
+
spec.description = %q{Command line instrument for agile.}
|
10
|
+
spec.homepage = "https://github.com/rubizza-camp/AgileCli"
|
11
|
+
spec.files = `git ls-files`.split($\)
|
12
|
+
spec.require_paths = ['lib']
|
13
|
+
spec.executables = ['agile']
|
14
|
+
|
15
|
+
spec.add_dependency 'thor'
|
16
|
+
|
17
|
+
spec.add_development_dependency "bundler", "~> 1.17"
|
18
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
19
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
20
|
+
end
|
data/bin/agile
ADDED
data/bin/setup
ADDED
data/lib/agile.rb
ADDED
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
require "bundler/setup"
|
2
|
+
require "agile/cli"
|
3
|
+
|
4
|
+
RSpec.configure do |config|
|
5
|
+
# Enable flags like --only-failures and --next-failure
|
6
|
+
config.example_status_persistence_file_path = ".rspec_status"
|
7
|
+
|
8
|
+
# Disable RSpec exposing methods globally on `Module` and `main`
|
9
|
+
config.disable_monkey_patching!
|
10
|
+
|
11
|
+
config.expect_with :rspec do |c|
|
12
|
+
c.syntax = :expect
|
13
|
+
end
|
14
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- rubizza-camp
|
@@ -68,10 +68,29 @@ dependencies:
|
|
68
68
|
version: '3.0'
|
69
69
|
description: Command line instrument for agile.
|
70
70
|
email:
|
71
|
-
executables:
|
71
|
+
executables:
|
72
|
+
- agile
|
72
73
|
extensions: []
|
73
74
|
extra_rdoc_files: []
|
74
|
-
files:
|
75
|
+
files:
|
76
|
+
- ".DS_Store"
|
77
|
+
- ".gitignore"
|
78
|
+
- ".localized"
|
79
|
+
- ".rspec"
|
80
|
+
- ".travis.yml"
|
81
|
+
- Gemfile
|
82
|
+
- Gemfile.lock
|
83
|
+
- README.md
|
84
|
+
- Rakefile
|
85
|
+
- agile-cli.gemspec
|
86
|
+
- bin/agile
|
87
|
+
- bin/setup
|
88
|
+
- lib/agile.rb
|
89
|
+
- lib/agile/commands/hello.rb
|
90
|
+
- lib/agile/commands/version.rb
|
91
|
+
- lib/agile/constants.rb
|
92
|
+
- spec/agile/cli_spec.rb
|
93
|
+
- spec/spec_helper.rb
|
75
94
|
homepage: https://github.com/rubizza-camp/AgileCli
|
76
95
|
licenses:
|
77
96
|
- MIT
|