qiita_team_services 0.3.7 → 0.3.8
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/.codeclimate.yml +15 -0
- data/.travis.yml +6 -5
- data/CHANGELOG.md +43 -20
- data/config/locales/en.yml +1 -1
- data/config/locales/ja.yml +1 -1
- data/lib/qiita/team/services/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce7a7f2ad932f63de24aaa74345fd2f7ecd5ec34
|
|
4
|
+
data.tar.gz: 67db33c06f021425df4a0f1459607afcde30cdfb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: abf13c2c0200d32c887578fab4a5b813bad9a3c161d12d0e9c7627bb2b7a67f6e7bf290e29d6603eed2c8047621f69908946268556b79be7bc01d0bc0106971d
|
|
7
|
+
data.tar.gz: 70ae9ea773e3cefa2f807201e30823e14ee4c59e2c5b7f7cda5fd8f5442e0ba853829c5805e95db87de70665e92893b3ad859a30e03f8d0697295bba1f9ddbb3
|
data/.codeclimate.yml
ADDED
data/.travis.yml
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
rvm:
|
|
3
|
-
|
|
3
|
+
- 2.2.3
|
|
4
4
|
cache: bundler
|
|
5
5
|
script:
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
- bundle exec rake
|
|
7
|
+
after_success:
|
|
8
|
+
- test "$(git rev-list HEAD...origin/master)" == "" && bundle exec rake deploy-gh-pages
|
|
8
9
|
env:
|
|
9
10
|
global:
|
|
10
|
-
|
|
11
|
-
|
|
11
|
+
- GH_REF: github.com/increments/qiita-team-services.git
|
|
12
|
+
- secure: pdRvHR22U3Se5MuJyOLqdAKUl2xtWbTsTsARNK/i19/yAe7ZjLJVMdFurNmTLz1epGFC4ruNjklJZtnPYy/CXiQVJHb8bJGAaqKNJFjS6cOLCVxax8HKtEdTb6o4qYnIudh7UPSFsVi2rJ8WYT7Rr3gRiHU0TXpvNDvf51DBAaxgoMHqUUI0LvXMQEFLf06dpuR402C9V1uZar5OqMyOV5pTtcgSIQDpdRUOwYdsasuoftgf4LAuLE4zpQJVnbltcPaYV94g8YG6nWg/CiaPMLC8a54BretyGmUKhj1w1e3aG+z9dT5JuFrhjO6jyUi/Sq8b9tV9iyb/sEbsS5A2H5BiNnzdmv9nQCgT3hfSiuB/sphAnaU5YNNcTlLGAVESkIb2AWS9AWB5NeeXBrCaY8d3vVATQTSSRBnJzlArIx9xrolM4wITML9F2FPj572gdvLA30u9d1/pehIMEc9r5n9I0BtGSAiLw7FTRWNzakKB1zOZN/WCgsVrbfLjhTfM8rPp/eijbyehaqOzxcT2FC21XNQhGGH3UyyCwKWt3MYxj1ACivkwnK7IZjFvcLL32u8Jv66CRskedQ0vdNkNmu9KEF+Z8rAS/31NBYGFcUx61ofi7zSO9axfrOos8QScmn+shFgJd7iQC/iwq0K+Wp+7vmpzOnNmxD+PFra8oc8=
|
data/CHANGELOG.md
CHANGED
|
@@ -1,41 +1,64 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Change Log
|
|
2
2
|
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
This change log adheres to [keepachangelog.com](http://keepachangelog.com).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [0.3.8] - 2016-03-30
|
|
10
|
+
### Fixed
|
|
11
|
+
- [#16] Update URL for Slack incoming webhooks
|
|
12
|
+
|
|
13
|
+
## [0.3.7] - 2016-02-12
|
|
14
|
+
### Fixed
|
|
3
15
|
- [#15] Truncate Slack message text to 7500 bytes.
|
|
4
16
|
- [#14] Update outdated rubocop config.
|
|
5
17
|
|
|
6
|
-
|
|
7
|
-
|
|
18
|
+
## [0.3.6] - 2015-12-08
|
|
19
|
+
### Fixed
|
|
8
20
|
- [#13] Escape special characters for slack markup.
|
|
9
21
|
|
|
10
|
-
|
|
11
|
-
|
|
22
|
+
## [0.3.5] - 2015-11-26
|
|
23
|
+
### Added
|
|
12
24
|
- Add link to comments.
|
|
13
25
|
|
|
14
|
-
|
|
15
|
-
|
|
26
|
+
## [0.3.4] - 2015-10-30
|
|
27
|
+
### Fixed
|
|
16
28
|
- Fix Slack hooks messages format.
|
|
17
29
|
|
|
18
|
-
|
|
19
|
-
|
|
30
|
+
## [0.3.3] - 2015-10-23
|
|
31
|
+
### Added
|
|
20
32
|
- Add some validations to Slack hooks.
|
|
21
|
-
- Refactoring.
|
|
22
|
-
|
|
23
|
-
# 0.3.2
|
|
24
33
|
|
|
34
|
+
## [0.3.2] - 2015-10-23
|
|
35
|
+
### Fixed
|
|
25
36
|
- Fix translation missing.
|
|
26
37
|
|
|
27
|
-
|
|
28
|
-
|
|
38
|
+
## [0.3.1] - 2015-10-20
|
|
39
|
+
### Fixed
|
|
29
40
|
- Fix slack message markup.
|
|
30
41
|
|
|
31
|
-
|
|
32
|
-
|
|
42
|
+
## [0.3.0] - 2015-10-16
|
|
43
|
+
### Changed
|
|
33
44
|
- Divide comment events by its associated resources.
|
|
34
45
|
|
|
35
|
-
|
|
36
|
-
|
|
46
|
+
## [0.2.0] - 2015-10-08
|
|
47
|
+
### Added
|
|
37
48
|
- Add `Hooks::Webhook`.
|
|
38
49
|
|
|
39
|
-
|
|
40
|
-
|
|
50
|
+
## 0.1.0 - 2015-10-08
|
|
51
|
+
### Added
|
|
41
52
|
- Initial release.
|
|
53
|
+
|
|
54
|
+
[Unreleased]: https://github.com/yuku-t/textcomplete/compare/v0.3.8...HEAD
|
|
55
|
+
[0.3.8]: https://github.com/yuku-t/textcomplete/compare/v0.3.7...v0.3.8
|
|
56
|
+
[0.3.7]: https://github.com/yuku-t/textcomplete/compare/v0.3.6...v0.3.7
|
|
57
|
+
[0.3.6]: https://github.com/yuku-t/textcomplete/compare/v0.3.5...v0.3.6
|
|
58
|
+
[0.3.5]: https://github.com/yuku-t/textcomplete/compare/v0.3.4...v0.3.5
|
|
59
|
+
[0.3.4]: https://github.com/yuku-t/textcomplete/compare/v0.3.3...v0.3.4
|
|
60
|
+
[0.3.3]: https://github.com/yuku-t/textcomplete/compare/v0.3.2...v0.3.3
|
|
61
|
+
[0.3.2]: https://github.com/yuku-t/textcomplete/compare/v0.3.1...v0.3.2
|
|
62
|
+
[0.3.1]: https://github.com/yuku-t/textcomplete/compare/v0.3.0...v0.3.1
|
|
63
|
+
[0.3.0]: https://github.com/yuku-t/textcomplete/compare/v0.2.0...v0.3.0
|
|
64
|
+
[0.2.0]: https://github.com/yuku-t/textcomplete/compare/v0.1.0...v0.2.0
|
data/config/locales/en.yml
CHANGED
|
@@ -9,7 +9,7 @@ en:
|
|
|
9
9
|
Qiita:Team icon is used by default.
|
|
10
10
|
webhook_url_help_block_html:
|
|
11
11
|
You can add incoming webhooks integration to your slack channels at
|
|
12
|
-
<a href="https://slack.com/
|
|
12
|
+
<a href="https://slack.com/apps/A0F7XDUAZ-incoming-webhooks" target="_blank">https://slack.com/apps/A0F7XDUAZ-incoming-webhooks</a>.
|
|
13
13
|
hooks:
|
|
14
14
|
chatwork_v1:
|
|
15
15
|
room_id: Room ID
|
data/config/locales/ja.yml
CHANGED
|
@@ -9,7 +9,7 @@ ja:
|
|
|
9
9
|
省略した場合、Qiita:Teamのアイコンが使われます。
|
|
10
10
|
webhook_url_help_block_html: |-
|
|
11
11
|
SlackチャンネルへのIncoming webhooks連携は
|
|
12
|
-
<a href="https://slack.com/
|
|
12
|
+
<a href="https://slack.com/apps/A0F7XDUAZ-incoming-webhooks" target="_blank">https://slack.com/apps/A0F7XDUAZ-incoming-webhooks</a>
|
|
13
13
|
で追加することができます。
|
|
14
14
|
hooks:
|
|
15
15
|
chatwork_v1:
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: qiita_team_services
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yuku Takahashi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-03-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activemodel-url_validator
|
|
@@ -227,6 +227,7 @@ executables: []
|
|
|
227
227
|
extensions: []
|
|
228
228
|
extra_rdoc_files: []
|
|
229
229
|
files:
|
|
230
|
+
- ".codeclimate.yml"
|
|
230
231
|
- ".gitignore"
|
|
231
232
|
- ".rspec"
|
|
232
233
|
- ".rubocop.yml"
|