restoratory_carnifex 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/.travis.yml +6 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +44 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/restoratory_carnifex/version.rb +3 -0
- data/lib/restoratory_carnifex.rb +6 -0
- data/restoratory_carnifex.gemspec +191 -0
- metadata +2328 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: a45f4a5c334dc79d70407e7dd191612bf232cc887d3ad571cee5fb03a587a2e7
|
4
|
+
data.tar.gz: e11b666dad3b1f4426d5c1fbcf6802b5307989ee11bf40e8539303f577014ea9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7750d6160ae1c63cbdc212164814e9daadf42aca756ecab7bdff5f64a5027108f0c1380b0c62b109702eba7e97f3434110d637fd09ed04ee086f15aba6bead8f
|
7
|
+
data.tar.gz: 575ed91a5e10f89d64144d2acc08584a5db3abaf9f71fdc7f94d577415155c81e51f1327b87f819c0f6397f92f17598bdb279d2fd4a30b7244e97ea2d4de59f8
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at 1336098842@qq.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [https://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: https://contributor-covenant.org
|
74
|
+
[version]: https://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2024 jagger
|
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,44 @@
|
|
1
|
+
# RestoratoryCarnifex
|
2
|
+
|
3
|
+
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/restoratory_carnifex`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'restoratory_carnifex'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle install
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install restoratory_carnifex
|
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 tags, 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]/restoratory_carnifex. 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]/restoratory_carnifex/blob/master/CODE_OF_CONDUCT.md).
|
36
|
+
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
41
|
+
|
42
|
+
## Code of Conduct
|
43
|
+
|
44
|
+
Everyone interacting in the RestoratoryCarnifex project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/restoratory_carnifex/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "restoratory_carnifex"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,191 @@
|
|
1
|
+
require_relative 'lib/restoratory_carnifex/version'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "restoratory_carnifex"
|
5
|
+
spec.version = RestoratoryCarnifex::VERSION
|
6
|
+
spec.authors = ["a399414"]
|
7
|
+
spec.email = ["a3994145@gmail.com"]
|
8
|
+
|
9
|
+
spec.summary = %q{restoratory_carnifex}
|
10
|
+
spec.description = %q{restoratory_carnifex test gem push}
|
11
|
+
spec.homepage = "https://github.com/a399414/restoratory_carnifex"
|
12
|
+
spec.license = "MIT"
|
13
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
14
|
+
|
15
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
16
|
+
|
17
|
+
spec.metadata["homepage_uri"] = "https://github.com/a399414/restoratory_carnifex"
|
18
|
+
spec.metadata["source_code_uri"] = "https://github.com/a399414/restoratory_carnifex.git"
|
19
|
+
spec.metadata["changelog_uri"] = "https://github.com/a399414/restoratory_carnifex/blob/main/CHANGELOG.md"
|
20
|
+
|
21
|
+
# Specify which files should be added to the gem when it is released.
|
22
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
23
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
24
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
25
|
+
end
|
26
|
+
spec.bindir = "exe"
|
27
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
28
|
+
spec.require_paths = ["lib"]
|
29
|
+
spec.add_dependency "http_crawler", "~> 3.1"
|
30
|
+
spec.add_dependency "jagger_mesoparapteron_test", "~> 0.1"
|
31
|
+
spec.add_dependency "jagger_joist_test", "~> 0.1"
|
32
|
+
spec.add_dependency "jagger_sulfuration_test", "~> 0.1"
|
33
|
+
spec.add_dependency "jagger_wester_test", "~> 0.1"
|
34
|
+
spec.add_dependency "jagger_inestivation_test", "~> 0.1"
|
35
|
+
spec.add_dependency "jagger_paxilliferous_test", "~> 0.1"
|
36
|
+
spec.add_dependency "jagger_lithophysa_test", "~> 0.1"
|
37
|
+
spec.add_dependency "jagger_dreamlike_test", "~> 0.1"
|
38
|
+
spec.add_dependency "jagger_unretiring_test", "~> 0.1"
|
39
|
+
spec.add_dependency "jagger_Campanian_test", "~> 0.1"
|
40
|
+
spec.add_dependency "jagger_acetifier_test", "~> 0.1"
|
41
|
+
spec.add_dependency "jagger_periodontum_test", "~> 0.1"
|
42
|
+
spec.add_dependency "jagger_candlestickward_test", "~> 0.1"
|
43
|
+
spec.add_dependency "jagger_Paulism_test", "~> 0.1"
|
44
|
+
spec.add_dependency "jagger_nonappointment_test", "~> 0.1"
|
45
|
+
spec.add_dependency "jagger_unrigorous_test", "~> 0.1"
|
46
|
+
spec.add_dependency "jagger_Chablis_test", "~> 0.1"
|
47
|
+
spec.add_dependency "jagger_zooculture_test", "~> 0.1"
|
48
|
+
spec.add_dependency "jagger_troubledly_test", "~> 0.1"
|
49
|
+
spec.add_dependency "jagger_metagnostic_test", "~> 0.1"
|
50
|
+
spec.add_dependency "jagger_thurible_test", "~> 0.1"
|
51
|
+
spec.add_dependency "jagger_estimableness_test", "~> 0.1"
|
52
|
+
spec.add_dependency "jagger_globularness_test", "~> 0.1"
|
53
|
+
spec.add_dependency "jagger_plastogamic_test", "~> 0.1"
|
54
|
+
spec.add_dependency "jagger_muriti_test", "~> 0.1"
|
55
|
+
spec.add_dependency "jagger_perendination_test", "~> 0.1"
|
56
|
+
spec.add_dependency "jagger_graminicolous_test", "~> 0.1"
|
57
|
+
spec.add_dependency "jagger_rimmed_test", "~> 0.1"
|
58
|
+
spec.add_dependency "polygamous_entrepas", "~> 0.1"
|
59
|
+
spec.add_dependency "evangelistically_glyphograph", "~> 0.1"
|
60
|
+
spec.add_dependency "spectrally_serow", "~> 0.1"
|
61
|
+
spec.add_dependency "discigerous_sostenuto", "~> 0.1"
|
62
|
+
spec.add_dependency "Phaeosporeae_insistive", "~> 0.1"
|
63
|
+
spec.add_dependency "mallowwort_bineweed", "~> 0.1"
|
64
|
+
spec.add_dependency "remorsefulness_tissued", "~> 0.1"
|
65
|
+
spec.add_dependency "Scolymus_dalle", "~> 0.1"
|
66
|
+
spec.add_dependency "bepistoled_epitactic", "~> 0.1"
|
67
|
+
spec.add_dependency "incrystallizable_Anthozoa", "~> 0.1"
|
68
|
+
spec.add_dependency "unstrewn_trombe", "~> 0.1"
|
69
|
+
spec.add_dependency "embarrassing_biometer", "~> 0.1"
|
70
|
+
spec.add_dependency "hypersystolic_lycoperdoid", "~> 0.1"
|
71
|
+
spec.add_dependency "zoophytal_hypate", "~> 0.1"
|
72
|
+
spec.add_dependency "autoecic_Sinophile", "~> 0.1"
|
73
|
+
spec.add_dependency "superconscious_reviewish", "~> 0.1"
|
74
|
+
spec.add_dependency "revolutionize_undividedly", "~> 0.1"
|
75
|
+
spec.add_dependency "effeminacy_malassociation", "~> 0.1"
|
76
|
+
spec.add_dependency "bineweed_disanagrammatize", "~> 0.1"
|
77
|
+
spec.add_dependency "anagram_unfretting", "~> 0.1"
|
78
|
+
spec.add_dependency "sausage_unfellow", "~> 0.1"
|
79
|
+
spec.add_dependency "Sabbathkeeping_sunshining", "~> 0.1"
|
80
|
+
spec.add_dependency "onewhere_verbolatry", "~> 0.1"
|
81
|
+
spec.add_dependency "misalignment_thwarteous", "~> 0.1"
|
82
|
+
spec.add_dependency "entitatively_equilobed", "~> 0.1"
|
83
|
+
spec.add_dependency "platform_vindicatively", "~> 0.1"
|
84
|
+
spec.add_dependency "pandemic_ovicellular", "~> 0.1"
|
85
|
+
spec.add_dependency "nullibiquitous_shinwood", "~> 0.1"
|
86
|
+
spec.add_dependency "appropriator_vilification", "~> 0.1"
|
87
|
+
spec.add_dependency "Alkaphrah_semimystic", "~> 0.1"
|
88
|
+
spec.add_dependency "flutterer_semispheroidal", "~> 0.1"
|
89
|
+
spec.add_dependency "relegate_Mammalia", "~> 0.1"
|
90
|
+
spec.add_dependency "midget_spermatogenetic", "~> 0.1"
|
91
|
+
spec.add_dependency "testator_stepparent", "~> 0.1"
|
92
|
+
spec.add_dependency "Toluifera_galuth", "~> 0.1"
|
93
|
+
spec.add_dependency "precast_unblurred", "~> 0.1"
|
94
|
+
spec.add_dependency "Alberta_goliathize", "~> 0.1"
|
95
|
+
spec.add_dependency "sulphurweed_adminiculate", "~> 0.1"
|
96
|
+
spec.add_dependency "ectal_isatogen", "~> 0.1"
|
97
|
+
spec.add_dependency "mongreldom_reaeration", "~> 0.1"
|
98
|
+
spec.add_dependency "uniliteral_meteorical", "~> 0.1"
|
99
|
+
spec.add_dependency "geyser_boder", "~> 0.1"
|
100
|
+
spec.add_dependency "doorless_pelycometer", "~> 0.1"
|
101
|
+
spec.add_dependency "selenography_platymyoid", "~> 0.1"
|
102
|
+
spec.add_dependency "philhippic_anthropogenetic", "~> 0.1"
|
103
|
+
spec.add_dependency "wastement_aripple", "~> 0.1"
|
104
|
+
spec.add_dependency "anthobiology_pollicar", "~> 0.1"
|
105
|
+
spec.add_dependency "bowwort_Libytheidae", "~> 0.1"
|
106
|
+
spec.add_dependency "lech_subtypical", "~> 0.1"
|
107
|
+
spec.add_dependency "unreproachableness_countertype", "~> 0.1"
|
108
|
+
spec.add_dependency "stereometric_paresthesia", "~> 0.1"
|
109
|
+
spec.add_dependency "squawkie_favoress", "~> 0.1"
|
110
|
+
spec.add_dependency "brachyglossal_sporangite", "~> 0.1"
|
111
|
+
spec.add_dependency "reprocurable_earthworm", "~> 0.1"
|
112
|
+
spec.add_dependency "labrys_nonextracted", "~> 0.1"
|
113
|
+
spec.add_dependency "unsighting_superformidable", "~> 0.1"
|
114
|
+
spec.add_dependency "thonged_enharmonically", "~> 0.1"
|
115
|
+
spec.add_dependency "beefwood_wonderland", "~> 0.1"
|
116
|
+
spec.add_dependency "deertongue_damningness", "~> 0.1"
|
117
|
+
spec.add_dependency "atmologic_finestill", "~> 0.1"
|
118
|
+
spec.add_dependency "subconvex_Gregorianizer", "~> 0.1"
|
119
|
+
spec.add_dependency "koombar_overparted", "~> 0.1"
|
120
|
+
spec.add_dependency "Terpsichorean_pillowing", "~> 0.1"
|
121
|
+
spec.add_dependency "cholerrhagia_tetrapterous", "~> 0.1"
|
122
|
+
spec.add_dependency "nonchanging_corticiform", "~> 0.1"
|
123
|
+
spec.add_dependency "stellular_untilt", "~> 0.1"
|
124
|
+
spec.add_dependency "caliphal_traditionary", "~> 0.1"
|
125
|
+
spec.add_dependency "cardol_Chaetura", "~> 0.1"
|
126
|
+
spec.add_dependency "Cujam_celiectomy", "~> 0.1"
|
127
|
+
spec.add_dependency "petalon_inimitably", "~> 0.1"
|
128
|
+
spec.add_dependency "odontologist_clothespin", "~> 0.1"
|
129
|
+
spec.add_dependency "yite_umbelliferone", "~> 0.1"
|
130
|
+
spec.add_dependency "hepatotomy_stude", "~> 0.1"
|
131
|
+
spec.add_dependency "leadenheartedness_colloidochemical", "~> 0.1"
|
132
|
+
spec.add_dependency "grabhook_settable", "~> 0.1"
|
133
|
+
spec.add_dependency "negligibleness_scurrier", "~> 0.1"
|
134
|
+
spec.add_dependency "darlingly_hangie", "~> 0.1"
|
135
|
+
spec.add_dependency "sagum_lusciously", "~> 0.1"
|
136
|
+
spec.add_dependency "epimer_Hafgan", "~> 0.1"
|
137
|
+
spec.add_dependency "traditionalism_strychnia", "~> 0.1"
|
138
|
+
spec.add_dependency "confessable_cacomagician", "~> 0.1"
|
139
|
+
spec.add_dependency "textman_obclavate", "~> 0.1"
|
140
|
+
spec.add_dependency "goffering_Moniliaceae", "~> 0.1"
|
141
|
+
spec.add_dependency "bupleurol_nonjurable", "~> 0.1"
|
142
|
+
spec.add_dependency "blunk_glucosidic", "~> 0.1"
|
143
|
+
spec.add_dependency "ampangabeite_Turcian", "~> 0.1"
|
144
|
+
spec.add_dependency "guiltlessness_nonnaval", "~> 0.1"
|
145
|
+
spec.add_dependency "conducingly_prefeudalic", "~> 0.1"
|
146
|
+
spec.add_dependency "posterioristic_permanent", "~> 0.1"
|
147
|
+
spec.add_dependency "coyol_conscriptionist", "~> 0.1"
|
148
|
+
spec.add_dependency "pohna_misrepute", "~> 0.1"
|
149
|
+
spec.add_dependency "citied_calcine", "~> 0.1"
|
150
|
+
spec.add_dependency "atoll_unwhiskered", "~> 0.1"
|
151
|
+
spec.add_dependency "overbroaden_interdash", "~> 0.1"
|
152
|
+
spec.add_dependency "pockmantie_edder", "~> 0.1"
|
153
|
+
spec.add_dependency "gratification_uncharily", "~> 0.1"
|
154
|
+
spec.add_dependency "Mobula_submaster", "~> 0.1"
|
155
|
+
spec.add_dependency "dispone_queendom", "~> 0.1"
|
156
|
+
spec.add_dependency "quixotically_stipula", "~> 0.1"
|
157
|
+
spec.add_dependency "toecap_Stefan", "~> 0.1"
|
158
|
+
spec.add_dependency "aristocracy_plak", "~> 0.1"
|
159
|
+
spec.add_dependency "tantrism_scribblingly", "~> 0.1"
|
160
|
+
spec.add_dependency "unmysticize_pashadom", "~> 0.1"
|
161
|
+
spec.add_dependency "Nerium_Amphigamae", "~> 0.1"
|
162
|
+
spec.add_dependency "uninvigorated_weeness", "~> 0.1"
|
163
|
+
spec.add_dependency "photoprint_Malebolge", "~> 0.1"
|
164
|
+
spec.add_dependency "unconvinced_class", "~> 0.1"
|
165
|
+
spec.add_dependency "apiculturist_healder", "~> 0.1"
|
166
|
+
spec.add_dependency "unsubjected_osteoclasis", "~> 0.1"
|
167
|
+
spec.add_dependency "avulsion_autobiography", "~> 0.1"
|
168
|
+
spec.add_dependency "phacoidal_fasibitikite", "~> 0.1"
|
169
|
+
spec.add_dependency "cichoriaceous_plurispiral", "~> 0.1"
|
170
|
+
spec.add_dependency "pelvisternal_hypertoxic", "~> 0.1"
|
171
|
+
spec.add_dependency "transiency_houselessness", "~> 0.1"
|
172
|
+
spec.add_dependency "heterothermal_reefable", "~> 0.1"
|
173
|
+
spec.add_dependency "autogravure_crystalloluminescence", "~> 0.1"
|
174
|
+
spec.add_dependency "aparthrosis_exfodiate", "~> 0.1"
|
175
|
+
spec.add_dependency "Heterophaga_ruffin", "~> 0.1"
|
176
|
+
spec.add_dependency "scutate_autography", "~> 0.1"
|
177
|
+
spec.add_dependency "catastrophe_syringomyelia", "~> 0.1"
|
178
|
+
spec.add_dependency "lucumia_upliftingness", "~> 0.1"
|
179
|
+
spec.add_dependency "unpromoted_complexion", "~> 0.1"
|
180
|
+
spec.add_dependency "ropelaying_daguerreotype", "~> 0.1"
|
181
|
+
spec.add_dependency "prudishness_tyrocidine", "~> 0.1"
|
182
|
+
spec.add_dependency "honeymoonshine_uredinia", "~> 0.1"
|
183
|
+
spec.add_dependency "interstadial_acaciin", "~> 0.1"
|
184
|
+
spec.add_dependency "studfish_unregretfully", "~> 0.1"
|
185
|
+
spec.add_dependency "Gastraeadae_zipper", "~> 0.1"
|
186
|
+
spec.add_dependency "tapstress_nonpartisanship", "~> 0.1"
|
187
|
+
spec.add_dependency "indenter_kikawaeo", "~> 0.1"
|
188
|
+
spec.add_dependency "insalubrious_illusionistic", "~> 0.1"
|
189
|
+
spec.add_dependency "Adaize_ultrademocratic", "~> 0.1"
|
190
|
+
spec.add_dependency "monopodous_unplebeian", "~> 0.1"
|
191
|
+
end
|