dmp 0.1.2 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.coveralls.yml +1 -0
- data/.gitignore +85 -4
- data/.rubocop.yml +3 -0
- data/.travis.yml +21 -2
- data/Gemfile.lock +65 -3
- data/README.md +51 -10
- data/dmp.gemspec +6 -1
- data/lib/dmp/cli.rb +11 -10
- data/lib/dmp/version.rb +6 -6
- metadata +75 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 46a098dc9f8eb855a74af2e91abdf35b13885bf41be8ca89c5a94ec813878726
|
4
|
+
data.tar.gz: 4d5d03eedb5193dc8f6fe279b684cab8c51be07062028db3ce73679d57f3f337
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61892dda3dc33a8241225b9bb04753871c4947bc07b93724af38af01c0dd217775923de8dd8d0ef2c533894090b564fc55dac875c8356ccd09ef4ed839a4ecf5
|
7
|
+
data.tar.gz: be47c2b049fdbabfee69f2fc4d77918280917abd7a7c9f8e0cdcdbd4a3c40fd97e4d1f4134a727f6e7cb64eebf4f9cc3bc4a89bec1f5d8b8e23737864ed2c78c
|
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
service_name: travis-ci
|
data/.gitignore
CHANGED
@@ -1,8 +1,89 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
|
2
|
+
# Created by https://www.gitignore.io/api/sublimetext,ruby
|
3
|
+
|
4
|
+
### Ruby ###
|
5
|
+
*.gem
|
6
|
+
*.rbc
|
7
|
+
/.config
|
4
8
|
/coverage/
|
5
|
-
/
|
9
|
+
/InstalledFiles
|
6
10
|
/pkg/
|
7
11
|
/spec/reports/
|
12
|
+
/spec/examples.txt
|
13
|
+
/test/tmp/
|
14
|
+
/test/version_tmp/
|
8
15
|
/tmp/
|
16
|
+
|
17
|
+
# Used by dotenv library to load environment variables.
|
18
|
+
# .env
|
19
|
+
|
20
|
+
## Specific to RubyMotion:
|
21
|
+
.dat*
|
22
|
+
.repl_history
|
23
|
+
build/
|
24
|
+
*.bridgesupport
|
25
|
+
build-iPhoneOS/
|
26
|
+
build-iPhoneSimulator/
|
27
|
+
|
28
|
+
## Specific to RubyMotion (use of CocoaPods):
|
29
|
+
#
|
30
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
31
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
32
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
33
|
+
#
|
34
|
+
# vendor/Pods/
|
35
|
+
|
36
|
+
## Documentation cache and generated files:
|
37
|
+
/.yardoc/
|
38
|
+
/_yardoc/
|
39
|
+
/doc/
|
40
|
+
/rdoc/
|
41
|
+
|
42
|
+
## Environment normalization:
|
43
|
+
/.bundle/
|
44
|
+
/vendor/bundle
|
45
|
+
/lib/bundler/man/
|
46
|
+
|
47
|
+
# for a library or gem, you might want to ignore these files since the code is
|
48
|
+
# intended to run in multiple environments; otherwise, check them in:
|
49
|
+
# Gemfile.lock
|
50
|
+
# .ruby-version
|
51
|
+
# .ruby-gemset
|
52
|
+
|
53
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
54
|
+
.rvmrc
|
55
|
+
|
56
|
+
### SublimeText ###
|
57
|
+
# Cache files for Sublime Text
|
58
|
+
*.tmlanguage.cache
|
59
|
+
*.tmPreferences.cache
|
60
|
+
*.stTheme.cache
|
61
|
+
|
62
|
+
# Workspace files are user-specific
|
63
|
+
*.sublime-workspace
|
64
|
+
|
65
|
+
# Project files should be checked into the repository, unless a significant
|
66
|
+
# proportion of contributors will probably not be using Sublime Text
|
67
|
+
# *.sublime-project
|
68
|
+
|
69
|
+
# SFTP configuration file
|
70
|
+
sftp-config.json
|
71
|
+
|
72
|
+
# Package control specific files
|
73
|
+
Package Control.last-run
|
74
|
+
Package Control.ca-list
|
75
|
+
Package Control.ca-bundle
|
76
|
+
Package Control.system-ca-bundle
|
77
|
+
Package Control.cache/
|
78
|
+
Package Control.ca-certs/
|
79
|
+
Package Control.merged-ca-bundle
|
80
|
+
Package Control.user-ca-bundle
|
81
|
+
oscrypto-ca-bundle.crt
|
82
|
+
bh_unicode_properties.cache
|
83
|
+
|
84
|
+
# Sublime-github package stores a github token in this file
|
85
|
+
# https://packagecontrol.io/packages/sublime-github
|
86
|
+
GitHub.sublime-settings
|
87
|
+
|
88
|
+
|
89
|
+
# End of https://www.gitignore.io/api/sublimetext,ruby
|
data/.rubocop.yml
CHANGED
data/.travis.yml
CHANGED
@@ -1,7 +1,26 @@
|
|
1
|
-
---
|
2
1
|
sudo: false
|
3
2
|
language: ruby
|
4
3
|
cache: bundler
|
5
4
|
rvm:
|
6
|
-
|
5
|
+
- 2.5.1
|
7
6
|
before_install: gem install bundler -v 1.16.4
|
7
|
+
script:
|
8
|
+
- bundle exec rake test
|
9
|
+
- bundle exec cucumber features
|
10
|
+
- bundle exec dmp about
|
11
|
+
- bundle exec dmp gen 6 -c
|
12
|
+
deploy:
|
13
|
+
provider: rubygems
|
14
|
+
api_key:
|
15
|
+
secure: UxtyKAWhfNoVFF9Mf/LRs03uZTgeXP7i1/MOtk9BUIiX/4911l5xCJKPFxeLCK9LkcUQtc/i18YaOuFZTRxQw6Bab06HL6kcm9JRDrFbHNluWZ28r3uHaMXaUm8r1a6zSPKLNPpRRPKXBy+4cOAP/uLaJIXzCsCT/A+kdjGLyTbGYECeGv+jgRkzI99Wo746VYeK2vRJu5RrB2wV57CZFlQVdZ2T8BFO3Z2oG8I5o7IV4ZHK6HmowZmoqRq6Dp4YhnCIZQwtE80iwc1xNA23al5sli/7GNgyoGgCWonN7LfjInrJvSr+Cnroo72uDZs2ChiBlEqfG8leq/K0s1SQyuJXG4vY9FQMLWpnGro0T6n1eatwHw2vnpcoCC3EXfDYUR5C/eHuJ10R8zySeH1eTFG6a5Amu/ZA97UJIwCg5imbWa6wJnUZ+Zk1GB8Y0yUOMGymgmjoAnq8AIT89Js16UvY6zJP128L8ojNsYHXf+pxXj1bk81iaIUw42NjsFFbIF21uLJvsZg6Gd7lqyQcY0CrzqtC9CxCWsvJeXAado4PTA3YDeovZfGgpLHubYp1Ck0cIXVTyQw7mLYp+HoZpcUTH6eTfAbfdVivzCOkUe8bSrmg2LpBIA1zbLIPUtoCy0WrCa7952oa+6ofknbIMzpS7gFQ3F34vCQPwp4AORo=
|
16
|
+
gem: dmp
|
17
|
+
on:
|
18
|
+
tags: true
|
19
|
+
repo: franccesco/dmp
|
20
|
+
after_deploy:
|
21
|
+
- gem install dmp
|
22
|
+
- dmp gen 6 -c
|
23
|
+
- dmp about
|
24
|
+
notifications:
|
25
|
+
slack:
|
26
|
+
secure: eI+zyKfhWZ8nOzm+H5inaD1VoJVWWEqXHr2kK1T+sJdWL7Za9s+thi4VMsqTnqQSDfRoHk0ShOJxUK3qRgRs4eD+2k1xooJ4bAzrJso/y/pxWBAeoK87/tPk5tleE4XPUzX5oBnWQqITPfu+vOf1YU2F+BxvyUWQKjUCvdhD+nDsW+L0cP+VfnElcaaVoBK1dN5Is4fpbrga4U8OL9CwuB0zHBy5rUU+lO9cUr7Vz8B4mY3gIwMJCU51/qHZaPsKGOtpr7rAmMwUoERSVxREqmQXUy/43Um8UIcYiMxFXE+s381cND9iMmrXxZwaGX3FQ8eRQCRvkxFoMu56R4fupQkTe2QSpbgYM8Cfy6x8wc7th8DIF6Bd+6hWTy0l37IB/gVdk0ZvH8lq8T/NV85suqEGxegs/qxbijS5PgU3uOLoy7CGU/se9yew/Y/2wGBW6LHdPKlqZorlj+kxRbVsHKC4hwagzQL8H7p8BMnr7qxcqVhyP4e8DNScJXds++GN1BE8vjGx2wNjwxgpG7hQogx74/Y1DVzgnMu+x2k2I82QHdEUolFDArjAib453M56A1FZ+BKEF9GOOrwrdcdXcnpVayCP+5a7pHxAQENP/rWgnYiCnhOCVhBL1XjFvnG0RcjsOPUL9vzXHpScGq8lyI/MrtfTpRptojbd9+0JaUQ=
|
data/Gemfile.lock
CHANGED
@@ -1,37 +1,99 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
dmp (0.1.
|
4
|
+
dmp (0.1.5)
|
5
5
|
clipboard (~> 1.1)
|
6
6
|
colorize (~> 0.8)
|
7
|
-
thor (~> 0
|
7
|
+
thor (~> 0)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
12
|
ansi (1.5.0)
|
13
|
+
aruba (0.14.6)
|
14
|
+
childprocess (>= 0.6.3, < 0.10.0)
|
15
|
+
contracts (~> 0.9)
|
16
|
+
cucumber (>= 1.3.19)
|
17
|
+
ffi (~> 1.9.10)
|
18
|
+
rspec-expectations (>= 2.99)
|
19
|
+
thor (~> 0.19)
|
20
|
+
backports (3.11.4)
|
13
21
|
builder (3.2.3)
|
22
|
+
childprocess (0.9.0)
|
23
|
+
ffi (~> 1.0, >= 1.0.11)
|
14
24
|
clipboard (1.1.2)
|
15
25
|
colorize (0.8.1)
|
26
|
+
contracts (0.16.0)
|
27
|
+
coveralls (0.8.22)
|
28
|
+
json (>= 1.8, < 3)
|
29
|
+
simplecov (~> 0.16.1)
|
30
|
+
term-ansicolor (~> 1.3)
|
31
|
+
thor (~> 0.19.4)
|
32
|
+
tins (~> 1.6)
|
33
|
+
cucumber (3.1.2)
|
34
|
+
builder (>= 2.1.2)
|
35
|
+
cucumber-core (~> 3.2.0)
|
36
|
+
cucumber-expressions (~> 6.0.1)
|
37
|
+
cucumber-wire (~> 0.0.1)
|
38
|
+
diff-lcs (~> 1.3)
|
39
|
+
gherkin (~> 5.1.0)
|
40
|
+
multi_json (>= 1.7.5, < 2.0)
|
41
|
+
multi_test (>= 0.1.2)
|
42
|
+
cucumber-core (3.2.0)
|
43
|
+
backports (>= 3.8.0)
|
44
|
+
cucumber-tag_expressions (~> 1.1.0)
|
45
|
+
gherkin (>= 5.0.0)
|
46
|
+
cucumber-expressions (6.0.1)
|
47
|
+
cucumber-tag_expressions (1.1.1)
|
48
|
+
cucumber-wire (0.0.1)
|
49
|
+
diff-lcs (1.3)
|
50
|
+
docile (1.3.1)
|
51
|
+
ffi (1.9.25)
|
52
|
+
gherkin (5.1.0)
|
53
|
+
hirb (0.7.3)
|
54
|
+
json (2.1.0)
|
16
55
|
minitest (5.11.3)
|
17
56
|
minitest-reporters (1.3.4)
|
18
57
|
ansi
|
19
58
|
builder
|
20
59
|
minitest (>= 5.0)
|
21
60
|
ruby-progressbar
|
61
|
+
multi_json (1.13.1)
|
62
|
+
multi_test (0.1.2)
|
22
63
|
rake (10.5.0)
|
64
|
+
rspec-expectations (3.8.1)
|
65
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
66
|
+
rspec-support (~> 3.8.0)
|
67
|
+
rspec-support (3.8.0)
|
23
68
|
ruby-progressbar (1.10.0)
|
24
|
-
|
69
|
+
simplecov (0.16.1)
|
70
|
+
docile (~> 1.1)
|
71
|
+
json (>= 1.8, < 3)
|
72
|
+
simplecov-html (~> 0.10.0)
|
73
|
+
simplecov-console (0.4.2)
|
74
|
+
ansi
|
75
|
+
hirb
|
76
|
+
simplecov
|
77
|
+
simplecov-html (0.10.2)
|
78
|
+
term-ansicolor (1.6.0)
|
79
|
+
tins (~> 1.0)
|
80
|
+
thor (0.19.4)
|
81
|
+
tins (1.16.3)
|
25
82
|
|
26
83
|
PLATFORMS
|
27
84
|
ruby
|
28
85
|
|
29
86
|
DEPENDENCIES
|
87
|
+
aruba (~> 0.14)
|
30
88
|
bundler (~> 1.16)
|
89
|
+
coveralls (~> 0.8)
|
90
|
+
cucumber (~> 3.1)
|
31
91
|
dmp!
|
32
92
|
minitest (~> 5.0)
|
33
93
|
minitest-reporters (~> 1.3)
|
34
94
|
rake (~> 10.0)
|
95
|
+
simplecov (~> 0.16)
|
96
|
+
simplecov-console (~> 0)
|
35
97
|
|
36
98
|
BUNDLED WITH
|
37
99
|
1.16.4
|
data/README.md
CHANGED
@@ -1,8 +1,21 @@
|
|
1
1
|
# Dmp
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
2
|
+
[![Build Status](https://travis-ci.org/franccesco/dmp.svg?branch=master)](https://travis-ci.org/franccesco/dmp) [![Coverage Status](https://coveralls.io/repos/github/franccesco/dmp/badge.svg?branch=develop)](https://coveralls.io/github/franccesco/dmp?branch=develop) [![Gem Version](https://badge.fury.io/rb/dmp.svg)](https://badge.fury.io/rb/dmp)
|
3
|
+
|
4
|
+
**DMP** (or _Dice My Pass_) is a simple passphrase generator that gives you a passphrase of the desired length using [EFF's long wordlist](http://eff.org/dice). **This little tool was only created for a blog post on how to create a Ruby gem at codingdose.info (WIP) and should be NOT used for production**, can't say much if you like it though.
|
5
|
+
|
6
|
+
```bash
|
7
|
+
$ dmp about
|
8
|
+
____ __ __ ____
|
9
|
+
| _ \ | \/ | | _ \
|
10
|
+
| | | | | |\/| | | |_) |
|
11
|
+
| |_| | | | | | | __/
|
12
|
+
|____/ |_| |_| |_|
|
13
|
+
|
14
|
+
version: 0.1.3
|
15
|
+
author: @__franccesco
|
16
|
+
homepage: https://github.com/franccesco/dmp
|
17
|
+
learn more: https://codingdose.info
|
18
|
+
```
|
6
19
|
|
7
20
|
## Installation
|
8
21
|
|
@@ -22,17 +35,45 @@ Or install it yourself as:
|
|
22
35
|
|
23
36
|
## Usage
|
24
37
|
|
25
|
-
|
38
|
+
### You can use it as a library in your code.
|
39
|
+
```ruby
|
40
|
+
irb(main):001:0> require 'dmp'
|
41
|
+
=> true
|
42
|
+
irb(main):002:0> Dmp.gen_passphrase(4)
|
43
|
+
=> ["discount", "stove", "rubbing", "underage"]
|
44
|
+
```
|
26
45
|
|
27
|
-
|
46
|
+
### Or you can use the CLI if you want to execute it in the terminal.
|
28
47
|
|
29
|
-
|
48
|
+
**Generate a passphrase**
|
49
|
+
```
|
50
|
+
$ dmp
|
51
|
+
- Passphrase: bagpipe sprinkled unscented trespass splice outlet headlamp
|
52
|
+
```
|
30
53
|
|
31
|
-
|
54
|
+
**Generate a passphrase and copy it to the clipboard**
|
55
|
+
```
|
56
|
+
- Passphrase: reconvene glimmer treading swerve zebra visibly veal
|
57
|
+
- Copied to clipboard.
|
58
|
+
```
|
59
|
+
|
60
|
+
**Generate a passphrase of your desired length**
|
61
|
+
```
|
62
|
+
$ dmp gen 5
|
63
|
+
- Passphrase: tavern silly afar luncheon cement
|
64
|
+
```
|
65
|
+
|
66
|
+
**Help**
|
67
|
+
```
|
68
|
+
Commands:
|
69
|
+
dmp about # Displays version number and information
|
70
|
+
dmp gen [length] # Generate a passphrase of the desired length.
|
71
|
+
dmp help [COMMAND] # Describe available commands or one specific command
|
72
|
+
```
|
32
73
|
|
33
74
|
## Contributing
|
34
75
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
76
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/franccesco/dmp. 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
77
|
|
37
78
|
## License
|
38
79
|
|
@@ -40,4 +81,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
40
81
|
|
41
82
|
## Code of Conduct
|
42
83
|
|
43
|
-
Everyone interacting in the Dmp project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
84
|
+
Everyone interacting in the Dmp project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/franccesco/dmp/blob/master/CODE_OF_CONDUCT.md).
|
data/dmp.gemspec
CHANGED
@@ -23,11 +23,16 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
24
|
spec.require_paths = ["lib"]
|
25
25
|
|
26
|
-
spec.add_dependency 'thor', '~> 0
|
26
|
+
spec.add_dependency 'thor', '~> 0'
|
27
27
|
spec.add_dependency 'colorize', '~> 0.8'
|
28
28
|
spec.add_dependency 'clipboard', '~> 1.1'
|
29
|
+
spec.add_development_dependency 'simplecov', '~> 0.16'
|
30
|
+
spec.add_development_dependency 'simplecov-console', '~> 0'
|
31
|
+
spec.add_development_dependency 'coveralls', '~> 0.8'
|
29
32
|
spec.add_development_dependency "bundler", "~> 1.16"
|
30
33
|
spec.add_development_dependency "rake", "~> 10.0"
|
31
34
|
spec.add_development_dependency "minitest", "~> 5.0"
|
35
|
+
spec.add_development_dependency "cucumber", "~> 3.1"
|
36
|
+
spec.add_development_dependency "aruba", "~> 0.14"
|
32
37
|
spec.add_development_dependency "minitest-reporters", "~> 1.3"
|
33
38
|
end
|
data/lib/dmp/cli.rb
CHANGED
@@ -17,9 +17,6 @@ module Dmp
|
|
17
17
|
passphrase = Dmp.gen_passphrase(pass_length.to_i)
|
18
18
|
|
19
19
|
# if flag clipboard is 'true' then copy passphrase to clipboard
|
20
|
-
if options[:clipboard]
|
21
|
-
Clipboard.copy(passphrase.join(' '))
|
22
|
-
end
|
23
20
|
|
24
21
|
# colors array will be used to pick a randomized sample
|
25
22
|
# removing black cause it looks ugly in terminals
|
@@ -30,18 +27,22 @@ module Dmp
|
|
30
27
|
rand_color = colors.sample
|
31
28
|
phrase.colorize(rand_color)
|
32
29
|
end
|
33
|
-
|
30
|
+
puts '- Passphrase: '.bold + passphrase.join(' ')
|
31
|
+
if options[:clipboard]
|
32
|
+
Clipboard.copy(passphrase.join(' '))
|
33
|
+
puts '- Copied to clipboard.'.bold.green
|
34
|
+
end
|
34
35
|
end
|
35
36
|
|
36
37
|
desc 'about', 'Displays version number and information'
|
37
38
|
def about
|
38
39
|
# Displays banner, version number and author
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
40
|
+
puts Dmp::BANNER.bold.red
|
41
|
+
puts 'version: '.bold + Dmp::VERSION.green
|
42
|
+
puts 'author: '.bold + '@__franccesco'.green
|
43
|
+
puts 'homepage: '.bold + 'https://github.com/franccesco/dmp'.green
|
44
|
+
puts 'learn more: '.bold + 'https://codingdose.info'.green
|
45
|
+
puts # extra line, somehow I like them.
|
45
46
|
end
|
46
47
|
end
|
47
48
|
end
|
data/lib/dmp/version.rb
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
module Dmp
|
2
|
-
VERSION = "0.1.
|
2
|
+
VERSION = "0.1.5"
|
3
3
|
BANNER = '''
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
4
|
+
____ __ __ ____
|
5
|
+
| _ \ | \/ | | _ \
|
6
|
+
| | | | | |\/| | | |_) |
|
7
|
+
| |_| | | | | | | __/
|
8
|
+
|____/ |_| |_| |_|
|
9
9
|
'''
|
10
10
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dmp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Franccesco Orozco
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-09-
|
11
|
+
date: 2018-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0
|
19
|
+
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '0
|
26
|
+
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: colorize
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,6 +52,48 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '1.1'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: simplecov
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.16'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0.16'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: simplecov-console
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: coveralls
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0.8'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0.8'
|
55
97
|
- !ruby/object:Gem::Dependency
|
56
98
|
name: bundler
|
57
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,6 +136,34 @@ dependencies:
|
|
94
136
|
- - "~>"
|
95
137
|
- !ruby/object:Gem::Version
|
96
138
|
version: '5.0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: cucumber
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '3.1'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '3.1'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: aruba
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0.14'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0.14'
|
97
167
|
- !ruby/object:Gem::Dependency
|
98
168
|
name: minitest-reporters
|
99
169
|
requirement: !ruby/object:Gem::Requirement
|
@@ -116,6 +186,7 @@ executables:
|
|
116
186
|
extensions: []
|
117
187
|
extra_rdoc_files: []
|
118
188
|
files:
|
189
|
+
- ".coveralls.yml"
|
119
190
|
- ".gitignore"
|
120
191
|
- ".rubocop.yml"
|
121
192
|
- ".travis.yml"
|