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 +4 -4
- data/README.md +6 -20
- data/chatworkify.gemspec +6 -17
- data/lib/chatworkify/version.rb +2 -2
- data/test/chatworkify_test.rb +1 -3
- metadata +8 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e269173ad834a7f4eb319b677a093f12a72ae2ae7a2f5453a4d98e7c10edfb21
|
|
4
|
+
data.tar.gz: 3ea3927ff1586fb8180fd59f7a2178bda6489a6a7e377094e3d00d8064f11123
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7178d42c697b22b817b289d4ec65f633bddeee70e1a7c52d1d3961125d9859f0c1b4c098ab9887999675481536d4c46e67f703c4383f4c308bae7d59e181f16
|
|
7
|
+
data.tar.gz: 6570f18eeae56db71b596e7bf7064fb600a96090e51012abd971871ac065f4f585bf29e86339625c5923a4494ff29cd93e0f707be503209f1bd62355fc87620e
|
data/README.md
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
# Chatworkify
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
[](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
|
-
|
|
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
|
-
|
|
25
|
+
require 'capistrano/slackify'
|
|
40
26
|
|
|
41
|
-
|
|
27
|
+
### Copyright
|
|
42
28
|
|
|
43
|
-
|
|
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
|
-
|
|
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
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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
|
-
|
|
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
|
data/lib/chatworkify/version.rb
CHANGED
data/test/chatworkify_test.rb
CHANGED
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.
|
|
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: '
|
|
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: '
|
|
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:
|