crafties 0.1.0
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 +7 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +10 -0
- data/aphorisms.yml +647 -0
- data/exe/crafty +5 -0
- data/lib/crafties/version.rb +5 -0
- data/lib/crafties.rb +14 -0
- data/sig/crafties.rbs +4 -0
- metadata +68 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 4179136a176d6ef14e2381d288ff9eef44c7782a9b2ae2902eb5a1e437ecd81f
|
4
|
+
data.tar.gz: 2145ba53eeb7213b6887afb7906c85b1540518803f486dce3a04a36987accfb7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 959005f908effaccc792984d1d46ac27574c514989feb17fc07aefca5dd84fc1c0c03fff31caa65dd112bc1131aac6031a4a350f22431a65b0e0e9aaff0491f2
|
7
|
+
data.tar.gz: cea7d3daa72aca505b1941beda5d8208a9f3061114cb1d54425cdfa6293c65338b22ad3ff5b4abfa631b4e04ff88a854ec8e96a27eba7a7bcad33a4840ec34f2
|
data/CHANGELOG.md
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
9
|
+
nationality, personal appearance, race, caste, color, religion, or sexual
|
10
|
+
identity and orientation.
|
11
|
+
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
13
|
+
diverse, inclusive, and healthy community.
|
14
|
+
|
15
|
+
## Our Standards
|
16
|
+
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
18
|
+
community include:
|
19
|
+
|
20
|
+
* Demonstrating empathy and kindness toward other people
|
21
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
22
|
+
* Giving and gracefully accepting constructive feedback
|
23
|
+
* Accepting responsibility and apologizing to those affected by our mistakes,
|
24
|
+
and learning from the experience
|
25
|
+
* Focusing on what is best not just for us as individuals, but for the overall
|
26
|
+
community
|
27
|
+
|
28
|
+
Examples of unacceptable behavior include:
|
29
|
+
|
30
|
+
* The use of sexualized language or imagery, and sexual attention or advances of
|
31
|
+
any kind
|
32
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
33
|
+
* Public or private harassment
|
34
|
+
* Publishing others' private information, such as a physical or email address,
|
35
|
+
without their explicit permission
|
36
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
37
|
+
professional setting
|
38
|
+
|
39
|
+
## Enforcement Responsibilities
|
40
|
+
|
41
|
+
Community leaders are responsible for clarifying and enforcing our standards of
|
42
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
43
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
44
|
+
or harmful.
|
45
|
+
|
46
|
+
Community leaders have the right and responsibility to remove, edit, or reject
|
47
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
48
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
49
|
+
decisions when appropriate.
|
50
|
+
|
51
|
+
## Scope
|
52
|
+
|
53
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
54
|
+
an individual is officially representing the community in public spaces.
|
55
|
+
Examples of representing our community include using an official email address,
|
56
|
+
posting via an official social media account, or acting as an appointed
|
57
|
+
representative at an online or offline event.
|
58
|
+
|
59
|
+
## Enforcement
|
60
|
+
|
61
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
62
|
+
reported to the community leaders responsible for enforcement at
|
63
|
+
[INSERT CONTACT METHOD].
|
64
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
65
|
+
|
66
|
+
All community leaders are obligated to respect the privacy and security of the
|
67
|
+
reporter of any incident.
|
68
|
+
|
69
|
+
## Enforcement Guidelines
|
70
|
+
|
71
|
+
Community leaders will follow these Community Impact Guidelines in determining
|
72
|
+
the consequences for any action they deem in violation of this Code of Conduct:
|
73
|
+
|
74
|
+
### 1. Correction
|
75
|
+
|
76
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed
|
77
|
+
unprofessional or unwelcome in the community.
|
78
|
+
|
79
|
+
**Consequence**: A private, written warning from community leaders, providing
|
80
|
+
clarity around the nature of the violation and an explanation of why the
|
81
|
+
behavior was inappropriate. A public apology may be requested.
|
82
|
+
|
83
|
+
### 2. Warning
|
84
|
+
|
85
|
+
**Community Impact**: A violation through a single incident or series of
|
86
|
+
actions.
|
87
|
+
|
88
|
+
**Consequence**: A warning with consequences for continued behavior. No
|
89
|
+
interaction with the people involved, including unsolicited interaction with
|
90
|
+
those enforcing the Code of Conduct, for a specified period of time. This
|
91
|
+
includes avoiding interactions in community spaces as well as external channels
|
92
|
+
like social media. Violating these terms may lead to a temporary or permanent
|
93
|
+
ban.
|
94
|
+
|
95
|
+
### 3. Temporary Ban
|
96
|
+
|
97
|
+
**Community Impact**: A serious violation of community standards, including
|
98
|
+
sustained inappropriate behavior.
|
99
|
+
|
100
|
+
**Consequence**: A temporary ban from any sort of interaction or public
|
101
|
+
communication with the community for a specified period of time. No public or
|
102
|
+
private interaction with the people involved, including unsolicited interaction
|
103
|
+
with those enforcing the Code of Conduct, is allowed during this period.
|
104
|
+
Violating these terms may lead to a permanent ban.
|
105
|
+
|
106
|
+
### 4. Permanent Ban
|
107
|
+
|
108
|
+
**Community Impact**: Demonstrating a pattern of violation of community
|
109
|
+
standards, including sustained inappropriate behavior, harassment of an
|
110
|
+
individual, or aggression toward or disparagement of classes of individuals.
|
111
|
+
|
112
|
+
**Consequence**: A permanent ban from any sort of public interaction within the
|
113
|
+
community.
|
114
|
+
|
115
|
+
## Attribution
|
116
|
+
|
117
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
118
|
+
version 2.1, available at
|
119
|
+
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
120
|
+
|
121
|
+
Community Impact Guidelines were inspired by
|
122
|
+
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
123
|
+
|
124
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
125
|
+
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
|
126
|
+
[https://www.contributor-covenant.org/translations][translations].
|
127
|
+
|
128
|
+
[homepage]: https://www.contributor-covenant.org
|
129
|
+
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
|
130
|
+
[Mozilla CoC]: https://github.com/mozilla/diversity
|
131
|
+
[FAQ]: https://www.contributor-covenant.org/faq
|
132
|
+
[translations]: https://www.contributor-covenant.org/translations
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2025 Ariel Rzezak
|
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
|
13
|
+
all 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
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# Crafties
|
2
|
+
|
3
|
+
TODO: Delete this and the text below, and describe your gem
|
4
|
+
|
5
|
+
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/crafties`. To experiment with that code, run `bin/console` for an interactive prompt.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
|
10
|
+
|
11
|
+
Install the gem and add to the application's Gemfile by executing:
|
12
|
+
|
13
|
+
```bash
|
14
|
+
bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
|
15
|
+
```
|
16
|
+
|
17
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
18
|
+
|
19
|
+
```bash
|
20
|
+
gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
|
21
|
+
```
|
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 test` 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 the created tag, 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]/crafties. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/crafties/blob/main/CODE_OF_CONDUCT.md).
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
40
|
+
|
41
|
+
## Code of Conduct
|
42
|
+
|
43
|
+
Everyone interacting in the Crafties project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/crafties/blob/main/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/aphorisms.yml
ADDED
@@ -0,0 +1,647 @@
|
|
1
|
+
---
|
2
|
+
- Honour necessity.
|
3
|
+
- A beginning is invisible.
|
4
|
+
- A better mistake is to play the wrong note with enthusiasm than the right note with
|
5
|
+
temerity and fear.
|
6
|
+
- A comfortable life and a creative life are mutually exclusive.
|
7
|
+
- A completion is a new beginning.
|
8
|
+
- A decision changes the world.
|
9
|
+
- A gift to be repaid is not properly a gift.
|
10
|
+
- |-
|
11
|
+
A group comes together in service of an aim.
|
12
|
+
At a particular level, each member of the group is that group, and the group may act in and through that person.
|
13
|
+
- A lie divorces who we are from what we are.
|
14
|
+
- 'A measure of the person: being in tune, in tone and in time.'
|
15
|
+
- A mistake is always forgivable, rarely excusable and never acceptable.
|
16
|
+
- A musician is a trained, responsive and reliable instrument at the service of music.
|
17
|
+
- A point of seeing takes precedence over experience.
|
18
|
+
- But not even creative insight is a substitute for experience.
|
19
|
+
- A principle is an instruction in qualitative endeavour.
|
20
|
+
- A question worth asking is born in experience and driven by necessity.
|
21
|
+
- A reliable sign of an impoverished nature is the seeking of fault in others.
|
22
|
+
- |-
|
23
|
+
A rule is specific.
|
24
|
+
A principle is universal.
|
25
|
+
A law is invariable.
|
26
|
+
- A test of our understanding is whether we can apply what we understand in practice.
|
27
|
+
- A tradition is creatively renewed by its practitioners.
|
28
|
+
- |-
|
29
|
+
Abandon concern for hitting the right note.
|
30
|
+
Then, hit the right note.
|
31
|
+
- Accept nothing less than what is right.
|
32
|
+
- |-
|
33
|
+
Act from principle.
|
34
|
+
Move with intention.
|
35
|
+
- |-
|
36
|
+
Act in accordance with time, place, person and prevailing conditions:
|
37
|
+
where you are, when you are, with whomsoever you are.
|
38
|
+
- Act in private as if your behaviour were known in public.
|
39
|
+
- Act rightly and abandon concern for repercussions.
|
40
|
+
- |-
|
41
|
+
Act with courtesy.
|
42
|
+
Otherwise, be polite.
|
43
|
+
- |-
|
44
|
+
Address the process rather than the outcome.
|
45
|
+
Then, the outcome becomes more likely.
|
46
|
+
- Although I stumble and fall, each time I will rise again.
|
47
|
+
- An artist acts with the assumption of innocence within a field of experience.
|
48
|
+
- An end may be a finish, a conclusion or a completion.
|
49
|
+
- An intentional act goes against gravity.
|
50
|
+
- Answers will come through the guitar.
|
51
|
+
- Any action by a member of a group affects the group as a whole and each of its members.
|
52
|
+
- Any action conveys the intent that gave rise to it.
|
53
|
+
- Any act that is knowingly non-consensual offers violence on some level.
|
54
|
+
- Any creative endeavor has to accept that the uncertainty is not only inevitable,
|
55
|
+
but utterly necessary.
|
56
|
+
- Any fool can change the world, but it takes a hero to make their bed and clean the
|
57
|
+
toilet.
|
58
|
+
- Any fool can play something difficult, but to play something simple requires skill.
|
59
|
+
- Any living practice is creative in its nature.
|
60
|
+
- Any practice that does not lead to compassion may be said to have failed.
|
61
|
+
- Any success carries with it an opportunity, a responsibility and an obligation.
|
62
|
+
- Any true way will be able to describe itself through its practitioners.
|
63
|
+
- Anything real originates in Love.
|
64
|
+
- Anything within a performance is significant, whether intentional or not.
|
65
|
+
- |-
|
66
|
+
Anything worth doing is worth doing for nothing.
|
67
|
+
Anything worth doing for nothing is worth doing well.
|
68
|
+
- Appreciation is quieter than complaint.
|
69
|
+
- Artistry repeats the unrepeatable.
|
70
|
+
- Ask why - seven times!
|
71
|
+
- Assume the virtue.
|
72
|
+
- Attention is the prime tool of any line of craft.
|
73
|
+
- Avoid celebrity.
|
74
|
+
- Become a critic only if you have no fear for your soul.
|
75
|
+
- |-
|
76
|
+
Before we do something, we do nothing.
|
77
|
+
While doing nothing, we observe ourselves doing nothing.
|
78
|
+
While observing ourselves doing nothing, we have begun to cultivate the attention.
|
79
|
+
- Before we move from A to B, better to know we’re at A.
|
80
|
+
- Begin and end the day with definition, intention and clarity.
|
81
|
+
- Begin with the possible and move gradually towards the impossible.
|
82
|
+
- Better not to ask the future to present itself if we’re not prepared to follow where
|
83
|
+
it leads.
|
84
|
+
- Better to be present with a bad note than absent from a good note.
|
85
|
+
- |-
|
86
|
+
Be very careful about the beginning.
|
87
|
+
Then, be very careful about the end.
|
88
|
+
Then, be very careful about the middle.
|
89
|
+
- Boredom is a reliable indicator of the poverty of our inner lives.
|
90
|
+
- Breathe the air around someone who knows.
|
91
|
+
- Change one small part and the whole is changed.
|
92
|
+
- Circulation is an exact auditory representation of the character and condition of
|
93
|
+
a Circle at any given time.
|
94
|
+
- Comments on others are commentaries on ourselves.
|
95
|
+
- Commitments are to be honoured.
|
96
|
+
- Comparison with others is a mark of the fool.
|
97
|
+
- Conscience is utterly impersonal.
|
98
|
+
- Courtesy is an inward grace that extends outwards to others.
|
99
|
+
- |-
|
100
|
+
Courtesy may be too much to ask;
|
101
|
+
but politeness is not.
|
102
|
+
- Craft acts from knowing, artistry from understanding.
|
103
|
+
- Craft is a universal language.
|
104
|
+
- Creative action by one enables creative action in another.
|
105
|
+
- Creative events reach back from the future and draw us towards them.
|
106
|
+
- Creative work is serious play.
|
107
|
+
- Cynicism is death for the artist.
|
108
|
+
- |-
|
109
|
+
Craft maintains skill.
|
110
|
+
Discipline maintains craft.
|
111
|
+
Craft follows the tradition.
|
112
|
+
Music creates the tradition.
|
113
|
+
- Decide to undertake the inevitable.
|
114
|
+
- Define the aim simply, clearly, positively.
|
115
|
+
- |-
|
116
|
+
Desperate doesn’t mean hopeless.
|
117
|
+
Hopeless doesn’t mean impossible.
|
118
|
+
Impossible doesn’t mean unnecessary.
|
119
|
+
- Discard the superfluous.
|
120
|
+
- Discharge one small task superbly.
|
121
|
+
- Discipline confers reliability, repeatability and responsibility.
|
122
|
+
- Discipline confers the capacity to make a commitment in time.
|
123
|
+
- Discipline holds the Middle.
|
124
|
+
- Discipline is a vehicle for joy.
|
125
|
+
- Discipline is not an end in itself, only a means to an end.
|
126
|
+
- Distrust anyone who wants to teach you something.
|
127
|
+
- Distrust enthusiasm.
|
128
|
+
- Distrust those who profess altruism.
|
129
|
+
- Do nothing – as much as you can.
|
130
|
+
- 'Don''t be helpful: be useful, be available.'
|
131
|
+
- Each part does the work of that part, and no other.
|
132
|
+
- 'Efficiency: as little as possible and as much as is necessary.'
|
133
|
+
- |-
|
134
|
+
Establish a point of certainty, clarity and definition.
|
135
|
+
Then, establish points of certainty, clarity and definition throughout the day.
|
136
|
+
Then, establish points of certainty, clarity and definition - yesterday and tomorrow.
|
137
|
+
- Even genius requires a competent technique.
|
138
|
+
- Everything we are is revealed in our playing.
|
139
|
+
- Expectation is a prison.
|
140
|
+
- Expect nothing.
|
141
|
+
- Fear is a preparation for failure.
|
142
|
+
- |-
|
143
|
+
Firstly, we are ignorant;
|
144
|
+
secondly, we recognise our ignorance;
|
145
|
+
thirdly, we acknowledge our ignorance;
|
146
|
+
fourthly, we move to address our ignorance.
|
147
|
+
- |-
|
148
|
+
Five ways to determine the quality of a person:
|
149
|
+
their conduct in front of sex;
|
150
|
+
money;
|
151
|
+
the use of time;
|
152
|
+
the expression of negativity;
|
153
|
+
the exercise of authority over others.
|
154
|
+
- |-
|
155
|
+
Four qualities of improvisation:
|
156
|
+
riffing;
|
157
|
+
developing variations;
|
158
|
+
improvising;
|
159
|
+
spontaneous composition.
|
160
|
+
- |-
|
161
|
+
Four qualities of operation:
|
162
|
+
arbitrary;
|
163
|
+
optional;
|
164
|
+
intentional;
|
165
|
+
necessary.
|
166
|
+
- |-
|
167
|
+
Good habit is necessary.
|
168
|
+
Bad habit is inevitable.
|
169
|
+
- Good time is being in step with ourselves.
|
170
|
+
- Gradually extend the parameters of your competence.
|
171
|
+
- Gradual transitions take place suddenly.
|
172
|
+
- |-
|
173
|
+
Habit = habitual.
|
174
|
+
Habit + presence = skill.
|
175
|
+
Skill + presence + attention = craft.
|
176
|
+
Skill + presence + attention + understanding = artistry.
|
177
|
+
- Happiness is an outcome of living rightly, not a result of seeking happiness.
|
178
|
+
- Heaven and earth share the same space.
|
179
|
+
- |-
|
180
|
+
Help is closer to us than the air that we breathe;
|
181
|
+
and is carried on the breath.
|
182
|
+
- Helpful people are a nuisance.
|
183
|
+
- |-
|
184
|
+
Honour the role.
|
185
|
+
Respect the person.
|
186
|
+
Discharge the function.
|
187
|
+
- |-
|
188
|
+
How we act in one small area of our life is how we act in all the small areas of our life.
|
189
|
+
All the small areas of our life is our life.
|
190
|
+
- How we hold our pick is how we live our life.
|
191
|
+
- How we see the world changes the world.
|
192
|
+
- If a quality is present, it is recognisable and may be named.
|
193
|
+
- |-
|
194
|
+
If in doubt, consult tradition.
|
195
|
+
If still in doubt, consult experience.
|
196
|
+
If still in doubt, consult the body.
|
197
|
+
- If we are able to describe the characteristics of the level to which we aspire,
|
198
|
+
our aspiration becomes possible.
|
199
|
+
- |-
|
200
|
+
If we are able to make one small act of quality, it will spread
|
201
|
+
throughout our larger act of living.
|
202
|
+
- |-
|
203
|
+
If we are divorced from the consequences of our actions, our actions are likely to be inappropriate;
|
204
|
+
perhaps dangerous;
|
205
|
+
perhaps disastrous.
|
206
|
+
- If we are present in the Circle, we may find the Circle present within us.
|
207
|
+
- If we are unable to say no, we are unable to say yes.
|
208
|
+
- If we can ask our body to do nothing for half an hour, perhaps we can ask our body
|
209
|
+
to do something for half an hour.
|
210
|
+
- If we can define our aim, we are halfway to achieving it.
|
211
|
+
- If we close our eyes, how do we know we have a left hand?
|
212
|
+
- If we don't know where we're going, we'll probably get there.
|
213
|
+
- |-
|
214
|
+
If we do not do the work that is given to us to discharge, part of the world will die.
|
215
|
+
Know this for a certainty.
|
216
|
+
- If we have nothing to say, better to say nothing.
|
217
|
+
- |-
|
218
|
+
If we really love them, it doesn’t matter;
|
219
|
+
If we don’t really love them, it doesn’t matter.
|
220
|
+
- If we wish to know, breathe the air around someone who knows.
|
221
|
+
- If you wish to change the world, better first to know the world you wish to change.
|
222
|
+
- If you wish to discover habit, change the tempo.
|
223
|
+
- |-
|
224
|
+
Impartial observation changes nothing.
|
225
|
+
It changes everything.
|
226
|
+
- In a group, something becomes possible which is impossible for one alone.
|
227
|
+
- |-
|
228
|
+
In popular culture, the musician calls on the highest part in all of us.
|
229
|
+
In mass culture, the musician addresses the lower parts of what we are.
|
230
|
+
In popular culture, our musicians sing to us in our own voice.
|
231
|
+
In mass culture they shout what we want to hear.
|
232
|
+
- "In strange and uncertain times, sometimes a reasonable person might despair. \n
|
233
|
+
\ But Hope is unreasonable.\n And Love is greater even
|
234
|
+
than this."
|
235
|
+
- |-
|
236
|
+
Intention determines the orientation.
|
237
|
+
Commitment maintains the direction.
|
238
|
+
Attention holds the course.
|
239
|
+
- Intention trumps technique.
|
240
|
+
- |-
|
241
|
+
Intentional action generates intentional results and unforeseeable repercussions.
|
242
|
+
Unintentional action generates unintended consequences, inevitable repercussions and unintentional activity.
|
243
|
+
- Interrogate the error.
|
244
|
+
- Interrogate the experience.
|
245
|
+
- In the creative act, the Creation continues.
|
246
|
+
- In the creative act, the future reaches back to invent the present and repair the
|
247
|
+
past.
|
248
|
+
- In the small things, we see the large things.
|
249
|
+
- In tuning a note we are tuning ourselves.
|
250
|
+
- It is absurd to believe that practising our instrument is separate from the rest
|
251
|
+
of our life.
|
252
|
+
- It is a folly to expect an open door to remain open forever.
|
253
|
+
- It is difficult to exaggerate the power of habit.
|
254
|
+
- It is necessary to know the next step;
|
255
|
+
- but not the step after that.
|
256
|
+
- |-
|
257
|
+
It is not asked of us that we never fall.
|
258
|
+
It is asked of us that we always get up.
|
259
|
+
- |-
|
260
|
+
It is not necessary that we succeed.
|
261
|
+
It is necessary that we make the effort.
|
262
|
+
- |-
|
263
|
+
It is not necessary to be cheerful.
|
264
|
+
It is not necessary to feel cheerful.
|
265
|
+
But look cheerful.
|
266
|
+
- |-
|
267
|
+
It is not possible for the musician to play music.
|
268
|
+
But, it is possible for the musician to be played by music.
|
269
|
+
- |-
|
270
|
+
It is not our aim to drive out noise.
|
271
|
+
It is our aim to invite in Silence.
|
272
|
+
- It’s the recovery that matters.
|
273
|
+
- Joy is a natural response to being alive, and music one way to give it voice.
|
274
|
+
- Just below the surface of our everyday world lie riches.
|
275
|
+
- Know that the world will die if we do not extend our good wishes to it.
|
276
|
+
- Learn to recognise the changing qualities of our experiencing.
|
277
|
+
- Let us embrace our mistakes as friends and teachers.
|
278
|
+
- Let us find clean and cheerful friends.
|
279
|
+
- Life is often desperate, but never hopeless.
|
280
|
+
- Let us take our work seriously, but not solemnly.
|
281
|
+
- Life is too short to learn only from our mistakes.
|
282
|
+
- Life is too short to take on the unnecessary.
|
283
|
+
- Life without the morning sitting is like trying to walk without legs.
|
284
|
+
- Like and dislike are cheap.
|
285
|
+
- Listening changes what we are listening to.
|
286
|
+
- Local events have global repercussions.
|
287
|
+
- Love cannot bear that even one soul be denied its place in Paradise.
|
288
|
+
- Make better mistakes.
|
289
|
+
- |-
|
290
|
+
May we have the clarity to see what is required of us.
|
291
|
+
May we have the courage to accept what is required of us.
|
292
|
+
May we have the capacity to discharge what is required of us.
|
293
|
+
- May the quality with which we live our life honour the lives of our parents and
|
294
|
+
mentors.
|
295
|
+
- |-
|
296
|
+
May we have the courage to fail.
|
297
|
+
May we also have the courage to succeed.
|
298
|
+
- May we wish for others what we wish for ourselves.
|
299
|
+
- May we trust the inexpressible benevolence of the Creative Impulse.
|
300
|
+
- Memory is a measure of the quality of our attention.
|
301
|
+
- Mistakes are at the centre of learning.
|
302
|
+
- Money is not a problem, only a difficulty.
|
303
|
+
- |-
|
304
|
+
Moving forward feels like moving forward.
|
305
|
+
It also feels like moving backwards and standing still.
|
306
|
+
- Music brings together sound and Silence.
|
307
|
+
- Music creates the musician.
|
308
|
+
- Music is a benevolent presence constantly and readily available to all.
|
309
|
+
- Music is a language through which we can express our struggle to be a human being.
|
310
|
+
- |-
|
311
|
+
Music is a language to talk to God.
|
312
|
+
Fortunately, music is a language through which God speaks to us.
|
313
|
+
- Music is a quality, organised in sound and in time.
|
314
|
+
- Music is as available to us as we are available to music.
|
315
|
+
- |-
|
316
|
+
Music is the cup which holds the wine of Silence.
|
317
|
+
Sound is that cup, but empty.
|
318
|
+
Noise is that cup, but broken.
|
319
|
+
- Music is our friend.
|
320
|
+
- Music is the architecture of Silence.
|
321
|
+
- Music is Silence, singing.
|
322
|
+
- Music so wishes to be heard that sometimes it calls on unlikely characters to give
|
323
|
+
it voice, and to give it ears.
|
324
|
+
- Music without love is not properly music.
|
325
|
+
- |-
|
326
|
+
Necessary repercussions are manageable.
|
327
|
+
Inevitable repercussions are expensive.
|
328
|
+
Unnecessary repercussions are dangerous.
|
329
|
+
- Necessity is a measure of aim.
|
330
|
+
- Never be afraid to let go of a good thing.
|
331
|
+
- Never become so popular that the public takes an interest in you.
|
332
|
+
- 'New music is not a style: it is a quality.'
|
333
|
+
- Not even death can end the process of our becoming.
|
334
|
+
- Nothing is compulsory, but some things are necessary.
|
335
|
+
- Nothing worthwhile is achieved suddenly.
|
336
|
+
- Noticing is a creative moment.
|
337
|
+
- Offer no violence.
|
338
|
+
- 'One key to personal freedom: the extent to which we accept responsibility for exercising
|
339
|
+
our rights and meeting our obligations.'
|
340
|
+
- One measure of possible and impossible is the probable.
|
341
|
+
- 'One measure of the power of a new idea: the degree of hostility that rises to meet
|
342
|
+
it.'
|
343
|
+
- One note, struck truly, is a symphony.
|
344
|
+
- One small act of quality is as big as one large act of quality.
|
345
|
+
- Our concern is process, rather than result.
|
346
|
+
- Our enemy is our friend.
|
347
|
+
- Our living is as rich as our attention is available.
|
348
|
+
- |-
|
349
|
+
Perfection is impossible.
|
350
|
+
But I may choose to serve perfection.
|
351
|
+
- Performance is inherently unlikely.
|
352
|
+
- Performance is intimate, yet utterly impersonal.
|
353
|
+
- Persistence is a measure of our Wish.
|
354
|
+
- Playing fast is easier than playing slow.
|
355
|
+
- Play is at the heart of creative endeavour.
|
356
|
+
- Power is the capacity to access what is possible.
|
357
|
+
- Practising attention is one way of practising love.
|
358
|
+
- Practising is an ordered activity directed towards the service of an aim.
|
359
|
+
- Precision confers definition, clarity and order.
|
360
|
+
- Process is Intelligence getting to know itself.
|
361
|
+
- |-
|
362
|
+
Professionalism repeats the repeatable.
|
363
|
+
Artistry repeats the unrepeatable.
|
364
|
+
- Quality is an economy.
|
365
|
+
- Quality is ungovernable by number.
|
366
|
+
- Quality spreads.
|
367
|
+
- Quiet is the absence of sound; silence the presence of Silence.
|
368
|
+
- Reason alone is a one-legged stool.
|
369
|
+
- Recognising error in ourselves is an opportunity to forgive error in others.
|
370
|
+
- Redemption is a process of repair in which the repair job may become stronger than
|
371
|
+
the original model.
|
372
|
+
- |-
|
373
|
+
Relaxation is necessary tension.
|
374
|
+
Tension is unnecessary tension.
|
375
|
+
- Relaxation is never accidental.
|
376
|
+
- Rely on what someone does, not what they claim to do.
|
377
|
+
- Remain in motion, whether stationary or not.
|
378
|
+
- Remember to play.
|
379
|
+
- Right Action moves from principle.
|
380
|
+
- Right Action, without a discipline, is unlikely.
|
381
|
+
- Rightness is its own necessity.
|
382
|
+
- Signposts are useful when we know where we are going.
|
383
|
+
- Silence is not silent.
|
384
|
+
- Silence is the field of creative musical intelligence that dwells in the space between
|
385
|
+
the notes, and holds them in place.
|
386
|
+
- Small additional increments are transformative.
|
387
|
+
- Some things protect themselves by being what they are.
|
388
|
+
- |-
|
389
|
+
Sometimes God hides.
|
390
|
+
Sometimes God waves.
|
391
|
+
Sometimes God smiles.
|
392
|
+
- |-
|
393
|
+
Sometimes no answer is an answer;
|
394
|
+
especially when the answer is no.
|
395
|
+
- Sometimes the impossible is necessary.
|
396
|
+
- Stillness is dynamic, and only appears to be static.
|
397
|
+
- Suffer cheerfully.
|
398
|
+
- Suffering is necessary, unnecessary, voluntary and involuntary.
|
399
|
+
- Suffering is our experience of the distance between what we are and who we wish
|
400
|
+
to become.
|
401
|
+
- Suffering of quality is invisible to others.
|
402
|
+
- Talking is expensive.
|
403
|
+
- |-
|
404
|
+
The absence of presence is loss.
|
405
|
+
The presence of absence is dangerous.
|
406
|
+
- The act of music is the music.
|
407
|
+
- The act of music is primarily social.
|
408
|
+
- The aim of any practice is to know Right Conduct in all situations, even situations
|
409
|
+
where we find ourselves for the first time.
|
410
|
+
- The aim of the musician is to create a construct through which Music may enter our
|
411
|
+
world.
|
412
|
+
- The artist is a bridge between the possible, the impossible and the actual.
|
413
|
+
- The attitude that life owes us something encourages life to thwart our endeavours.
|
414
|
+
- The audience is Mother to the music.
|
415
|
+
- 'The centre of discipline: the degree to which we are able to hold ourselves in
|
416
|
+
front of a challenge.'
|
417
|
+
- |-
|
418
|
+
The concern of the musician is music.
|
419
|
+
The concern of the professional musician is business.
|
420
|
+
- |-
|
421
|
+
The craftsman teaches by what they do.
|
422
|
+
The master teaches by who they are.
|
423
|
+
- The Creative Impulse inhabits whatever instrument is made available to it.
|
424
|
+
- 'The creative impulse will create: this is its necessity.'
|
425
|
+
- |-
|
426
|
+
The creative process is utterly mysterious:
|
427
|
+
magical, unknowable, indefinable.
|
428
|
+
The creative process is also know-able, do-able, feel-able, available.
|
429
|
+
- The criteria are reliability, repeatability and responsibility.
|
430
|
+
- The effect of a bright idea is to undermine the aim it nominally serves.
|
431
|
+
- The finest quality of attention we may give is love.
|
432
|
+
- The foundation of learning is play.
|
433
|
+
- The future is what the present can bear.
|
434
|
+
- The gates of Heaven open to persistence.
|
435
|
+
- 'The Great Divide: too far from the beginning to go back, too far from the end to
|
436
|
+
go forward.'
|
437
|
+
- The greater the seeming imperfection, the greater the possible transformation.
|
438
|
+
- |-
|
439
|
+
The help available is not what we expect;
|
440
|
+
and perhaps not what we want.
|
441
|
+
- 'The Key To It All: the quality of our attention.'
|
442
|
+
- The mind leads the hands.
|
443
|
+
- The musician and audience are parents to the music.
|
444
|
+
- 'The musician has three disciplines: of the hands, the head and the heart.'
|
445
|
+
- |-
|
446
|
+
The necessary is possible.
|
447
|
+
The optional is expensive.
|
448
|
+
The arbitrary is unlikely.
|
449
|
+
- The only contribution we make is the quality of our work.
|
450
|
+
- The performer can hide nothing, even the attempt to hide.
|
451
|
+
- The poverty of our nature is no limit to our aspiration.
|
452
|
+
- The power of a Network lies in the connections between the centres, not within the
|
453
|
+
centres.
|
454
|
+
- The primary characteristic of Right Practice is effortlessness.
|
455
|
+
- The problem with knowing what we want is, we might get it.
|
456
|
+
- 'The professional musician asks: Does this work?'
|
457
|
+
- 'The master musician asks: Is this true?'
|
458
|
+
- The proper response to being alive is joy.
|
459
|
+
- The quality and extent of our life is governed by the quality and extent of our
|
460
|
+
attention.
|
461
|
+
- The quality of the question determines the quality of the answer.
|
462
|
+
- |-
|
463
|
+
The quality of our perceptions determines how we see the world;
|
464
|
+
how we see the world determines our judgment;
|
465
|
+
our judgment determines how we interact with the world;
|
466
|
+
how we interact with the world changes the world.
|
467
|
+
So, the quality of our perceptions changes the world.
|
468
|
+
- |-
|
469
|
+
The quality we bring to one small part of our life is the quality we bring to all the small parts of our life.
|
470
|
+
All the small parts of our life is our life.
|
471
|
+
- |-
|
472
|
+
The question holds the answer.
|
473
|
+
So, what is the question?
|
474
|
+
- The questions we ask direct the course of our lives.
|
475
|
+
- The real world is as available to us as we can bear to be present to what is real.
|
476
|
+
- |-
|
477
|
+
The real world is not what we imagine it to be:
|
478
|
+
because it’s Real, not imaginary.
|
479
|
+
- |-
|
480
|
+
The right thing at the wrong time is wrong.
|
481
|
+
The wrong thing at the right time may be right.
|
482
|
+
The right thing at the right time is beautiful.
|
483
|
+
- The simplest is the most difficult to discharge superbly.
|
484
|
+
- The source of our knowing is of greater value than the extent of our knowledge.
|
485
|
+
- The unity of all things is experienced primarily through the feelings.
|
486
|
+
- The visibility of any particular school of craft depends upon the nature of its
|
487
|
+
work and the conditions of the culture it works within.
|
488
|
+
- |-
|
489
|
+
The way we describe our world shows how we think of our world;
|
490
|
+
how we think of our world governs how we interpret our world;
|
491
|
+
how we interpret our world directs how we participate in the world.
|
492
|
+
How we participate in the world shapes the world.
|
493
|
+
- The work is in the Middle.
|
494
|
+
- The work of one supports the work of all.
|
495
|
+
- |-
|
496
|
+
There are as many paths to music as there are musicians.
|
497
|
+
Subjectively, each path is unique;
|
498
|
+
objectively, each path the same.
|
499
|
+
But, there are signposts; there are maps; there are guides.
|
500
|
+
- There are few things as convincing as death to remind us of the quality with which
|
501
|
+
we live our life.
|
502
|
+
- 'There are no mistakes, save one: the failure to learn from a mistake.'
|
503
|
+
- |-
|
504
|
+
There are three kinds of repercussions:
|
505
|
+
the necessary, the unnecessary and the inevitable.
|
506
|
+
- There is a listening that contributes.
|
507
|
+
- |-
|
508
|
+
There is merit, blessing and reward for those who undertake necessary work;
|
509
|
+
attenuated to the degree that their work is undertaken in anticipation of merit, and blessing, and reward.
|
510
|
+
- There is nothing like exposure to public ridicule to galvanise the attention.
|
511
|
+
- |-
|
512
|
+
Things are not as bad as they seem.
|
513
|
+
They are worse than that.
|
514
|
+
They are also better than that.
|
515
|
+
- Thought is tangible and has effect.
|
516
|
+
- |-
|
517
|
+
Three ways to discover our faults:
|
518
|
+
ask a friend;
|
519
|
+
ask an enemy;
|
520
|
+
recognise a fault in others.
|
521
|
+
- "“Tomorrow” is the first lie of the Devil."
|
522
|
+
- To take care, in any activity, is a way of expressing love.
|
523
|
+
- To try is to fail.
|
524
|
+
- Trust the process.
|
525
|
+
- |-
|
526
|
+
Turn a seeming disadvantage to your advantage.
|
527
|
+
The greater the seeming disadvantage, the greater the possible advantage.
|
528
|
+
- Understanding changes what we understand.
|
529
|
+
- |-
|
530
|
+
Understanding is simple.
|
531
|
+
Knowing is complicated.
|
532
|
+
- Unless we are able to hold two contradictory positions simultaneously, solutions
|
533
|
+
will escape us.
|
534
|
+
- Unless we can describe the characteristics of mastery, mastery will elude us.
|
535
|
+
- |-
|
536
|
+
Want is of the earth.
|
537
|
+
Wish is from the stars.
|
538
|
+
- We are all at the beginning.
|
539
|
+
- |-
|
540
|
+
We are asked to work honourably:
|
541
|
+
honourably = what is possible + 10%;
|
542
|
+
too hard =
|
543
|
+
- We are each equipped to recognize what we need.
|
544
|
+
- We are held responsible for our actions, whether intentional or not.
|
545
|
+
- We are where we need to be.
|
546
|
+
- We attract Silence by being silent.
|
547
|
+
- We begin again, again.
|
548
|
+
- |-
|
549
|
+
We begin by doing nothing.
|
550
|
+
Then, we move to doing something.
|
551
|
+
- |-
|
552
|
+
We begin where we are.
|
553
|
+
But we begin today.
|
554
|
+
- |-
|
555
|
+
We begin where we are.
|
556
|
+
So, where are we?
|
557
|
+
- |-
|
558
|
+
We cannot govern the weather.
|
559
|
+
But we can push out the boat and raise the sail.
|
560
|
+
- We can’t fix the problems of the world, but we may deepen our practice.
|
561
|
+
- We can't go far on enthusiasm, but we don't go far without it.
|
562
|
+
- 'We cross the threshold:'
|
563
|
+
- |-
|
564
|
+
between the space where our ordinary activities take place and into the sacred space of musical performance;
|
565
|
+
paying attention to our first footfall;
|
566
|
+
relying upon one person, at least, to call upon the Muse for help.
|
567
|
+
- We do what is possible and allow space for the impossible to enter.
|
568
|
+
- We forget that we forget.
|
569
|
+
- We have the freedom to exercise our rights to the same degree that we meet our obligations.
|
570
|
+
- We have the right to choose our form of suffering.
|
571
|
+
- |-
|
572
|
+
We have three rights:
|
573
|
+
the right to work;
|
574
|
+
the right to pay to work;
|
575
|
+
the right to suffer the consequences of our work.
|
576
|
+
- |-
|
577
|
+
We have three obligations:
|
578
|
+
the obligation to work;
|
579
|
+
the obligation to pay to work;
|
580
|
+
the obligation to suffer the consequences of our work.
|
581
|
+
- We know others to the extent that we know ourselves.
|
582
|
+
- We learn also by osmosis.
|
583
|
+
- Welcome the unexpected, but not the arbitrary.
|
584
|
+
- |-
|
585
|
+
We'll never get rich by hard work.
|
586
|
+
But, we'll never get rich without it.
|
587
|
+
- We may do whatever we like, providing we can pick up the tab.
|
588
|
+
- |-
|
589
|
+
We may not have an equality of talent;
|
590
|
+
we may not have an equality of experience.
|
591
|
+
But we may be equal in aspiration;
|
592
|
+
we can be equal in commitment.
|
593
|
+
- We may understand our knowing, but we can't know our understanding.
|
594
|
+
- 'We move from making unnecessary efforts, the exertions of force, to making necessary
|
595
|
+
efforts: the direction of effortlessness.'
|
596
|
+
- |-
|
597
|
+
We must be able to play in our sleep;
|
598
|
+
because usually we do.
|
599
|
+
- We only have what we give away.
|
600
|
+
- We pay our own tab.
|
601
|
+
- We perceive our perceptions.
|
602
|
+
- We recognise in others what we know most deeply in ourselves.
|
603
|
+
- What do you notice when you have noticed something?
|
604
|
+
- What we get out is in direct proportion to what we put in.
|
605
|
+
- What we hear is the quality of our listening.
|
606
|
+
- What without how, even assuming the why, is not of much use.
|
607
|
+
- When a musician believes that music is a commodity, music dies in them.
|
608
|
+
- |-
|
609
|
+
When a record company makes a mistake, the artist pays for it.
|
610
|
+
When a manager makes a mistake, the artist pays for it.
|
611
|
+
When the artist makes a mistake, the artist pays for it.
|
612
|
+
- When Silence visits, it speaks to us to the degree that we are able to bear.
|
613
|
+
- When stuck, increase the complexity.
|
614
|
+
- When we act wrongly, let us not compound the error by offering justification.
|
615
|
+
- |-
|
616
|
+
When we are in The Basement, we don’t know we are in The Basement.
|
617
|
+
We only know when we’ve left.
|
618
|
+
- |-
|
619
|
+
When we have nothing to say, it is very hard to say nothing.
|
620
|
+
When we have nothing to do, it is very hard to do nothing.
|
621
|
+
- When we recognise a fault in others, we recognise a fault in ourselves.
|
622
|
+
- |-
|
623
|
+
When you’re tired, you’ve had enough, and can’t do anything – do nothing.
|
624
|
+
And while you’re doing nothing, practice.
|
625
|
+
- Where our attention is, is where we are.
|
626
|
+
- |-
|
627
|
+
Where we're going is how we get there.
|
628
|
+
So, if where we’re going is how we get there, we are already where we're going.
|
629
|
+
- While we are alive, it is never too late to address the repercussions of our mistakes.
|
630
|
+
- Wish attracts I.
|
631
|
+
- With commitment, all the rules change.
|
632
|
+
- |-
|
633
|
+
With craft the musician can copy something old.
|
634
|
+
With discipline the musician may copy something new.
|
635
|
+
- |-
|
636
|
+
Without Wish, who are we?
|
637
|
+
Without Presence, we are not.
|
638
|
+
Without Direction, we are lost.
|
639
|
+
- |-
|
640
|
+
You are playing with friends;
|
641
|
+
whether you like them or not;
|
642
|
+
whether they like you, or not;
|
643
|
+
whether we know it or not.
|
644
|
+
- |-
|
645
|
+
You can show someone how to look, but not to see.
|
646
|
+
You can show someone how to listen, but not to hear.
|
647
|
+
- Honour sufficiency.
|
data/exe/crafty
ADDED
data/lib/crafties.rb
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "crafties/version"
|
4
|
+
require "yaml"
|
5
|
+
|
6
|
+
module Crafties
|
7
|
+
APHORISMS = YAML.load_file("aphorisms.yml")
|
8
|
+
|
9
|
+
def self.aphorism
|
10
|
+
APHORISMS.sample
|
11
|
+
rescue Errno::ENOENT
|
12
|
+
"No aphorisms found. Run `bin/fetch` first."
|
13
|
+
end
|
14
|
+
end
|
data/sig/crafties.rbs
ADDED
metadata
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: crafties
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ariel Rzezak
|
8
|
+
bindir: exe
|
9
|
+
cert_chain: []
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: selenium-webdriver
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - ">="
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '0'
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - ">="
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '0'
|
26
|
+
description: A Ruby gem to fetch Guitar Craft aphorisms.
|
27
|
+
email:
|
28
|
+
- arzezak@gmail.com
|
29
|
+
executables:
|
30
|
+
- crafty
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- CHANGELOG.md
|
35
|
+
- CODE_OF_CONDUCT.md
|
36
|
+
- LICENSE.txt
|
37
|
+
- README.md
|
38
|
+
- Rakefile
|
39
|
+
- aphorisms.yml
|
40
|
+
- exe/crafty
|
41
|
+
- lib/crafties.rb
|
42
|
+
- lib/crafties/version.rb
|
43
|
+
- sig/crafties.rbs
|
44
|
+
homepage: https://github.com/arzezak/crafties
|
45
|
+
licenses:
|
46
|
+
- MIT
|
47
|
+
metadata:
|
48
|
+
homepage_uri: https://github.com/arzezak/crafties
|
49
|
+
source_code_uri: https://github.com/arzezak/crafties
|
50
|
+
changelog_uri: https://github.com/arzezak/crafties/blob/main/CHANGELOG.md
|
51
|
+
rdoc_options: []
|
52
|
+
require_paths:
|
53
|
+
- lib
|
54
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: 3.2.0
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0'
|
64
|
+
requirements: []
|
65
|
+
rubygems_version: 3.7.0
|
66
|
+
specification_version: 4
|
67
|
+
summary: Get a Guitar Craft aphorism.
|
68
|
+
test_files: []
|