dev_orbit 0.0.10 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: deba9c4bf14d7d8d11906b6b3e2a15f7e0c4dfc8e65ba5b7fa298e35c2a0877c
4
- data.tar.gz: ab09ace67d86209779ad99df66997e7f35009035b209dd71fd035e581b825b7a
3
+ metadata.gz: add9a71f83902b74177d6f18be9244a6046ddfce66d9bee7faa7441508521e70
4
+ data.tar.gz: dca028c4a584988d396397eb9ce128efe4689d97e8a1ee3cf033b95d4a6c31aa
5
5
  SHA512:
6
- metadata.gz: ce4ee9e896e5c1f6560e8253230b07456a290016359b5c385d727a520108d3ed8c1e92343687863e00d1b946d233098eeecc794026aa1fe06e24d927b0cb56c7
7
- data.tar.gz: a561ddd4cd678637da62a8a91e4436b8e5df63a0891f46b352606eb88578a60189c52dbe00f5ca620014819aa5cbc37b8d03c0faa607ecc63895dd136567aa1b
6
+ metadata.gz: 1e8a1075c03b2210ed34c00b6ca5be13feefd2ca0d6b520b4b5d6a6f9b6279a46c69114b5506c5251f4c7b9e3b7c1e74e286e0ec676da2d26a748d503c0caf6b
7
+ data.tar.gz: 63e19fc5970490fc262b431937afdda818295a1506732b6286b17889b4fac5aac9c158420cd3a5633842c79e82763a5b84353d2b2a89f4c1f83b1bd280f2cf29
data/CHANGELOG.md CHANGED
@@ -37,4 +37,8 @@
37
37
 
38
38
  ## [0.0.10] - 2021-04-23
39
39
 
40
- - Fix filter for DEV comments
40
+ - Fix filter for DEV comments
41
+ ## [0.1.0] - 2021-05-06
42
+
43
+ - Correct CLI `CheckFollowers` action
44
+ - Update gem specifications
data/README.md CHANGED
@@ -1,11 +1,14 @@
1
1
  # DEV.to Interactions to Orbit Workspace
2
2
 
