dev_orbit 0.1.4 → 0.1.5

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: 3e05425d9aaf87e29581c96ef6a18602a711427500d424413d1571a077e0268c
4
- data.tar.gz: 0046a044b881dd69043d17998ef2b42428aff437239952cc43e9a77d3cbc4a0f
3
+ metadata.gz: d171db649e66e6a5c982a44e8188b40526f0d0714c2bc1910587ba892d44e2b7
4
+ data.tar.gz: dccbdb226266f0cad7551aa765cad38f75cc21b226de4dfd13f2ee4b07dc27fa
5
5
  SHA512:
6
- metadata.gz: f567cb12b3077d2aded59d894833bf0b72413c39b1f1ae6e9e27e9d03db02e9c68eb67742231462cfc98775be8abca94f22a6534fa52043149540fdcb57068af
7
- data.tar.gz: c03024792f967aacf7824ff750c12a65fa528c7581b09546a23256c3adb1dc37c12682f49192e2515a8ffc7ca2f69be566161ea39c833916d99a9dec3e6aa6b5
6
+ metadata.gz: e3479322756252837970a5fd3baaf07d7dbc55333a640969fa8f814a320f10763497df0b673fe811dfe420b5f7f2c11447ec435d6d590f3cede3bf729e4756fb
7
+ data.tar.gz: 294b99070ad389f7abe9f031a4a52c8f6c3e4d52b2b0beec29b742767fe53830f203cd51827c3f08d976e9a4774faad4ae4ca2576ba515ee4f33e7fa3e86b05b
data/README.md CHANGED
@@ -4,11 +4,14 @@
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
- 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.
7
+ Add your DEV interactions into your Orbit workspace with this community-built integration.
8
+
9
+ ![New DEV blog post comment in Orbit screenshot](readme-images/new-comment-screenshot.png)
8
10
 
9
11
  |<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
12
  |-----------------------------------------|
11
13
 
14
+ ![There are three ways to use this integration. Install package - build and run your own applications. Run the CLI - run on-demand directly from your terminal. Schedule an automation with GitHub - get started in minutes - no coding required](readme-images/ways-to-use.png)
12
15
  ## Installation
13
16
 
14
17
  Add this line to your application's Gemfile:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DevOrbit
4
- VERSION = "0.1.4"
4
+ VERSION = "0.1.5"
5
5
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dev_orbit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Orbit DevRel
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-05-24 00:00:00.000000000 Z
12
+ date: 2021-05-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -142,7 +142,6 @@ description: This gem integrates DEV blog interactions like comments, etc. into
142
142
  email:
143
143
  - devrel@orbit.love
144
144
  executables:
145
- - console
146
145
  - dev_orbit
147
146
  - setup
148
147
  extensions: []
@@ -160,7 +159,6 @@ files:
160
159
  - LICENSE.txt
161
160
  - README.md
162
161
  - Rakefile
163
- - bin/console
164
162
  - bin/dev_orbit
165
163
  - bin/setup
166
164
  - dev_orbit.gemspec
@@ -172,6 +170,8 @@ files:
172
170
  - lib/dev_orbit/orbit.rb
173
171
  - lib/dev_orbit/utils.rb
174
172
  - lib/dev_orbit/version.rb
173
+ - readme-images/new-comment-screenshot.png
174
+ - readme-images/ways-to-use.png
175
175
  - scripts/check_comments.rb
176
176
  - scripts/check_followers.rb
177
177
  homepage: https://github.com/orbit-love/community-ruby-dev-orbit
data/bin/console DELETED
@@ -1,15 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require "bundler/setup"
5
- require "dev_orbit"
6
-
7
- # You can add fixtures and/or initialization code here to make experimenting
8
- # with your gem easier. You can also use a different console, if you like.
9
-
10
- # (If you use this, don't forget to add pry to your Gemfile!)
11
- # require "pry"
12
- # Pry.start
13
-
14
- require "irb"
15
- IRB.start(__FILE__)