dev_orbit 0.0.10 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/README.md +6 -3
- data/bin/dev_orbit +1 -1
- data/dev_orbit.gemspec +5 -5
- data/lib/dev_orbit/version.rb +1 -1
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: add9a71f83902b74177d6f18be9244a6046ddfce66d9bee7faa7441508521e70
|
4
|
+
data.tar.gz: dca028c4a584988d396397eb9ce128efe4689d97e8a1ee3cf033b95d4a6c31aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e8a1075c03b2210ed34c00b6ca5be13feefd2ca0d6b520b4b5d6a6f9b6279a46c69114b5506c5251f4c7b9e3b7c1e74e286e0ec676da2d26a748d503c0caf6b
|
7
|
+
data.tar.gz: 63e19fc5970490fc262b431937afdda818295a1506732b6286b17889b4fac5aac9c158420cd3a5633842c79e82763a5b84353d2b2a89f4c1f83b1bd280f2cf29
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,11 +1,14 @@
|
|
1
1
|
# DEV.to Interactions to Orbit Workspace
|
2
2
|
|
3
|
-
![Build Status](https://github.com/
|
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/
|
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/
|
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
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 = ["
|
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/
|
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/
|
19
|
-
spec.metadata["changelog_uri"] = "https://github.com/
|
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.
|
data/lib/dev_orbit/version.rb
CHANGED
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
|
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-
|
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
|
-
-
|
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/
|
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/
|
167
|
-
source_code_uri: https://github.com/
|
168
|
-
changelog_uri: https://github.com/
|
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:
|