mcrt 1.4.0 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CODE_OF_CONDUCT.md +73 -0
  3. data/lib/mcrt.rb +12 -1
  4. data/mcrt.gemspec +1 -1
  5. metadata +3 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 21e88975eceade72eed20ef8be69a9a1beb6402f
4
- data.tar.gz: a1af957e9c9adc654ed7b177693d98402c5c5fc0
3
+ metadata.gz: 94b2691c7cbf7c9ef7551e5aebe739d19a6b19ec
4
+ data.tar.gz: 7b3aefa1ccebe96458ba54353d474afe87ef1f8b
5
5
  SHA512:
6
- metadata.gz: b2ef8c94450bf9c657ba33ee1122fbc92e0bdcf932207d4133d311d27fba40ed9c022283a28435e9ba0cfd8e58e768e42bd9ea18cec6a46b52b47f83da6d5091
7
- data.tar.gz: 3e5a7166739d58e690b1910e7a1f276283083b3269cbd94805ba60469b08f5a4bcfc1e91fdfe9d79255b4d1d521c33becbcd39ff39541510f1ed64503dae46f9
6
+ metadata.gz: e2ed261e30e6dec106caf120817fd9f529f58468091905bcd428f255bc8910a29647587fd71b92fd1706e37e69e4d9f5c97bbb597e114aabc3b309fb4dbad83b
7
+ data.tar.gz: 3da5614e14fb896d3cb001109ad3c46128aa46e8564e68e5296b99af969ddcf7e0ecac990102874ee1ffa3f559787554345a8fe6fc2cf85005719b6fda00a58a
@@ -0,0 +1,73 @@
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
+ education, socio-economic status, nationality, personal appearance, race,
10
+ religion, or sexual identity and 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 peter@realityforge.org. 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://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72
+
73
+ [homepage]: https://www.contributor-covenant.org
data/lib/mcrt.rb CHANGED
@@ -53,10 +53,21 @@ class MavenCentralPublishTool
53
53
  repo['profileName'] == profile_name &&
54
54
  repo['userId'] == self.username &&
55
55
  repo['userAgent'] == self.user_agent &&
56
- (!ignore_transitioning_repositories || !repo['transitioning'])
56
+ (!ignore_transitioning_repositories || !repo['transitioning']) &&
57
+ get_my_ip_addresses.any?{|a| a == repo['ipAddress']}
57
58
  end
58
59
  end
59
60
 
61
+ def get_my_ip_addresses
62
+ addresses = Socket.ip_address_list.collect{|a| a.ip_address.to_s }
63
+ begin
64
+ addresses << Net::HTTP.get(URI('http://www.myexternalip.com/raw')).strip
65
+ rescue Error
66
+ # ignored
67
+ end
68
+ addresses
69
+ end
70
+
60
71
  def close_repository(repository_id, description)
61
72
  post_request('https://oss.sonatype.org/service/local/staging/bulk/close',
62
73
  JSON.pretty_generate('data' => { 'description' => description, 'stagedRepositoryIds' => [repository_id] }))
data/mcrt.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{mcrt}
5
- s.version = '1.4.0'
5
+ s.version = '1.5.0'
6
6
  s.platform = Gem::Platform::RUBY
7
7
 
8
8
  s.authors = ['Peter Donald']
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mcrt
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Donald
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-16 00:00:00.000000000 Z
11
+ date: 2018-03-27 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Maven Central Release Tool.
14
14
  email: peter@realityforge.org
@@ -20,6 +20,7 @@ files:
20
20
  - ".gitignore"
21
21
  - ".ruby-version"
22
22
  - ".travis.yml"
23
+ - CODE_OF_CONDUCT.md
23
24
  - CONTRIBUTING.md
24
25
  - Gemfile
25
26
  - LICENSE