-
Notifications
You must be signed in to change notification settings - Fork 3
/
assisted_workflow.gemspec
92 lines (77 loc) · 4.89 KB
/
assisted_workflow.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'assisted_workflow/version'
Gem::Specification.new do |gem|
gem.name = "assisted_workflow"
gem.version = AssistedWorkflow::VERSION
gem.authors = ["Flavio Granero"]
gem.email = ["[email protected]"]
gem.summary = %q{AW is a CLI tool to automate software development workflows based on github pull requests}
gem.homepage = "https://github.com/flaviogranero/assisted_workflow"
gem.license = "MIT"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.executables = %w( aw )
gem.add_development_dependency "rake"
gem.add_development_dependency "rr"
gem.add_development_dependency "fakefs"
gem.add_dependency "thor", "~> 0.18.1"
gem.add_dependency "pivotal-tracker", "~> 0.5.12"
gem.add_dependency "jiralicious", "~> 0.4.0"
gem.add_dependency "octokit", "~> 2.0"
gem.add_dependency "hashie", "~> 2.0.5"
gem.description = <<desc
`aw` is a command line tool to automate software development workflows based on github pull requests.
desc
gem.post_install_message = <<-message
`..::/++ooooooooo+/::--`
`-:://:---....```......--::///:-.`
`..-:::---.``` ```...----::-..`
`.:///-````` .-:++::-`
`///::` :/+oo:.` -:/+/-
..-//. ....` `.-/+/`
:+/.` .-://.
``/+: `.//-``
`::-.` `.---` ``` .-://`
`++` `:sso++/+hmy-.` .//-.`
`.-//` -++---:/+o/` ` ``:+:
.---- .:::-.````` .--::. :+/`
-::.. .:::-` `.-++-` :+/.`
-/:`` -++-.` `:/::- -/:-.
:/:` -oo-.` ``.--.` ``.-. -:-..
:/:` -++-.` ``.+ooo+/:+so. -:-..
:/:` -++:-` `.+o+++++oso. -:-..
-/:.` .::/+- `//:--//++/` -/:..
.---- `.+s/.` `-:. :+/.`
`.//` -:+ss:-. ``.:/oso++-` :+:
`//.`` .-:+++///++++///++++/:--`` ``:/:
.-::- ``--:::+ss+/:::----.`` `----.
`/+/` ../s+-.``` -//.``
.--++- .::.`.:/:-. .-+ys.
``:hds++:::/:` .++-` .:/oo+//::-
``+oo////+yds+/-.-//. .--/++++/:-``:/:``
`.oso--://sho+////+/-` ```...::/++++/::. -::--
``.--:/:--:+/.`.:/shyss+:-..``````````.---::/+oso++/..-:://. .++.`
`:/:``:++++/-- -:/++++ooooooooooooooooo++:-.`` `-:/+/` --::-
`--`` `sdy/:. -:::-. ````````` -:/++-` `/o/`
`-. .-+o/`` .--//. .:///:.` -::..`
``...` `:///- `.-++- `.:++::- .--:-.
.......:ss-`` `++:.` `.-+o/:- ./+-
`.::.`.:/.`` `.:o+.`` ``./++o+-`` `//-``
`+o. `-:+++//:::/++++:-.` -----
`++` ``--------::---.` `.-::
`//. `.....`` ``-++
`.//-...----------------..............----------------------------..---/oo
AW, thanks for installing Assisted Workflow!
============================================
Use the provided `aw` command-line tool to start a task creating a feature branch, submit a pull request with the changes and finish a task, keeping your repository clean. For more details, search for Inaka Workflow description.
Now, go to your project folder and start using it with:
$ aw setup
Cheers,
Flavio
--------------------------------------------------------------------------------
message
end