cocoapods-jumanji 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +15 -0
- data/.vscode/launch.json +14 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +106 -0
- data/LICENSE.txt +21 -0
- data/README.md +44 -0
- data/Rakefile +2 -0
- data/bin/console +7 -0
- data/bin/setup +8 -0
- data/cocoapods-jumanji.gemspec +22 -0
- data/lib/cocoapods-jumanji/gem_version.rb +3 -0
- data/lib/cocoapods-jumanji.rb +1 -0
- metadata +114 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ae90911f31bfb8e76a713bbf822c9cfa03f0eaa80d6102a2452e5118dab0ea71
|
4
|
+
data.tar.gz: 855c416043e0b48421f57ba9bde6766e6b81609434b58655d00e92a3ff967592
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: cbdc67ff543f33a0d12f6d4a015f641f6fa374600d898ccc78ec639edd11dcbf5640d9c418cd16e87db84592c34d1d1b0a8c1dd6a23d09ad5b5c9b06b41a7a30
|
7
|
+
data.tar.gz: e9cafcaa4bf7c4dce5efa676230aabb42a80a579f62e303509eefee962c98603c5d2886b9ca330cdaf3c8dc9074989d3f4add1350d321d6a99e35d02a161c5f3
|
data/.gitignore
ADDED
data/.vscode/launch.json
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
{
|
2
|
+
// Use IntelliSense to learn about possible attributes.
|
3
|
+
// Hover to view descriptions of existing attributes.
|
4
|
+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
5
|
+
"version": "0.2.0",
|
6
|
+
"configurations": [
|
7
|
+
{
|
8
|
+
"name": "Debug Local File",
|
9
|
+
"type": "Ruby",
|
10
|
+
"request": "launch",
|
11
|
+
"program": "${workspaceRoot}/main.rb"
|
12
|
+
}
|
13
|
+
]
|
14
|
+
}
|
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 likuan.kuann@bytedance.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/Gemfile.lock
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cocoapods-jumanji (0.1.0)
|
5
|
+
cocoapods (> 1.8.0)
|
6
|
+
work_queue
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.byted.org/
|
10
|
+
specs:
|
11
|
+
CFPropertyList (3.0.3)
|
12
|
+
activesupport (5.2.6)
|
13
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
14
|
+
i18n (>= 0.7, < 2)
|
15
|
+
minitest (~> 5.1)
|
16
|
+
tzinfo (~> 1.1)
|
17
|
+
addressable (2.8.0)
|
18
|
+
public_suffix (>= 2.0.2, < 5.0)
|
19
|
+
algoliasearch (1.27.5)
|
20
|
+
httpclient (~> 2.8, >= 2.8.3)
|
21
|
+
json (>= 1.5.1)
|
22
|
+
atomos (0.1.3)
|
23
|
+
claide (1.0.3)
|
24
|
+
cocoapods (1.10.2)
|
25
|
+
addressable (~> 2.6)
|
26
|
+
claide (>= 1.0.2, < 2.0)
|
27
|
+
cocoapods-core (= 1.10.2)
|
28
|
+
cocoapods-deintegrate (>= 1.0.3, < 2.0)
|
29
|
+
cocoapods-downloader (>= 1.4.0, < 2.0)
|
30
|
+
cocoapods-plugins (>= 1.0.0, < 2.0)
|
31
|
+
cocoapods-search (>= 1.0.0, < 2.0)
|
32
|
+
cocoapods-trunk (>= 1.4.0, < 2.0)
|
33
|
+
cocoapods-try (>= 1.1.0, < 2.0)
|
34
|
+
colored2 (~> 3.1)
|
35
|
+
escape (~> 0.0.4)
|
36
|
+
fourflusher (>= 2.3.0, < 3.0)
|
37
|
+
gh_inspector (~> 1.0)
|
38
|
+
molinillo (~> 0.6.6)
|
39
|
+
nap (~> 1.0)
|
40
|
+
ruby-macho (~> 1.4)
|
41
|
+
xcodeproj (>= 1.19.0, < 2.0)
|
42
|
+
cocoapods-core (1.10.2)
|
43
|
+
activesupport (> 5.0, < 6)
|
44
|
+
addressable (~> 2.6)
|
45
|
+
algoliasearch (~> 1.0)
|
46
|
+
concurrent-ruby (~> 1.1)
|
47
|
+
fuzzy_match (~> 2.0.4)
|
48
|
+
nap (~> 1.0)
|
49
|
+
netrc (~> 0.11)
|
50
|
+
public_suffix
|
51
|
+
typhoeus (~> 1.0)
|
52
|
+
cocoapods-deintegrate (1.0.5)
|
53
|
+
cocoapods-downloader (1.5.0)
|
54
|
+
cocoapods-plugins (1.0.0)
|
55
|
+
nap
|
56
|
+
cocoapods-search (1.0.1)
|
57
|
+
cocoapods-trunk (1.6.0)
|
58
|
+
nap (>= 0.8, < 2.0)
|
59
|
+
netrc (~> 0.11)
|
60
|
+
cocoapods-try (1.2.0)
|
61
|
+
colored2 (3.1.2)
|
62
|
+
concurrent-ruby (1.1.9)
|
63
|
+
escape (0.0.4)
|
64
|
+
ethon (0.14.0)
|
65
|
+
ffi (>= 1.15.0)
|
66
|
+
ffi (1.15.4)
|
67
|
+
fourflusher (2.3.1)
|
68
|
+
fuzzy_match (2.0.4)
|
69
|
+
gh_inspector (1.1.3)
|
70
|
+
httpclient (2.8.3)
|
71
|
+
i18n (1.8.10)
|
72
|
+
concurrent-ruby (~> 1.0)
|
73
|
+
json (2.5.1)
|
74
|
+
minitest (5.14.4)
|
75
|
+
molinillo (0.6.6)
|
76
|
+
nanaimo (0.3.0)
|
77
|
+
nap (1.1.0)
|
78
|
+
netrc (0.11.0)
|
79
|
+
public_suffix (4.0.6)
|
80
|
+
rake (12.3.3)
|
81
|
+
rexml (3.2.5)
|
82
|
+
ruby-macho (1.4.0)
|
83
|
+
thread_safe (0.3.6)
|
84
|
+
typhoeus (1.4.0)
|
85
|
+
ethon (>= 0.9.0)
|
86
|
+
tzinfo (1.2.9)
|
87
|
+
thread_safe (~> 0.1)
|
88
|
+
work_queue (2.5.4)
|
89
|
+
xcodeproj (1.21.0)
|
90
|
+
CFPropertyList (>= 2.3.3, < 4.0)
|
91
|
+
atomos (~> 0.1.3)
|
92
|
+
claide (>= 1.0.2, < 2.0)
|
93
|
+
colored2 (~> 3.1)
|
94
|
+
nanaimo (~> 0.3.0)
|
95
|
+
rexml (~> 3.2.4)
|
96
|
+
|
97
|
+
PLATFORMS
|
98
|
+
ruby
|
99
|
+
|
100
|
+
DEPENDENCIES
|
101
|
+
bundler
|
102
|
+
cocoapods-jumanji!
|
103
|
+
rake (~> 12.0)
|
104
|
+
|
105
|
+
BUNDLED WITH
|
106
|
+
2.1.4
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2021 likuann
|
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
|
+
# Cocoapods::Jumanji
|
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/cocoapods/jumanji`. 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 'cocoapods-jumanji'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle install
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install cocoapods-jumanji
|
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. 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]/cocoapods-jumanji. 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]/cocoapods-jumanji/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 Cocoapods::Jumanji project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/cocoapods-jumanji/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
data/bin/setup
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
require_relative 'lib/cocoapods-jumanji/gem_version'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "cocoapods-jumanji"
|
5
|
+
spec.version = CocoapodsJumanji::VERSION
|
6
|
+
spec.authors = ["likuann"]
|
7
|
+
spec.email = ["likuan.kuann@bytedance.com"]
|
8
|
+
spec.summary = %q{A short summary of cocoapods-jumanji.}
|
9
|
+
spec.description = %q{A short description of cocoapods-jumanji.}
|
10
|
+
spec.homepage = "https://code.byted.org/ecom/cocoapods-jumanji.git"
|
11
|
+
spec.license = "MIT"
|
12
|
+
|
13
|
+
spec.files = `git ls-files`.split($/)
|
14
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
15
|
+
spec.require_paths = ["lib"]
|
16
|
+
|
17
|
+
spec.add_dependency 'cocoapods', '> 1.8.0'
|
18
|
+
spec.add_dependency 'work_queue'
|
19
|
+
|
20
|
+
spec.add_development_dependency 'bundler'
|
21
|
+
spec.add_development_dependency 'rake'
|
22
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require "cocoapods-jumanji/gem_version"
|
metadata
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cocoapods-jumanji
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- likuann
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-09-03 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: cocoapods
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 1.8.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.8.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: work_queue
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: A short description of cocoapods-jumanji.
|
70
|
+
email:
|
71
|
+
- likuan.kuann@bytedance.com
|
72
|
+
executables:
|
73
|
+
- console
|
74
|
+
- setup
|
75
|
+
extensions: []
|
76
|
+
extra_rdoc_files: []
|
77
|
+
files:
|
78
|
+
- ".gitignore"
|
79
|
+
- ".vscode/launch.json"
|
80
|
+
- CODE_OF_CONDUCT.md
|
81
|
+
- Gemfile
|
82
|
+
- Gemfile.lock
|
83
|
+
- LICENSE.txt
|
84
|
+
- README.md
|
85
|
+
- Rakefile
|
86
|
+
- bin/console
|
87
|
+
- bin/setup
|
88
|
+
- cocoapods-jumanji.gemspec
|
89
|
+
- lib/cocoapods-jumanji.rb
|
90
|
+
- lib/cocoapods-jumanji/gem_version.rb
|
91
|
+
homepage: https://code.byted.org/ecom/cocoapods-jumanji.git
|
92
|
+
licenses:
|
93
|
+
- MIT
|
94
|
+
metadata: {}
|
95
|
+
post_install_message:
|
96
|
+
rdoc_options: []
|
97
|
+
require_paths:
|
98
|
+
- lib
|
99
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '0'
|
109
|
+
requirements: []
|
110
|
+
rubygems_version: 3.2.3
|
111
|
+
signing_key:
|
112
|
+
specification_version: 4
|
113
|
+
summary: A short summary of cocoapods-jumanji.
|
114
|
+
test_files: []
|