chatworkify 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7b2d14c4b3ad1ffc907379f647f344ac0ea5f0b53836cbc9353bc0620286b16f
4
- data.tar.gz: 195aebc609d2c58d13f296e9a2490020ddea99149bdace7b10dcd5920eef5492
3
+ metadata.gz: e269173ad834a7f4eb319b677a093f12a72ae2ae7a2f5453a4d98e7c10edfb21
4
+ data.tar.gz: 3ea3927ff1586fb8180fd59f7a2178bda6489a6a7e377094e3d00d8064f11123
5
5
  SHA512:
6
- metadata.gz: e1177ca8868dbe1cc9c2b7db70042ed6dc127d4f4dcc8af971d6004cc77fc9b714f0af1cc039ad01a8b6fdece8154ac65eb618be890391161c8f70501f85f723
7
- data.tar.gz: 8fc4b87c26441cd895fa2a0ae4bf63878d20a12c6514b8baf13dbb0e0c227053447b37e620eada53786a792dc44f87eb3a1c82de11bc631665930395be12a399
6
+ metadata.gz: b7178d42c697b22b817b289d4ec65f633bddeee70e1a7c52d1d3961125d9859f0c1b4c098ab9887999675481536d4c46e67f703c4383f4c308bae7d59e181f16
7
+ data.tar.gz: 6570f18eeae56db71b596e7bf7064fb600a96090e51012abd971871ac065f4f585bf29e86339625c5923a4494ff29cd93e0f707be503209f1bd62355fc87620e
data/README.md CHANGED
@@ -1,15 +1,13 @@
1
1
  # Chatworkify
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/chatworkify`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ [![Gem Version](https://badge.fury.io/rb/chatworkify.svg)](https://badge.fury.io/rb/chatworkify)
6
4
 
7
5
  ## Installation
8
6
 
9
7
  Add this line to your application's Gemfile:
10
8
 
11
9
  ```ruby
12
- gem 'chatworkify'
10
+ gem 'chatworkify', require: false
13
11
  ```
14
12
 
15
13
  And then execute:
@@ -22,22 +20,10 @@ Or install it yourself as:
22
20
 
23
21
  ## Usage
24
22
 
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
-
33
- ## Contributing
34
-
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/chatworkify. 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/[USERNAME]/chatworkify/blob/master/CODE_OF_CONDUCT.md).
36
-
37
- ## License
23
+ Require the gem in your `Capfile`:
38
24
 
39
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
25
+ require 'capistrano/slackify'
40
26
 
41
- ## Code of Conduct
27
+ ### Copyright
42
28
 
43
- Everyone interacting in the Chatworkify project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/chatworkify/blob/master/CODE_OF_CONDUCT.md).
29
+ ©phunt
data/chatworkify.gemspec CHANGED
@@ -12,24 +12,16 @@ Gem::Specification.new do |spec|
12
12
 
13
13
  spec.summary = %q{Publish deployment notifications to Chatwork via the API}
14
14
  spec.description = %q{Publish deployment notifications to Chatwork via the API}
15
- # spec.homepage = "TODO: Put your gem's website or public repo URL here."
15
+ spec.homepage = "https://github.com/rs-phunt/chatworkify"
16
16
  spec.license = "MIT"
17
17
  spec.required_ruby_version = ">= 1.9.1"
18
18
 
19
19
  # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
20
20
 
21
- # spec.metadata["homepage_uri"] = spec.homepage
22
- # spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
23
- # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
24
-
25
- # Specify which files should be added to the gem when it is released.
26
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
27
- # spec.files = Dir.chdir(File.expand_path(__dir__)) do
28
- # `git ls-files -z`.split("\x0").reject do |f|
29
- # (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
30
- # end
31
- # end
32
- # spec.files = Dir['lib/**/*.*']
21
+ spec.metadata["homepage_uri"] = spec.homepage
22
+ spec.metadata["source_code_uri"] = "https://github.com/rs-phunt/chatworkify"
23
+ spec.metadata["changelog_uri"] = "https://github.com/rs-phunt/chatworkify/blob/master/CHANGELOG.md"
24
+
33
25
  spec.files = `git ls-files -z`.split("\x0")
34
26
  spec.bindir = "exe"
35
27
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
@@ -37,12 +29,9 @@ Gem::Specification.new do |spec|
37
29
 
38
30
  # Uncomment to register a new dependency of your gem
39
31
  spec.add_dependency 'chatwork', '~> 0.1'
40
- # spec.add_dependency 'capistrano', '~> 3.2', '>= 3.2.0'
41
32
 
42
33
  spec.add_runtime_dependency 'capistrano', '~> 3.2', '>= 3.2.0'
43
- # spec.add_runtime_dependency 'pry', '~> 0.10.4'
44
-
45
- spec.add_development_dependency 'bundler', '~> 1'
34
+ spec.add_development_dependency 'bundler', '~> 2'
46
35
  spec.add_development_dependency 'rake', '~> 1'
47
36
 
48
37
  # For more information and examples about making a new gem, checkout our
@@ -1,5 +1,5 @@
1
- # frozen_string_literal: true
1
+ # frozen_string_literal: true
2
2
 
3
3
  module Chatworkify
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
@@ -7,7 +7,5 @@ class ChatworkifyTest < Minitest::Test
7
7
  refute_nil ::Chatworkify::VERSION
8
8
  end
9
9
 
10
- def test_it_does_something_useful
11
- assert false
12
- end
10
+ # TODO: update soon
13
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chatworkify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - phunt
@@ -50,14 +50,14 @@ dependencies:
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '1'
53
+ version: '2'
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '1'
60
+ version: '2'
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: rake
63
63
  requirement: !ruby/object:Gem::Requirement
@@ -99,10 +99,13 @@ files:
99
99
  - lib/core_ext/custom_lib.rb
100
100
  - test/chatworkify_test.rb
101
101
  - test/test_helper.rb
102
- homepage:
102
+ homepage: https://github.com/rs-phunt/chatworkify
103
103
  licenses:
104
104
  - MIT
105
- metadata: {}
105
+ metadata:
106
+ homepage_uri: https://github.com/rs-phunt/chatworkify
107
+ source_code_uri: https://github.com/rs-phunt/chatworkify
108
+ changelog_uri: https://github.com/rs-phunt/chatworkify/blob/master/CHANGELOG.md
106
109
  post_install_message:
107
110
  rdoc_options: []
108
111
  require_paths: