lita-jenkins-client 0.1.1 → 0.1.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
  SHA1:
3
- metadata.gz: bfef720975e154d1d6ae2a276edcbd1ede5da0ab
4
- data.tar.gz: a12858f326a08f4c4004676e1a0c71cb23efb455
3
+ metadata.gz: aec55dac70a5e639fa76c1053d208e0553820e41
4
+ data.tar.gz: 3c82e14fbb2e11d300f598c670f406587b7ca7e4
5
5
  SHA512:
6
- metadata.gz: 8a0a76b2183c34fd80d8ec9eda4ba8e3262c5382a35fe8a8cf1fd8dd5aa04b8e7fd5da2d616ff9227779b9af5a3bc697c960738321f74624f2d549adacb74096
7
- data.tar.gz: d6e42a14653565d7694d9ad968f126601327b966d937605875ae433423eeb97e11ed1dc4ed19873428bab1e69b5e431c22841c9f004d186772862f8b9f043a4f
6
+ metadata.gz: 838720b6c369587fd48d5fe93c31bc0561d62a0b861849e27a24584b3d2981b6fe591e4e446244a25c1ec06cecb349ff8cde32ee45e0cba3b18d459bccdae566
7
+ data.tar.gz: 4c618960138d5c68d8365653745cbdb0ef457752edb486959dfee82ea2ac97e5341cef558eacb993affff2d84145900ee5554406b354b11c3c30b670f3d980a9
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Lita jenkins handler that use the [jenkins\_api\_client gem](https://github.com/arangamani/jenkins_api_client)
4
4
 
5
+ RubyGems.org project website: [https://rubygems.org/gems/lita-jenkins-client](https://rubygems.org/gems/lita-jenkins-client)
6
+
5
7
  ## About
6
8
  Integrate Lita and jenkins api. I've implement some commands which is usable now.
7
9
 
@@ -10,7 +12,8 @@ Integrate Lita and jenkins api. I've implement some commands which is usable now
10
12
  Add lita-jenkins-client to your Lita instance's Gemfile:
11
13
 
12
14
  ``` ruby
13
- gem "lita-jenkins-client", github: 'joshua5201/lita-jenkins-client'
15
+ gem "lita-jenkins-client" # Fetch from rubygems.org
16
+ gem "lita-jenkins-client", github: 'joshua5201/lita-jenkins-client' # Fetch from github
14
17
  ```
15
18
 
16
19
  ## Current Available Commands
@@ -1,5 +1,4 @@
1
1
  require_relative 'command'
2
- require 'byebug'
3
2
  class Lita::Handlers::JenkinsClient < Lita::Handler
4
3
  class Action < Lita::Handlers::JenkinsClient
5
4
  namespace "jenkins_client"
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "lita-jenkins-client"
3
- spec.version = "0.1.1"
3
+ spec.version = "0.1.2"
4
4
  spec.authors = ["Tsung-en Hsiao"]
5
5
  spec.email = ["joshua841025@gmail.com"]
6
6
  spec.summary = 'Lita jenkins handler that use the jenkins_api_client gem'
data/spec/spec_helper.rb CHANGED
@@ -6,7 +6,6 @@ end
6
6
  require "lita-jenkins-client"
7
7
  require "lita/rspec"
8
8
  require "psych"
9
- require "byebug"
10
9
 
11
10
  # A compatibility mode is provided for older plugins upgrading from Lita 3. Since this plugin
12
11
  # was generated with Lita 4, the compatibility mode should be left disabled.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-jenkins-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tsung-en Hsiao