import_rb 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +6 -1
- data/CODE_OF_CONDUCT.md +29 -77
- data/README.md +8 -37
- data/Rakefile +4 -3
- data/lib/import_rb/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c497ef057f0fdb7bd018cb11f52f6ba8ecc4fbb403469179846998a6f3300af1
|
4
|
+
data.tar.gz: 2c3155db01d88bf05f59f0bee7200f002423ab9bd47070e109893c3827cf49af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65884b3e38b88e83e2d6f28f846dc61969072ae9b4d8d50447e7c317b8aba7473f866ee633931a5566c84971bb278b641381a2f01dc9de6becf2c0bd37fc9d90
|
7
|
+
data.tar.gz: e1abc83a78cf2e96b1a2b6681497b74748ece237ae27645a97db3bc8f67ffcde8ed804392dad2df620d404c76bdde9da63fee28e4eb3e23409fe65090cc3bfb9
|
data/.rubocop.yml
CHANGED
@@ -1,8 +1,13 @@
|
|
1
1
|
AllCops:
|
2
|
-
TargetRubyVersion:
|
2
|
+
TargetRubyVersion: 2.6
|
3
3
|
|
4
4
|
Style/StringLiterals:
|
5
|
+
Enabled: true
|
5
6
|
EnforcedStyle: double_quotes
|
6
7
|
|
7
8
|
Style/StringLiteralsInInterpolation:
|
9
|
+
Enabled: true
|
8
10
|
EnforcedStyle: double_quotes
|
11
|
+
|
12
|
+
Layout/LineLength:
|
13
|
+
Max: 120
|
data/CODE_OF_CONDUCT.md
CHANGED
@@ -2,131 +2,83 @@
|
|
2
2
|
|
3
3
|
## Our Pledge
|
4
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.
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
11
6
|
|
12
|
-
We pledge to act and interact in ways that contribute to an open, welcoming,
|
13
|
-
diverse, inclusive, and healthy community.
|
7
|
+
We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
|
14
8
|
|
15
9
|
## Our Standards
|
16
10
|
|
17
|
-
Examples of behavior that contributes to a positive environment for our
|
18
|
-
community include:
|
11
|
+
Examples of behavior that contributes to a positive environment for our community include:
|
19
12
|
|
20
13
|
* Demonstrating empathy and kindness toward other people
|
21
14
|
* Being respectful of differing opinions, viewpoints, and experiences
|
22
15
|
* Giving and gracefully accepting constructive feedback
|
23
|
-
* Accepting responsibility and apologizing to those affected by our mistakes,
|
24
|
-
|
25
|
-
* Focusing on what is best not just for us as individuals, but for the overall
|
26
|
-
community
|
16
|
+
* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
|
17
|
+
* Focusing on what is best not just for us as individuals, but for the overall community
|
27
18
|
|
28
19
|
Examples of unacceptable behavior include:
|
29
20
|
|
30
|
-
* The use of sexualized language or imagery, and sexual attention or
|
31
|
-
any kind
|
21
|
+
* The use of sexualized language or imagery, and sexual attention or
|
22
|
+
advances of any kind
|
32
23
|
* Trolling, insulting or derogatory comments, and personal or political attacks
|
33
24
|
* Public or private harassment
|
34
|
-
* Publishing others' private information, such as a physical or email
|
35
|
-
without their explicit permission
|
25
|
+
* Publishing others' private information, such as a physical or email
|
26
|
+
address, without their explicit permission
|
36
27
|
* Other conduct which could reasonably be considered inappropriate in a
|
37
28
|
professional setting
|
38
29
|
|
39
30
|
## Enforcement Responsibilities
|
40
31
|
|
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.
|
32
|
+
Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
|
45
33
|
|
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.
|
34
|
+
Community leaders 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, and will communicate reasons for moderation decisions when appropriate.
|
50
35
|
|
51
36
|
## Scope
|
52
37
|
|
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.
|
38
|
+
This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
|
58
39
|
|
59
40
|
## Enforcement
|
60
41
|
|
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.
|
42
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at faraaz98@live.com. All complaints will be reviewed and investigated promptly and fairly.
|
65
43
|
|
66
|
-
All community leaders are obligated to respect the privacy and security of the
|
67
|
-
reporter of any incident.
|
44
|
+
All community leaders are obligated to respect the privacy and security of the reporter of any incident.
|
68
45
|
|
69
46
|
## Enforcement Guidelines
|
70
47
|
|
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:
|
48
|
+
Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
|
73
49
|
|
74
50
|
### 1. Correction
|
75
51
|
|
76
|
-
**Community Impact**: Use of inappropriate language or other behavior deemed
|
77
|
-
unprofessional or unwelcome in the community.
|
52
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
|
78
53
|
|
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.
|
54
|
+
**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
|
82
55
|
|
83
56
|
### 2. Warning
|
84
57
|
|
85
|
-
**Community Impact**: A violation through a single incident or series of
|
86
|
-
actions.
|
58
|
+
**Community Impact**: A violation through a single incident or series of actions.
|
87
59
|
|
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.
|
60
|
+
**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
|
94
61
|
|
95
62
|
### 3. Temporary Ban
|
96
63
|
|
97
|
-
**Community Impact**: A serious violation of community standards, including
|
98
|
-
sustained inappropriate behavior.
|
64
|
+
**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
|
99
65
|
|
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.
|
66
|
+
**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
|
105
67
|
|
106
68
|
### 4. Permanent Ban
|
107
69
|
|
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.
|
70
|
+
**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
|
111
71
|
|
112
|
-
**Consequence**: A permanent ban from any sort of public interaction within the
|
113
|
-
community.
|
72
|
+
**Consequence**: A permanent ban from any sort of public interaction within the community.
|
114
73
|
|
115
74
|
## Attribution
|
116
75
|
|
117
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
118
|
-
version
|
119
|
-
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
76
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
|
77
|
+
available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
120
78
|
|
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].
|
79
|
+
Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
|
127
80
|
|
128
81
|
[homepage]: https://www.contributor-covenant.org
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
[translations]: https://www.contributor-covenant.org/translations
|
82
|
+
|
83
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
84
|
+
https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
|
data/README.md
CHANGED
@@ -1,53 +1,24 @@
|
|
1
1
|
# ImportRb
|
2
2
|
|
3
|
-
|
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/import_rb`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
6
|
|
5
7
|
## Installation
|
6
8
|
|
9
|
+
TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_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
|
+
|
7
11
|
Install the gem and add to the application's Gemfile by executing:
|
8
12
|
|
9
|
-
$ bundle add
|
13
|
+
$ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
|
10
14
|
|
11
15
|
If bundler is not being used to manage dependencies, install the gem by executing:
|
12
16
|
|
13
|
-
$ gem install
|
17
|
+
$ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
|
14
18
|
|
15
19
|
## Usage
|
16
20
|
|
17
|
-
|
18
|
-
|
19
|
-
```ruby
|
20
|
-
class Alpha
|
21
|
-
def speak = "alpha hath spoken"
|
22
|
-
end
|
23
|
-
|
24
|
-
class Beta
|
25
|
-
def speak = "beta hath spoken"
|
26
|
-
end
|
27
|
-
|
28
|
-
class Gamma
|
29
|
-
def speak = "gamma hath spoken"
|
30
|
-
end
|
31
|
-
```
|
32
|
-
|
33
|
-
You can import specific constants from a file into your file:
|
34
|
-
```ruby
|
35
|
-
import [:Alpha, :Beta], from: 'spec/fixtures/sample.rb'
|
36
|
-
```
|
37
|
-
|
38
|
-
You can import into the global namespace or into another constant:
|
39
|
-
```ruby
|
40
|
-
class SomeClass; end
|
41
|
-
module SomeModule; end
|
42
|
-
|
43
|
-
SomeClass.import [:Alpha, :Beta], from: 'sample.rb'
|
44
|
-
SomeModule.import [:Alpha, :Beta], from: 'sample.rb'
|
45
|
-
```
|
46
|
-
|
47
|
-
You can also import a constant and give it another name:
|
48
|
-
```ruby
|
49
|
-
import [:Alpha.as(:Alif), :Beta], from: 'spec/fixtures/sample.rb'
|
50
|
-
```
|
21
|
+
TODO: Write usage instructions here
|
51
22
|
|
52
23
|
## Development
|
53
24
|
|
data/Rakefile
CHANGED
@@ -2,10 +2,11 @@
|
|
2
2
|
|
3
3
|
require "bundler/gem_tasks"
|
4
4
|
require "rspec/core/rake_task"
|
5
|
-
require "rubocop/rake_task"
|
6
5
|
|
7
6
|
RSpec::Core::RakeTask.new(:spec)
|
7
|
+
|
8
|
+
require "rubocop/rake_task"
|
9
|
+
|
8
10
|
RuboCop::RakeTask.new
|
9
|
-
GEMSPEC = Gem::Specification.load("import_rb.gemspec")
|
10
11
|
|
11
|
-
task default:
|
12
|
+
task default: %i[spec rubocop]
|
data/lib/import_rb/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: import_rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Syed Faraaz Ahmad
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: prism
|
@@ -47,8 +47,8 @@ licenses:
|
|
47
47
|
metadata:
|
48
48
|
allowed_push_host: https://rubygems.org
|
49
49
|
homepage_uri: https://github.com/faraazahmad/import_rb
|
50
|
-
source_code_uri: https://github.com/
|
51
|
-
changelog_uri: https://github.com/
|
50
|
+
source_code_uri: https://github.com/faraazahmad/import_rb
|
51
|
+
changelog_uri: https://github.com/faraazahmad/import_rb
|
52
52
|
post_install_message:
|
53
53
|
rdoc_options: []
|
54
54
|
require_paths:
|