dev_orbit 0.5.1 → 0.5.2
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 +4 -4
- data/Gemfile.lock +4 -1
- data/README.md +6 -0
- data/lib/dev_orbit/dev.rb +3 -0
- data/lib/dev_orbit/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 198c77f0fa496da26f71f8fa4328a38fec80522b439599756236d8eaf35023a4
|
|
4
|
+
data.tar.gz: d318cb75b421a63af7d18afa30264c99362e97ac81169b05fd944af8c31407a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3091757d9601923ff1ca557081e5bd667b051e8ea300952352dff07e6fcd914cdf19fb878b319ec12f48892dcdb3ecc700d3f518a23c862e06a8a1566e034e9
|
|
7
|
+
data.tar.gz: 2bf38be63bdce7b968bd767ceeaea6ea813c654712a8ac9008b5ffec247d50d7452817c76316a292200a4257b1725647d82c3a57e7cd5ed61dbb316562230ba8
|
data/Gemfile.lock
CHANGED
|
@@ -60,7 +60,9 @@ GEM
|
|
|
60
60
|
crass (~> 1.0.2)
|
|
61
61
|
nokogiri (>= 1.5.9)
|
|
62
62
|
minitest (5.14.4)
|
|
63
|
-
nokogiri (1.
|
|
63
|
+
nokogiri (1.12.5-arm64-darwin)
|
|
64
|
+
racc (~> 1.4)
|
|
65
|
+
nokogiri (1.12.5-x86_64-linux)
|
|
64
66
|
racc (~> 1.4)
|
|
65
67
|
orbit_activities (0.2.2)
|
|
66
68
|
http (~> 4.4)
|
|
@@ -121,6 +123,7 @@ GEM
|
|
|
121
123
|
|
|
122
124
|
PLATFORMS
|
|
123
125
|
arm64-darwin-20
|
|
126
|
+
x86_64-linux
|
|
124
127
|
|
|
125
128
|
DEPENDENCIES
|
|
126
129
|
byebug
|
data/README.md
CHANGED
|
@@ -116,6 +116,12 @@ $ ORBIT_API_KEY='...' ORBIT_WORKSPACE='...' DEV_API_KEY='...' DEV_ORGANIZATION='
|
|
|
116
116
|
```
|
|
117
117
|
**Add the `--historical-import` flag to your CLI command to perform a historical import of all your DEV comments using the CLI.**
|
|
118
118
|
|
|
119
|
+
## GitHub Actions Automation Setup
|
|
120
|
+
|
|
121
|
+
⚡ You can set up this integration in a matter of minutes using our GitHub Actions template. It will run regularly to add new activities to your Orbit workspace. All you need is a GitHub account.
|
|
122
|
+
|
|
123
|
+
[See our guide for setting up this automation](https://github.com/orbit-love/github-actions-templates/blob/main/DEV/README.md).
|
|
124
|
+
|
|
119
125
|
## Contributing
|
|
120
126
|
|
|
121
127
|
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).
|
data/lib/dev_orbit/dev.rb
CHANGED
|
@@ -76,6 +76,7 @@ module DevOrbit
|
|
|
76
76
|
https.use_ssl = true
|
|
77
77
|
|
|
78
78
|
request = Net::HTTP::Get.new(url)
|
|
79
|
+
request["User-Agent"] = "community-ruby-dev-orbit/#{DevOrbit::VERSION}"
|
|
79
80
|
|
|
80
81
|
response = https.request(request)
|
|
81
82
|
|
|
@@ -105,6 +106,7 @@ module DevOrbit
|
|
|
105
106
|
|
|
106
107
|
request = Net::HTTP::Get.new(url)
|
|
107
108
|
request["api_key"] = @api_key
|
|
109
|
+
request["User-Agent"] = "community-ruby-dev-orbit/#{DevOrbit::VERSION}"
|
|
108
110
|
|
|
109
111
|
response = https.request(request)
|
|
110
112
|
|
|
@@ -127,6 +129,7 @@ module DevOrbit
|
|
|
127
129
|
https.use_ssl = true
|
|
128
130
|
|
|
129
131
|
request = Net::HTTP::Get.new(url)
|
|
132
|
+
request["User-Agent"] = "community-ruby-dev-orbit/#{DevOrbit::VERSION}"
|
|
130
133
|
|
|
131
134
|
response = https.request(request)
|
|
132
135
|
|
data/lib/dev_orbit/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dev_orbit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Orbit DevRel
|
|
8
8
|
- Ben Greenberg
|
|
9
|
-
autorequire:
|
|
9
|
+
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2021-
|
|
12
|
+
date: 2021-12-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activesupport
|
|
@@ -180,7 +180,7 @@ metadata:
|
|
|
180
180
|
homepage_uri: https://github.com/orbit-love/community-ruby-dev-orbit
|
|
181
181
|
source_code_uri: https://github.com/orbit-love/community-ruby-dev-orbit
|
|
182
182
|
changelog_uri: https://github.com/orbit-love/community-ruby-dev-orbit/blob/main/CHANGELOG.md
|
|
183
|
-
post_install_message:
|
|
183
|
+
post_install_message:
|
|
184
184
|
rdoc_options: []
|
|
185
185
|
require_paths:
|
|
186
186
|
- lib
|
|
@@ -195,8 +195,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
195
195
|
- !ruby/object:Gem::Version
|
|
196
196
|
version: '0'
|
|
197
197
|
requirements: []
|
|
198
|
-
rubygems_version: 3.
|
|
199
|
-
signing_key:
|
|
198
|
+
rubygems_version: 3.1.4
|
|
199
|
+
signing_key:
|
|
200
200
|
specification_version: 4
|
|
201
201
|
summary: Integrate DEV interactions into your Orbit workspace
|
|
202
202
|
test_files: []
|