verbsify 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +53 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +127 -0
- data/Guardfile +70 -0
- data/LICENSE +21 -0
- data/README.md +17 -0
- data/Rakefile +6 -0
- data/bin/verbsify +4 -0
- data/dev.Dockerfile +10 -0
- data/dev.env +0 -0
- data/docker-compose.yml +31 -0
- data/lib/verbsify.rb +2 -0
- data/lib/verbsify/builder.rb +39 -0
- data/lib/verbsify/version.rb +3 -0
- data/spec/spec_helper.rb +2 -0
- data/spec/verbsify_spec.rb +0 -0
- data/verbsify.gemspec +32 -0
- metadata +193 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: eda9b6a2094079481eca3abd8270200de9d93962
|
4
|
+
data.tar.gz: 8ddbab2f8c6567c0b7beea37b5d6364f567911c0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9be72866b86a6763d01e36d084df9b5868bf83ef8b88e67c21cf2e03436a5566f218db1bf59be2cc663f60ff1241fe053ffc930a293068f6ce285a57694b2f72
|
7
|
+
data.tar.gz: 0d497fb0a6bf789b32362d992b9aa9e70d56cf68d001e07124da393ce6873a089feba9799765b507e0c9223ad028265501d9ec119cf40d2eca8795d0859314c8
|
data/.gitignore
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
/.config
|
4
|
+
/coverage/
|
5
|
+
/InstalledFiles
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/spec/examples.txt
|
9
|
+
/test/tmp/
|
10
|
+
/test/version_tmp/
|
11
|
+
/tmp/
|
12
|
+
|
13
|
+
.swp
|
14
|
+
*.swp
|
15
|
+
|
16
|
+
# Used by dotenv library to load environment variables.
|
17
|
+
# .env
|
18
|
+
|
19
|
+
## Specific to RubyMotion:
|
20
|
+
.dat*
|
21
|
+
.repl_history
|
22
|
+
build/
|
23
|
+
*.bridgesupport
|
24
|
+
build-iPhoneOS/
|
25
|
+
build-iPhoneSimulator/
|
26
|
+
|
27
|
+
## Specific to RubyMotion (use of CocoaPods):
|
28
|
+
#
|
29
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
30
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
31
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
32
|
+
#
|
33
|
+
# vendor/Pods/
|
34
|
+
|
35
|
+
## Documentation cache and generated files:
|
36
|
+
/.yardoc/
|
37
|
+
/_yardoc/
|
38
|
+
/doc/
|
39
|
+
/rdoc/
|
40
|
+
|
41
|
+
## Environment normalization:
|
42
|
+
/.bundle/
|
43
|
+
/vendor/bundle
|
44
|
+
/lib/bundler/man/
|
45
|
+
|
46
|
+
# for a library or gem, you might want to ignore these files since the code is
|
47
|
+
# intended to run in multiple environments; otherwise, check them in:
|
48
|
+
# Gemfile.lock
|
49
|
+
# .ruby-version
|
50
|
+
# .ruby-gemset
|
51
|
+
|
52
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
53
|
+
.rvmrc
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
4
|
+
|
5
|
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
|
6
|
+
|
7
|
+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
8
|
+
|
9
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
10
|
+
|
11
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
12
|
+
|
13
|
+
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,127 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
verbsify (0.0.1)
|
5
|
+
thor (= 0.19.1)
|
6
|
+
verbs (= 2.1.4)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
activesupport (5.0.0.1)
|
12
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
|
+
i18n (~> 0.7)
|
14
|
+
minitest (~> 5.1)
|
15
|
+
tzinfo (~> 1.1)
|
16
|
+
ast (2.3.0)
|
17
|
+
axiom-types (0.1.1)
|
18
|
+
descendants_tracker (~> 0.0.4)
|
19
|
+
ice_nine (~> 0.11.0)
|
20
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
21
|
+
codeclimate-engine-rb (0.3.1)
|
22
|
+
virtus (~> 1.0)
|
23
|
+
coderay (1.1.1)
|
24
|
+
coercible (1.0.0)
|
25
|
+
descendants_tracker (~> 0.0.1)
|
26
|
+
concurrent-ruby (1.0.2)
|
27
|
+
descendants_tracker (0.0.4)
|
28
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
29
|
+
diff-lcs (1.2.5)
|
30
|
+
equalizer (0.0.11)
|
31
|
+
ffi (1.9.14)
|
32
|
+
formatador (0.2.5)
|
33
|
+
guard (2.14.0)
|
34
|
+
formatador (>= 0.2.4)
|
35
|
+
listen (>= 2.7, < 4.0)
|
36
|
+
lumberjack (~> 1.0)
|
37
|
+
nenv (~> 0.1)
|
38
|
+
notiffany (~> 0.0)
|
39
|
+
pry (>= 0.9.12)
|
40
|
+
shellany (~> 0.0)
|
41
|
+
thor (>= 0.18.1)
|
42
|
+
guard-compat (1.2.1)
|
43
|
+
guard-rspec (4.7.3)
|
44
|
+
guard (~> 2.1)
|
45
|
+
guard-compat (~> 1.1)
|
46
|
+
rspec (>= 2.99.0, < 4.0)
|
47
|
+
i18n (0.7.0)
|
48
|
+
ice_nine (0.11.2)
|
49
|
+
listen (3.1.5)
|
50
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
51
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
52
|
+
ruby_dep (~> 1.2)
|
53
|
+
lumberjack (1.0.10)
|
54
|
+
method_source (0.8.2)
|
55
|
+
minitest (5.9.0)
|
56
|
+
nenv (0.3.0)
|
57
|
+
notiffany (0.1.1)
|
58
|
+
nenv (~> 0.1)
|
59
|
+
shellany (~> 0.0)
|
60
|
+
parser (2.3.1.4)
|
61
|
+
ast (~> 2.2)
|
62
|
+
powerpack (0.1.1)
|
63
|
+
pry (0.10.4)
|
64
|
+
coderay (~> 1.1.0)
|
65
|
+
method_source (~> 0.8.1)
|
66
|
+
slop (~> 3.4)
|
67
|
+
rainbow (2.1.0)
|
68
|
+
rake (11.3.0)
|
69
|
+
rb-fsevent (0.9.7)
|
70
|
+
rb-inotify (0.9.7)
|
71
|
+
ffi (>= 0.5.0)
|
72
|
+
reek (4.4.2)
|
73
|
+
codeclimate-engine-rb (~> 0.3.1)
|
74
|
+
parser (~> 2.3.1, >= 2.3.1.2)
|
75
|
+
rainbow (~> 2.0)
|
76
|
+
rspec (3.5.0)
|
77
|
+
rspec-core (~> 3.5.0)
|
78
|
+
rspec-expectations (~> 3.5.0)
|
79
|
+
rspec-mocks (~> 3.5.0)
|
80
|
+
rspec-core (3.5.3)
|
81
|
+
rspec-support (~> 3.5.0)
|
82
|
+
rspec-expectations (3.5.0)
|
83
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
84
|
+
rspec-support (~> 3.5.0)
|
85
|
+
rspec-mocks (3.5.0)
|
86
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
87
|
+
rspec-support (~> 3.5.0)
|
88
|
+
rspec-support (3.5.0)
|
89
|
+
rubocop (0.43.0)
|
90
|
+
parser (>= 2.3.1.1, < 3.0)
|
91
|
+
powerpack (~> 0.1)
|
92
|
+
rainbow (>= 1.99.1, < 3.0)
|
93
|
+
ruby-progressbar (~> 1.7)
|
94
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
95
|
+
ruby-progressbar (1.8.1)
|
96
|
+
ruby_dep (1.4.0)
|
97
|
+
shellany (0.0.1)
|
98
|
+
slop (3.6.0)
|
99
|
+
thor (0.19.1)
|
100
|
+
thread_safe (0.3.5)
|
101
|
+
tzinfo (1.2.2)
|
102
|
+
thread_safe (~> 0.1)
|
103
|
+
unicode-display_width (1.1.1)
|
104
|
+
verbs (2.1.4)
|
105
|
+
activesupport (>= 2.3.4)
|
106
|
+
i18n
|
107
|
+
virtus (1.0.5)
|
108
|
+
axiom-types (~> 0.1)
|
109
|
+
coercible (~> 1.0)
|
110
|
+
descendants_tracker (~> 0.0, >= 0.0.3)
|
111
|
+
equalizer (~> 0.0, >= 0.0.9)
|
112
|
+
|
113
|
+
PLATFORMS
|
114
|
+
ruby
|
115
|
+
|
116
|
+
DEPENDENCIES
|
117
|
+
bundler (= 1.13.1)
|
118
|
+
guard-rspec (= 4.7.3)
|
119
|
+
pry (= 0.10.4)
|
120
|
+
rake (= 11.3.0)
|
121
|
+
reek (= 4.4.2)
|
122
|
+
rspec (= 3.5.0)
|
123
|
+
rubocop (= 0.43.0)
|
124
|
+
verbsify!
|
125
|
+
|
126
|
+
BUNDLED WITH
|
127
|
+
1.13.1
|
data/Guardfile
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
# A sample Guardfile
|
2
|
+
# More info at https://github.com/guard/guard#readme
|
3
|
+
|
4
|
+
## Uncomment and set this to only include directories you want to watch
|
5
|
+
# directories %w(app lib config test spec features) \
|
6
|
+
# .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}
|
7
|
+
|
8
|
+
## Note: if you are using the `directories` clause above and you are not
|
9
|
+
## watching the project directory ('.'), then you will want to move
|
10
|
+
## the Guardfile to a watched dir and symlink it back, e.g.
|
11
|
+
#
|
12
|
+
# $ mkdir config
|
13
|
+
# $ mv Guardfile config/
|
14
|
+
# $ ln -s config/Guardfile .
|
15
|
+
#
|
16
|
+
# and, you'll have to watch "config/Guardfile" instead of "Guardfile"
|
17
|
+
|
18
|
+
# Note: The cmd option is now required due to the increasing number of ways
|
19
|
+
# rspec may be run, below are examples of the most common uses.
|
20
|
+
# * bundler: 'bundle exec rspec'
|
21
|
+
# * bundler binstubs: 'bin/rspec'
|
22
|
+
# * spring: 'bin/rspec' (This will use spring if running and you have
|
23
|
+
# installed the spring binstubs per the docs)
|
24
|
+
# * zeus: 'zeus rspec' (requires the server to be started separately)
|
25
|
+
# * 'just' rspec: 'rspec'
|
26
|
+
|
27
|
+
guard :rspec, cmd: "bundle exec rspec" do
|
28
|
+
require "guard/rspec/dsl"
|
29
|
+
dsl = Guard::RSpec::Dsl.new(self)
|
30
|
+
|
31
|
+
# Feel free to open issues for suggestions and improvements
|
32
|
+
|
33
|
+
# RSpec files
|
34
|
+
rspec = dsl.rspec
|
35
|
+
watch(rspec.spec_helper) { rspec.spec_dir }
|
36
|
+
watch(rspec.spec_support) { rspec.spec_dir }
|
37
|
+
watch(rspec.spec_files)
|
38
|
+
|
39
|
+
# Ruby files
|
40
|
+
ruby = dsl.ruby
|
41
|
+
dsl.watch_spec_files_for(ruby.lib_files)
|
42
|
+
|
43
|
+
# Rails files
|
44
|
+
rails = dsl.rails(view_extensions: %w(erb haml slim))
|
45
|
+
dsl.watch_spec_files_for(rails.app_files)
|
46
|
+
dsl.watch_spec_files_for(rails.views)
|
47
|
+
|
48
|
+
watch(rails.controllers) do |m|
|
49
|
+
[
|
50
|
+
rspec.spec.("routing/#{m[1]}_routing"),
|
51
|
+
rspec.spec.("controllers/#{m[1]}_controller"),
|
52
|
+
rspec.spec.("acceptance/#{m[1]}")
|
53
|
+
]
|
54
|
+
end
|
55
|
+
|
56
|
+
# Rails config changes
|
57
|
+
watch(rails.spec_helper) { rspec.spec_dir }
|
58
|
+
watch(rails.routes) { "#{rspec.spec_dir}/routing" }
|
59
|
+
watch(rails.app_controller) { "#{rspec.spec_dir}/controllers" }
|
60
|
+
|
61
|
+
# Capybara features specs
|
62
|
+
watch(rails.view_dirs) { |m| rspec.spec.("features/#{m[1]}") }
|
63
|
+
watch(rails.layouts) { |m| rspec.spec.("features/#{m[1]}") }
|
64
|
+
|
65
|
+
# Turnip features and steps
|
66
|
+
watch(%r{^spec/acceptance/(.+)\.feature$})
|
67
|
+
watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) do |m|
|
68
|
+
Dir[File.join("**/#{m[1]}.feature")][0] || "spec/acceptance"
|
69
|
+
end
|
70
|
+
end
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2016 Luis Ignacio
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# verbsify
|
2
|
+
Verbs command-line app
|
3
|
+
|
4
|
+
# v0.0.1
|
5
|
+
It just literally makes verbs gem a command-line app.
|
6
|
+
|
7
|
+
# TODO
|
8
|
+
- [ ] Adds specs.
|
9
|
+
- [ ] Adds Code Climate.
|
10
|
+
- [ ] adds CC badges.
|
11
|
+
|
12
|
+
# Future features.
|
13
|
+
- [ ] Detects noun phrase.
|
14
|
+
- [ ] Detects adjective phrase.
|
15
|
+
- [ ] Detects preposition phrase.
|
16
|
+
- [ ] Detects prepositional phrase.
|
17
|
+
|
data/Rakefile
ADDED
data/bin/verbsify
ADDED
data/dev.Dockerfile
ADDED
data/dev.env
ADDED
File without changes
|
data/docker-compose.yml
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
version: '2'
|
2
|
+
|
3
|
+
volumes:
|
4
|
+
gems:
|
5
|
+
driver: local
|
6
|
+
|
7
|
+
services:
|
8
|
+
test: &app
|
9
|
+
image: thelastinuit/verbsify:development
|
10
|
+
command: bundle exec guard start --no-bundler-warning --no-interactions
|
11
|
+
build:
|
12
|
+
context: .
|
13
|
+
dockerfile: dev.Dockerfile
|
14
|
+
working_dir: /usr/src/app
|
15
|
+
volumes:
|
16
|
+
- .:/usr/src/app
|
17
|
+
- gems:/usr/local/bundle
|
18
|
+
stdin_open: true
|
19
|
+
tty: true
|
20
|
+
environment: &app_environment
|
21
|
+
RAILS_ENV: test
|
22
|
+
RACK_ENV: test
|
23
|
+
|
24
|
+
app:
|
25
|
+
<<: *app
|
26
|
+
command: bash
|
27
|
+
environment:
|
28
|
+
RAILS_ENV: development
|
29
|
+
RACK_ENV: development
|
30
|
+
env_file:
|
31
|
+
- dev.env
|
data/lib/verbsify.rb
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
require 'thor'
|
2
|
+
require 'verbs'
|
3
|
+
require 'pry'
|
4
|
+
|
5
|
+
module Verbsify
|
6
|
+
class Builder < Thor
|
7
|
+
include Thor::Actions
|
8
|
+
|
9
|
+
def initialize(args = [], local_options = {}, config = {})
|
10
|
+
super
|
11
|
+
end
|
12
|
+
|
13
|
+
desc 'conjugate VERB', 'Conjugates most common english verbs for all persons, tenses, standard aspects, and modern moods (with active diathesis). Standard and exceptional spelling rules are obeyed.'
|
14
|
+
method_option :tense, aliases: "-t", desc: "One of past, present, or future. Defaults to present."
|
15
|
+
method_option :person, aliases: "-p", desc: "One of first, second, or third. Defaults to third."
|
16
|
+
method_option :plurality, aliases: "-pl", desc: "Either singular or plural. Defaults to singular."
|
17
|
+
method_option :aspect, aliases: "-a", desc: "One of habitual, perfect, perfective, progressive, or prospective. Defaults to habitual."
|
18
|
+
method_option :mood, aliases: "-m", desc: "One of indicative, imperative, or subjunctive. Defaults to indicative."
|
19
|
+
method_option :subject, aliases: "-s", desc: "Set this to a string to prepend the conjugated verb with it. When set to true, a standard personal pronoun will be used."
|
20
|
+
def conjugate(*phrase)
|
21
|
+
if phrase.count > 1
|
22
|
+
puts "#{phrase.join(" ").verb.conjugate tense: options["tense"] && options["tense"].to_sym,
|
23
|
+
person: options["person"] && options["person"].to_sym,
|
24
|
+
plurality: options["plurality"] && options["plurality"].to_sym,
|
25
|
+
aspect: options["aspect"] && options["aspect"].to_sym,
|
26
|
+
mood: options["mood"] && options["mood"].to_sym,
|
27
|
+
subject: options["subject"]}"
|
28
|
+
else
|
29
|
+
puts "#{Verbs::Conjugator.conjugate phrase.first.to_sym,
|
30
|
+
tense: options["tense"] && options["tense"].to_sym,
|
31
|
+
person: options["person"] && options["person"].to_sym,
|
32
|
+
plurality: options["plurality"] && options["plurality"].to_sym,
|
33
|
+
aspect: options["aspect"] && options["aspect"].to_sym,
|
34
|
+
mood: options["mood"] && options["mood"].to_sym,
|
35
|
+
subject: options["subject"]}"
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
data/spec/spec_helper.rb
ADDED
File without changes
|
data/verbsify.gemspec
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'verbsify/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = 'verbsify'
|
8
|
+
s.version = Verbsify::VERSION
|
9
|
+
s.date = '2016-09-24'
|
10
|
+
s.summary = "Verbs command-line app"
|
11
|
+
s.description = "This is basically Verbs as a command-line app"
|
12
|
+
s.authors = ["Andy Rossmeissl", "Luis Ignacio"]
|
13
|
+
s.email = ['andy@rossmeissl.net','email@luisignac.io']
|
14
|
+
s.homepage = 'https://github.com/thelastinuit/verbsify'
|
15
|
+
s.license = 'MIT'
|
16
|
+
s.files = `git ls-files -z`.split("\x0")
|
17
|
+
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
|
21
|
+
s.add_development_dependency 'bundler', '1.13.1'
|
22
|
+
s.add_development_dependency 'rake', '11.3.0'
|
23
|
+
s.add_development_dependency 'rspec', '3.5.0'
|
24
|
+
s.add_development_dependency 'pry', '0.10.4'
|
25
|
+
s.add_development_dependency 'rubocop', '0.43.0'
|
26
|
+
s.add_development_dependency 'reek', '4.4.2'
|
27
|
+
s.add_development_dependency 'guard-rspec', '4.7.3'
|
28
|
+
|
29
|
+
|
30
|
+
s.add_dependency 'verbs', '2.1.4'
|
31
|
+
s.add_dependency 'thor', '0.19.1'
|
32
|
+
end
|
metadata
ADDED
@@ -0,0 +1,193 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: verbsify
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Andy Rossmeissl
|
8
|
+
- Luis Ignacio
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2016-09-24 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - '='
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 1.13.1
|
21
|
+
type: :development
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - '='
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 1.13.1
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: rake
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - '='
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 11.3.0
|
35
|
+
type: :development
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - '='
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: 11.3.0
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: rspec
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - '='
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: 3.5.0
|
49
|
+
type: :development
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - '='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 3.5.0
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: pry
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - '='
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: 0.10.4
|
63
|
+
type: :development
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - '='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: 0.10.4
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: rubocop
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - '='
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: 0.43.0
|
77
|
+
type: :development
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - '='
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: 0.43.0
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: reek
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - '='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: 4.4.2
|
91
|
+
type: :development
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - '='
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: 4.4.2
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: guard-rspec
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - '='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: 4.7.3
|
105
|
+
type: :development
|
106
|
+
prerelease: false
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - '='
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: 4.7.3
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
name: verbs
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - '='
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: 2.1.4
|
119
|
+
type: :runtime
|
120
|
+
prerelease: false
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - '='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: 2.1.4
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: thor
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - '='
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: 0.19.1
|
133
|
+
type: :runtime
|
134
|
+
prerelease: false
|
135
|
+
version_requirements: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - '='
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: 0.19.1
|
140
|
+
description: This is basically Verbs as a command-line app
|
141
|
+
email:
|
142
|
+
- andy@rossmeissl.net
|
143
|
+
- email@luisignac.io
|
144
|
+
executables:
|
145
|
+
- verbsify
|
146
|
+
extensions: []
|
147
|
+
extra_rdoc_files: []
|
148
|
+
files:
|
149
|
+
- ".gitignore"
|
150
|
+
- CODE_OF_CONDUCT.md
|
151
|
+
- Gemfile
|
152
|
+
- Gemfile.lock
|
153
|
+
- Guardfile
|
154
|
+
- LICENSE
|
155
|
+
- README.md
|
156
|
+
- Rakefile
|
157
|
+
- bin/verbsify
|
158
|
+
- dev.Dockerfile
|
159
|
+
- dev.env
|
160
|
+
- docker-compose.yml
|
161
|
+
- lib/verbsify.rb
|
162
|
+
- lib/verbsify/builder.rb
|
163
|
+
- lib/verbsify/version.rb
|
164
|
+
- spec/spec_helper.rb
|
165
|
+
- spec/verbsify_spec.rb
|
166
|
+
- verbsify.gemspec
|
167
|
+
homepage: https://github.com/thelastinuit/verbsify
|
168
|
+
licenses:
|
169
|
+
- MIT
|
170
|
+
metadata: {}
|
171
|
+
post_install_message:
|
172
|
+
rdoc_options: []
|
173
|
+
require_paths:
|
174
|
+
- lib
|
175
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
176
|
+
requirements:
|
177
|
+
- - ">="
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: '0'
|
180
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
181
|
+
requirements:
|
182
|
+
- - ">="
|
183
|
+
- !ruby/object:Gem::Version
|
184
|
+
version: '0'
|
185
|
+
requirements: []
|
186
|
+
rubyforge_project:
|
187
|
+
rubygems_version: 2.6.6
|
188
|
+
signing_key:
|
189
|
+
specification_version: 4
|
190
|
+
summary: Verbs command-line app
|
191
|
+
test_files:
|
192
|
+
- spec/spec_helper.rb
|
193
|
+
- spec/verbsify_spec.rb
|