dev_orbit 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 49d580cf75ef85e8e082e763b2c48232431ce5f945edb6f28050a16d98f717b8
4
- data.tar.gz: 65f47c79b4f40649c9e36a7a4186c854340d335e503d503927a81cb06027c1d2
3
+ metadata.gz: 198c77f0fa496da26f71f8fa4328a38fec80522b439599756236d8eaf35023a4
4
+ data.tar.gz: d318cb75b421a63af7d18afa30264c99362e97ac81169b05fd944af8c31407a2
5
5
  SHA512:
6
- metadata.gz: bda03fdecb838c3b11f217a7a5da316cb05a64942aaadad0b6bf17d82aae00792af8ceed8250c259e7b3de2933836e338c9a6730eb584a897544ff7061cae5b5
7
- data.tar.gz: 4caf442b3598ec3727604049825d6cfc90f8a47bbdc5b0942a2693b82e8a8d6eb1550f6dd4c48a5ddfd805dc4849fbead1213923229e5356d3421430c0847e7a
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.11.7-arm64-darwin)
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DevOrbit
4
- VERSION = "0.5.1"
4
+ VERSION = "0.5.2"
5
5
  end
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.1
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-07-11 00:00:00.000000000 Z
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.2.15
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: []