jiraquest 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +52 -0
- data/.rspec +3 -0
- data/.rubocop.yml +19 -0
- data/.rubocop_todo.yml +8 -0
- data/.rubosync.yml +2 -0
- data/.travis.yml +27 -0
- data/CODE_OF_CONDUCT.md +46 -0
- data/CONTRIBUTING.md +50 -0
- data/Gemfile +9 -0
- data/LICENSE +165 -0
- data/README.md +51 -0
- data/Rakefile +17 -0
- data/assets/fonts/big.flf +2204 -0
- data/bin/jiraquest +4 -0
- data/jiraquest.gemspec +35 -0
- data/lib/jiraquest.rb +12 -0
- data/lib/jiraquest/distractions/activities.rb +161 -0
- data/lib/jiraquest/distractions/distractions.rb +4 -0
- data/lib/jiraquest/distractions/notifications.rb +55 -0
- data/lib/jiraquest/quests/button.rb +38 -0
- data/lib/jiraquest/quests/quests.rb +33 -0
- data/lib/jiraquest/quests/setup.rb +28 -0
- data/lib/jiraquest/version.rb +5 -0
- data/lib/utils/assetloader.rb +7 -0
- data/lib/utils/date/date.rb +28 -0
- data/lib/utils/game/achievements.rb +37 -0
- data/lib/utils/game/game.rb +6 -0
- data/lib/utils/game/login.rb +86 -0
- data/lib/utils/game/morale.rb +35 -0
- data/lib/utils/game/score.rb +53 -0
- data/lib/utils/prompts/figlet.rb +30 -0
- data/lib/utils/prompts/prompts.rb +6 -0
- data/lib/utils/prompts/reporter.rb +37 -0
- data/lib/utils/prompts/system.rb +65 -0
- data/lib/utils/prompts/terminal.rb +70 -0
- data/lib/utils/user/user.rb +35 -0
- data/lib/utils/utils.rb +7 -0
- metadata +208 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 79b097323138b9295f94527e5f623ea1821efa388475c1406dc6ae2aa03d0d0d
|
4
|
+
data.tar.gz: b7a4078e97a6dcd7e8e5c645d57bac311a44fb8b000685d979fe7606d540348e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 57909ebcd1a115bf24c3788641e3c209097099b886dcf9eff36203fedfdfff954c1b5c659c47b1bdc7601aeba64c4ef155fc396b137d133623f5b28835e46af9
|
7
|
+
data.tar.gz: 989b4d25f00047d57addb2569abe5102c549611804b370da273349d3ea5b56d8500319c59dfcd7ca1fb8978e24ae6636cfbff2286c8728edd5e57847d988c078
|
data/.gitignore
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
data.yml
|
2
|
+
.DS_Store
|
3
|
+
*.gem
|
4
|
+
*.rbc
|
5
|
+
/.config
|
6
|
+
/coverage/
|
7
|
+
/InstalledFiles
|
8
|
+
/pkg/
|
9
|
+
/spec/reports/
|
10
|
+
/spec/examples.txt
|
11
|
+
/test/tmp/
|
12
|
+
/test/version_tmp/
|
13
|
+
/tmp/
|
14
|
+
|
15
|
+
# Used by dotenv library to load environment variables.
|
16
|
+
# .env
|
17
|
+
|
18
|
+
## Specific to RubyMotion:
|
19
|
+
.dat*
|
20
|
+
.repl_history
|
21
|
+
build/
|
22
|
+
*.bridgesupport
|
23
|
+
build-iPhoneOS/
|
24
|
+
build-iPhoneSimulator/
|
25
|
+
|
26
|
+
## Specific to RubyMotion (use of CocoaPods):
|
27
|
+
#
|
28
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
29
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
30
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
31
|
+
#
|
32
|
+
# vendor/Pods/
|
33
|
+
|
34
|
+
## Documentation cache and generated files:
|
35
|
+
/.yardoc/
|
36
|
+
/_yardoc/
|
37
|
+
/doc/
|
38
|
+
/rdoc/
|
39
|
+
|
40
|
+
## Environment normalization:
|
41
|
+
/.bundle/
|
42
|
+
/vendor/bundle
|
43
|
+
/lib/bundler/man/
|
44
|
+
|
45
|
+
# for a library or gem, you might want to ignore these files since the code is
|
46
|
+
# intended to run in multiple environments; otherwise, check them in:
|
47
|
+
Gemfile.lock
|
48
|
+
.ruby-version
|
49
|
+
.ruby-gemset
|
50
|
+
|
51
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
52
|
+
.rvmrc
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
###########################
|
2
|
+
# Configuration for rubocop
|
3
|
+
# in .rubocop.yml
|
4
|
+
|
5
|
+
inherit_from:
|
6
|
+
- .rubocop_todo.yml
|
7
|
+
|
8
|
+
##############
|
9
|
+
# Project specific overrides here, example:
|
10
|
+
# Metrics/BlockLength:
|
11
|
+
# Exclude:
|
12
|
+
# - 'tasks/the_huge_task.rake'
|
13
|
+
AllCops:
|
14
|
+
TargetRubyVersion: 2.3
|
15
|
+
Exclude:
|
16
|
+
- 'test/**/*'
|
17
|
+
Naming/UncommunicativeMethodParamName:
|
18
|
+
Enabled: false
|
19
|
+
|
data/.rubocop_todo.yml
ADDED
data/.rubosync.yml
ADDED
data/.travis.yml
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
sudo: false
|
2
|
+
language: ruby
|
3
|
+
cache: bundler
|
4
|
+
rvm:
|
5
|
+
- 2.3.0
|
6
|
+
- 2.3.3
|
7
|
+
- 2.4.1
|
8
|
+
- 2.5.1
|
9
|
+
before_install: gem install bundler
|
10
|
+
before_script:
|
11
|
+
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
12
|
+
- chmod +x ./cc-test-reporter
|
13
|
+
- "./cc-test-reporter before-build"
|
14
|
+
env:
|
15
|
+
global:
|
16
|
+
- CC_TEST_REPORTER_ID=1958f9211b28c82d766f2b1feb8b37f56276f12d257f823953544055956aeda6
|
17
|
+
script:
|
18
|
+
- bundle exec rake test
|
19
|
+
after_script:
|
20
|
+
- "./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT"
|
21
|
+
deploy:
|
22
|
+
provider: rubygems
|
23
|
+
api_key:
|
24
|
+
secure: AT+dGBYhed2PtL9QrxPEcfdiFUbQNhVB6QsaSox8jKdVZuSHKkUphkHAKgYyFYmrxQ32WfDWucot6/yxS21TE4M1ByWAicIhuzpnRewkEijy+UU3AmcQqzYolgMm4/HovwERs0ErOtr1zQ+rws5udmGh1VrZ8e28AFnJPGlX3DQUjRT44f5QebFmAmotIci9zjQSSEnbK0vU0GOIVmHy9wd1y4OMHyvqwy3R5pWVf7+SLuo8IgVXwxjHP4QhnoHxiYGjUVJgoiVI7rgL1rgDHedDOF75+WbjLDLMF7sWLanGST28GRoqkyAIfhSpsagwG91OmtwdmfUlVJWV7EwWmOTOrFW5b92VeHB2MN2DMlXK1IYZeFPbXPj3MnLYEuJDYTEztMMQoY+MriDqTtNrqbtRyqIXKzFC8MRT/lFjWskFt+mW3hOLz33DXleP7RMP4k661YhX4yQM6lCkPP1u8UEgu16abGSlV+IDtZGL+dgpnU2WYOI+6qJ1jtWO3zVZjrwBl6M7f0PalR4vbz4DrxCHbmNEGWan6K4jZAFvxPzYV/lQZTKNwOks6IWG6B+3SfvcpIMEporAxKdpMqfp8M5H7pRMh4nRsJDEeft6Oa+j4BScWceQ2XNDabXmmBUySw/P54Qxz2hGSIxheVOSI171yeNwmaNieiuEX87kFaE=
|
25
|
+
gem: jiraquest
|
26
|
+
on:
|
27
|
+
repo: tcob/jiraquest
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
6
|
+
|
7
|
+
## Our Standards
|
8
|
+
|
9
|
+
Examples of behavior that contributes to creating a positive environment include:
|
10
|
+
|
11
|
+
* Using welcoming and inclusive language
|
12
|
+
* Being respectful of differing viewpoints and experiences
|
13
|
+
* Gracefully accepting constructive criticism
|
14
|
+
* Focusing on what is best for the community
|
15
|
+
* Showing empathy towards other community members
|
16
|
+
|
17
|
+
Examples of unacceptable behavior by participants include:
|
18
|
+
|
19
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
|
20
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
21
|
+
* Public or private harassment
|
22
|
+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
|
23
|
+
* Other conduct which could reasonably be considered inappropriate in a professional setting
|
24
|
+
|
25
|
+
## Our Responsibilities
|
26
|
+
|
27
|
+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
|
28
|
+
|
29
|
+
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, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
|
30
|
+
|
31
|
+
## Scope
|
32
|
+
|
33
|
+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
|
34
|
+
|
35
|
+
## Enforcement
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at briantcob@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
|
38
|
+
|
39
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
|
40
|
+
|
41
|
+
## Attribution
|
42
|
+
|
43
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
|
44
|
+
|
45
|
+
[homepage]: http://contributor-covenant.org
|
46
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
# Contributing
|
2
|
+
|
3
|
+
Thanks for your interest in contributing!
|
4
|
+
|
5
|
+
## Report an Error or Bug
|
6
|
+
|
7
|
+
If you run into an error or bug with the project:
|
8
|
+
|
9
|
+
* Open an Issue at https://github.com/tcob/jiraQUEST/issues
|
10
|
+
* Include *reproduction steps* that someone else can follow to recreate the bug or error on their own.
|
11
|
+
* Provide version and environment details or have them available if someone asks.
|
12
|
+
|
13
|
+
## Project Setup
|
14
|
+
|
15
|
+
If you want to run the project locally:
|
16
|
+
|
17
|
+
* [Fork the project](https://guides.github.com/activities/forking/#fork)
|
18
|
+
|
19
|
+
Then in your terminal:
|
20
|
+
* `cd path/to/your/fork`
|
21
|
+
* `bundle install`
|
22
|
+
* `rake test`
|
23
|
+
* `rake run`
|
24
|
+
|
25
|
+
And you should be ready to go!
|
26
|
+
|
27
|
+
## Contribute Code
|
28
|
+
|
29
|
+
Code contributions of just about any size are acceptable!
|
30
|
+
|
31
|
+
To contribute code:
|
32
|
+
|
33
|
+
* [Set up the project](#project-setup).
|
34
|
+
* Make changes to the source code, including documentation the changes might need.
|
35
|
+
* Write tests that verify that your contribution works as expected.
|
36
|
+
* Write clear, concise commit messages using [conventional-changelog format](https://github.com/conventional-changelog/conventional-changelog-angular/blob/master/convention.md).
|
37
|
+
|
38
|
+
If it's necessary to bump the version, you should do the following:
|
39
|
+
|
40
|
+
* edit the version in `lib/jiraquest/version.rb`
|
41
|
+
* `bundle install`
|
42
|
+
|
43
|
+
Once you've filed the PR:
|
44
|
+
|
45
|
+
* (Usually) all checks should pass (Travis, Codeclimate).
|
46
|
+
* Someone will use GitHub's review feature to review your PR.
|
47
|
+
|
48
|
+
That's it! Happy jiraing
|
49
|
+
|
50
|
+
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,165 @@
|
|
1
|
+
GNU LESSER GENERAL PUBLIC LICENSE
|
2
|
+
Version 3, 29 June 2007
|
3
|
+
|
4
|
+
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
5
|
+
Everyone is permitted to copy and distribute verbatim copies
|
6
|
+
of this license document, but changing it is not allowed.
|
7
|
+
|
8
|
+
|
9
|
+
This version of the GNU Lesser General Public License incorporates
|
10
|
+
the terms and conditions of version 3 of the GNU General Public
|
11
|
+
License, supplemented by the additional permissions listed below.
|
12
|
+
|
13
|
+
0. Additional Definitions.
|
14
|
+
|
15
|
+
As used herein, "this License" refers to version 3 of the GNU Lesser
|
16
|
+
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
17
|
+
General Public License.
|
18
|
+
|
19
|
+
"The Library" refers to a covered work governed by this License,
|
20
|
+
other than an Application or a Combined Work as defined below.
|
21
|
+
|
22
|
+
An "Application" is any work that makes use of an interface provided
|
23
|
+
by the Library, but which is not otherwise based on the Library.
|
24
|
+
Defining a subclass of a class defined by the Library is deemed a mode
|
25
|
+
of using an interface provided by the Library.
|
26
|
+
|
27
|
+
A "Combined Work" is a work produced by combining or linking an
|
28
|
+
Application with the Library. The particular version of the Library
|
29
|
+
with which the Combined Work was made is also called the "Linked
|
30
|
+
Version".
|
31
|
+
|
32
|
+
The "Minimal Corresponding Source" for a Combined Work means the
|
33
|
+
Corresponding Source for the Combined Work, excluding any source code
|
34
|
+
for portions of the Combined Work that, considered in isolation, are
|
35
|
+
based on the Application, and not on the Linked Version.
|
36
|
+
|
37
|
+
The "Corresponding Application Code" for a Combined Work means the
|
38
|
+
object code and/or source code for the Application, including any data
|
39
|
+
and utility programs needed for reproducing the Combined Work from the
|
40
|
+
Application, but excluding the System Libraries of the Combined Work.
|
41
|
+
|
42
|
+
1. Exception to Section 3 of the GNU GPL.
|
43
|
+
|
44
|
+
You may convey a covered work under sections 3 and 4 of this License
|
45
|
+
without being bound by section 3 of the GNU GPL.
|
46
|
+
|
47
|
+
2. Conveying Modified Versions.
|
48
|
+
|
49
|
+
If you modify a copy of the Library, and, in your modifications, a
|
50
|
+
facility refers to a function or data to be supplied by an Application
|
51
|
+
that uses the facility (other than as an argument passed when the
|
52
|
+
facility is invoked), then you may convey a copy of the modified
|
53
|
+
version:
|
54
|
+
|
55
|
+
a) under this License, provided that you make a good faith effort to
|
56
|
+
ensure that, in the event an Application does not supply the
|
57
|
+
function or data, the facility still operates, and performs
|
58
|
+
whatever part of its purpose remains meaningful, or
|
59
|
+
|
60
|
+
b) under the GNU GPL, with none of the additional permissions of
|
61
|
+
this License applicable to that copy.
|
62
|
+
|
63
|
+
3. Object Code Incorporating Material from Library Header Files.
|
64
|
+
|
65
|
+
The object code form of an Application may incorporate material from
|
66
|
+
a header file that is part of the Library. You may convey such object
|
67
|
+
code under terms of your choice, provided that, if the incorporated
|
68
|
+
material is not limited to numerical parameters, data structure
|
69
|
+
layouts and accessors, or small macros, inline functions and templates
|
70
|
+
(ten or fewer lines in length), you do both of the following:
|
71
|
+
|
72
|
+
a) Give prominent notice with each copy of the object code that the
|
73
|
+
Library is used in it and that the Library and its use are
|
74
|
+
covered by this License.
|
75
|
+
|
76
|
+
b) Accompany the object code with a copy of the GNU GPL and this license
|
77
|
+
document.
|
78
|
+
|
79
|
+
4. Combined Works.
|
80
|
+
|
81
|
+
You may convey a Combined Work under terms of your choice that,
|
82
|
+
taken together, effectively do not restrict modification of the
|
83
|
+
portions of the Library contained in the Combined Work and reverse
|
84
|
+
engineering for debugging such modifications, if you also do each of
|
85
|
+
the following:
|
86
|
+
|
87
|
+
a) Give prominent notice with each copy of the Combined Work that
|
88
|
+
the Library is used in it and that the Library and its use are
|
89
|
+
covered by this License.
|
90
|
+
|
91
|
+
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
92
|
+
document.
|
93
|
+
|
94
|
+
c) For a Combined Work that displays copyright notices during
|
95
|
+
execution, include the copyright notice for the Library among
|
96
|
+
these notices, as well as a reference directing the user to the
|
97
|
+
copies of the GNU GPL and this license document.
|
98
|
+
|
99
|
+
d) Do one of the following:
|
100
|
+
|
101
|
+
0) Convey the Minimal Corresponding Source under the terms of this
|
102
|
+
License, and the Corresponding Application Code in a form
|
103
|
+
suitable for, and under terms that permit, the user to
|
104
|
+
recombine or relink the Application with a modified version of
|
105
|
+
the Linked Version to produce a modified Combined Work, in the
|
106
|
+
manner specified by section 6 of the GNU GPL for conveying
|
107
|
+
Corresponding Source.
|
108
|
+
|
109
|
+
1) Use a suitable shared library mechanism for linking with the
|
110
|
+
Library. A suitable mechanism is one that (a) uses at run time
|
111
|
+
a copy of the Library already present on the user's computer
|
112
|
+
system, and (b) will operate properly with a modified version
|
113
|
+
of the Library that is interface-compatible with the Linked
|
114
|
+
Version.
|
115
|
+
|
116
|
+
e) Provide Installation Information, but only if you would otherwise
|
117
|
+
be required to provide such information under section 6 of the
|
118
|
+
GNU GPL, and only to the extent that such information is
|
119
|
+
necessary to install and execute a modified version of the
|
120
|
+
Combined Work produced by recombining or relinking the
|
121
|
+
Application with a modified version of the Linked Version. (If
|
122
|
+
you use option 4d0, the Installation Information must accompany
|
123
|
+
the Minimal Corresponding Source and Corresponding Application
|
124
|
+
Code. If you use option 4d1, you must provide the Installation
|
125
|
+
Information in the manner specified by section 6 of the GNU GPL
|
126
|
+
for conveying Corresponding Source.)
|
127
|
+
|
128
|
+
5. Combined Libraries.
|
129
|
+
|
130
|
+
You may place library facilities that are a work based on the
|
131
|
+
Library side by side in a single library together with other library
|
132
|
+
facilities that are not Applications and are not covered by this
|
133
|
+
License, and convey such a combined library under terms of your
|
134
|
+
choice, if you do both of the following:
|
135
|
+
|
136
|
+
a) Accompany the combined library with a copy of the same work based
|
137
|
+
on the Library, uncombined with any other library facilities,
|
138
|
+
conveyed under the terms of this License.
|
139
|
+
|
140
|
+
b) Give prominent notice with the combined library that part of it
|
141
|
+
is a work based on the Library, and explaining where to find the
|
142
|
+
accompanying uncombined form of the same work.
|
143
|
+
|
144
|
+
6. Revised Versions of the GNU Lesser General Public License.
|
145
|
+
|
146
|
+
The Free Software Foundation may publish revised and/or new versions
|
147
|
+
of the GNU Lesser General Public License from time to time. Such new
|
148
|
+
versions will be similar in spirit to the present version, but may
|
149
|
+
differ in detail to address new problems or concerns.
|
150
|
+
|
151
|
+
Each version is given a distinguishing version number. If the
|
152
|
+
Library as you received it specifies that a certain numbered version
|
153
|
+
of the GNU Lesser General Public License "or any later version"
|
154
|
+
applies to it, you have the option of following the terms and
|
155
|
+
conditions either of that published version or of any later version
|
156
|
+
published by the Free Software Foundation. If the Library as you
|
157
|
+
received it does not specify a version number of the GNU Lesser
|
158
|
+
General Public License, you may choose any version of the GNU Lesser
|
159
|
+
General Public License ever published by the Free Software Foundation.
|
160
|
+
|
161
|
+
If the Library as you received it specifies that a proxy can decide
|
162
|
+
whether future versions of the GNU Lesser General Public License shall
|
163
|
+
apply, that proxy's public statement of acceptance of any version is
|
164
|
+
permanent authorization for you to choose that version for the
|
165
|
+
Library.
|
data/README.md
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
[![Gem Version](https://badge.fury.io/rb/Jiraquest.svg)](https://badge.fury.io/rb/Jiraquest)
|
2
|
+
[![Build Status](https://travis-ci.org/tcob/jiraquest.svg?branch=master)](https://travis-ci.org/tcob/jiraquest)
|
3
|
+
[![Maintainability](https://api.codeclimate.com/v1/badges/9778ab58de92f3242709/maintainability)](https://codeclimate.com/github/tcob/jiraquest/maintainability)
|
4
|
+
[![Test Coverage](https://api.codeclimate.com/v1/badges/9778ab58de92f3242709/test_coverage)](https://codeclimate.com/github/tcob/jiraquest/test_coverage)
|
5
|
+
|
6
|
+
# jiraquest
|
7
|
+
|
8
|
+
## Install
|
9
|
+
|
10
|
+
Installation can be done via rubygems:
|
11
|
+
|
12
|
+
```bash
|
13
|
+
gem install jiraquest
|
14
|
+
```
|
15
|
+
|
16
|
+
## Begin jiraquesting
|
17
|
+
|
18
|
+
```bash
|
19
|
+
jiraquest
|
20
|
+
```
|
21
|
+
|
22
|
+
## Development
|
23
|
+
|
24
|
+
Clone the repository (or [fork the repo](https://help.github.com/articles/fork-a-repo/)):
|
25
|
+
|
26
|
+
```bash
|
27
|
+
git clone https://github.com/tcob/jiraquest.git
|
28
|
+
```
|
29
|
+
|
30
|
+
Dependencies are managed using `bundler`
|
31
|
+
|
32
|
+
```bash
|
33
|
+
gem install bundler
|
34
|
+
bundle install
|
35
|
+
```
|
36
|
+
|
37
|
+
Tests can be run using `rake`:
|
38
|
+
|
39
|
+
```bash
|
40
|
+
rake test
|
41
|
+
```
|
42
|
+
|
43
|
+
### Bumping the version
|
44
|
+
|
45
|
+
Edit the version number in `lib/jiraquest/version.rb` then run:
|
46
|
+
|
47
|
+
```bash
|
48
|
+
bundle install
|
49
|
+
```
|
50
|
+
|
51
|
+
The `Gemfile.lock` file should be checked in.
|