3
- ![Build Status](https://github.com/bencgreenberg/dev_orbit/workflows/CI/badge.svg)
3
+ ![Build Status](https://github.com/orbit-love/community-ruby-dev-orbit/workflows/CI/badge.svg)
4
4
  [![Gem Version](https://badge.fury.io/rb/dev_orbit.svg)](https://badge.fury.io/rb/dev_orbit)
5
5
  [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.0-4baaaa.svg)](code_of_conduct.md)
6
6
 
7
7
  This is a Ruby gem that can be used to integrate your DEV interactions, like DEV comments on blog posts, into your organization's Orbit workspace.
8
8
 
9
+ |<p align="left">:sparkles:</p> This is a *community project*. The Orbit team does its best to maintain it and keep it up to date with any recent API changes.<br/><br/>We welcome community contributions to make sure that it stays current. <p align="right">:sparkles:</p>|
10
+ |-----------------------------------------|
11
+
9
12
  ## Installation
10
13
 
11
14
  Add this line to your application's Gemfile:
@@ -85,7 +88,7 @@ $ ORBIT_API_KEY='...' ORBIT_WORKSPACE='...' DEV_API_KEY='...' DEV_USERNAME='...'
85
88
 
86
89
  ## Contributing
87
90
 
88
- Bug reports and pull requests are welcome on GitHub at https://github.com/bencgreenberg/dev_orbit. 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/bencgreenberg/dev_orbit/blob/master/CODE_OF_CONDUCT.md).
91
+ Bug reports and pull requests are welcome on GitHub at https://github.com/orbit-love/community-ruby-dev-orbit. 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/orbit-love/community-ruby-dev-orbit/blob/main/CODE_OF_CONDUCT.md).
89
92
 
90
93
  ## License
91
94
 
@@ -93,4 +96,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
93
96
 
94
97
  ## Code of Conduct
95
98
 
96
- Everyone interacting in the project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/bencgreenberg/dev_orbit/blob/master/CODE_OF_CONDUCT.md).
99
+ Everyone interacting in the project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/orbit-love/community-ruby-dev-orbit/blob/main/CODE_OF_CONDUCT.md).
data/bin/dev_orbit CHANGED
@@ -33,5 +33,5 @@ end
33
33
  if check_followers
34
34
  puts "Checking for new DEV followers posting them to your Orbit workspace..."
35
35
  ARGV[0] = 'render'
36
- DevOrbit::Scripts::CheckComments.start(ARGV)
36
+ DevOrbit::Scripts::CheckFollowers.start(ARGV)
37
37
  end
data/dev_orbit.gemspec CHANGED
@@ -5,18 +5,18 @@ require_relative "lib/dev_orbit/version"
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "dev_orbit"
7
7
  spec.version = DevOrbit::VERSION
8
- spec.authors = ["Ben Greenberg"]
9
- spec.email = ["ben.greenberg@hey.com"]
8
+ spec.authors = ["Orbit DevRel", "Ben Greenberg"]
9
+ spec.email = ["devrel@orbit.love"]
10
10
 
11
11
  spec.summary = "Integrate DEV interactions into your Orbit workspace"
12
12
  spec.description = "This gem integrates DEV blog interactions like comments, etc. into your Orbit workspace"
13
- spec.homepage = "https://github.com/bencgreenberg/dev_orbit"
13
+ spec.homepage = "https://github.com/orbit-love/community-ruby-dev-orbit"
14
14
  spec.license = "MIT"
15
15
  spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
16
16
 
17
17
  spec.metadata["homepage_uri"] = spec.homepage
18
- spec.metadata["source_code_uri"] = "https://github.com/bencgreenberg/dev_orbit"
19
- spec.metadata["changelog_uri"] = "https://github.com/bencgreenberg/dev_orbit/blob/master/CHANGELOG.md"
18
+ spec.metadata["source_code_uri"] = "https://github.com/orbit-love/community-ruby-dev-orbit"
19
+ spec.metadata["changelog_uri"] = "https://github.com/orbit-love/community-ruby-dev-orbit/blob/main/CHANGELOG.md"
20
20
 
21
21
  # Specify which files should be added to the gem when it is released.
22
22
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DevOrbit
4
- VERSION = "0.0.10"
4
+ VERSION = "0.1.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dev_orbit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
+ - Orbit DevRel
7
8
  - Ben Greenberg
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2021-04-23 00:00:00.000000000 Z
12
+ date: 2021-05-06 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: activesupport
@@ -125,7 +126,7 @@ dependencies:
125
126
  description: This gem integrates DEV blog interactions like comments, etc. into your
126
127
  Orbit workspace
127
128
  email:
128
- - ben.greenberg@hey.com
129
+ - devrel@orbit.love
129
130
  executables:
130
131
  - console
131
132
  - dev_orbit
@@ -159,13 +160,13 @@ files:
159
160
  - lib/dev_orbit/version.rb
160
161
  - scripts/check_comments.rb
161
162
  - scripts/check_followers.rb
162
- homepage: https://github.com/bencgreenberg/dev_orbit
163
+ homepage: https://github.com/orbit-love/community-ruby-dev-orbit
163
164
  licenses:
164
165
  - MIT
165
166
  metadata:
166
- homepage_uri: https://github.com/bencgreenberg/dev_orbit
167
- source_code_uri: https://github.com/bencgreenberg/dev_orbit
168
- changelog_uri: https://github.com/bencgreenberg/dev_orbit/blob/master/CHANGELOG.md
167
+ homepage_uri: https://github.com/orbit-love/community-ruby-dev-orbit
168
+ source_code_uri: https://github.com/orbit-love/community-ruby-dev-orbit
169
+ changelog_uri: https://github.com/orbit-love/community-ruby-dev-orbit/blob/main/CHANGELOG.md
169
170
  post_install_message:
170
171
  rdoc_options: []
171
172
  require_paths: