lita-tox 0.4.0 → 0.5.0

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
- SHA1:
3
- metadata.gz: 938e23ce8e40a1b800f0598a9365d87bd41a5942
4
- data.tar.gz: '058a264c182aa84de8e45f8384634f3ee6f215f2'
2
+ SHA256:
3
+ metadata.gz: 22e2eca245700d8c973dfe504c92e1b419437b7e03bc7e8f835020855bc11a19
4
+ data.tar.gz: 8e2028ed256f35e3fa1b21448d8972d941fd7b77316ad8d63826dad740a14881
5
5
  SHA512:
6
- metadata.gz: 92a9a358dc5c64217f4e5c02b3192971632629ee1d43b5310dff9d92bb84490b2ca71d50b6f0c503f60efa5eda95ac53de83366b8b795278d584c36ccd6cc5b6
7
- data.tar.gz: b6c71b18925f9946ab728394408a633548e7148fd736dbe78ca991306f9136dcf9bf792ead9c6b75d67b1cb342f68ee57843cdb2d3eeb77c52ca87b357a5df5f
6
+ metadata.gz: 56103bc49c42818890d8257afffcb3fbe715c1d5c805241335f81f2601ece76a00da78cd8de64ed5da98bcb04bf8dfaa793e8ffc13df45c1e0bbf01cc568ac9b
7
+ data.tar.gz: 110cb96943839480cc3f430e909b9f3aeecd6bc424ceaea2db3f2bdbddc266a005128d947a52444ed41dfb92143709be22684f452847c0c9bdb792a0c36e5dcc
data/.gitignore CHANGED
@@ -1,3 +1,9 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
1
7
  *.gem
2
8
  *.rbc
3
9
  /.config
data/README.md CHANGED
@@ -23,7 +23,7 @@ When **libtoxcore** is installed, add **lita-tox**
23
23
  to your Lita instance's Gemfile:
24
24
 
25
25
  ```ruby
26
- gem 'lita-tox', '~> 0.4.0'
26
+ gem 'lita-tox', '~> 0.5.0'
27
27
  ```
28
28
 
29
29
  ### Configuration
data/Rakefile CHANGED
@@ -2,11 +2,6 @@
2
2
 
3
3
  require 'bundler/gem_tasks'
4
4
 
5
- GEMSPEC = Gem::Specification.load 'lita-tox.gemspec'
6
-
7
- github_user, github_project =
8
- GEMSPEC.homepage.scan(%r{^https://github\.com/([^/]+)/([^/]+)/?$})[0]
9
-
10
5
  task default: %i[spec lint]
11
6
 
12
7
  task lint: :rubocop
@@ -26,9 +21,3 @@ begin
26
21
  rescue LoadError
27
22
  nil
28
23
  end
29
-
30
- desc 'Generate changelog'
31
- task :changelog, [:token] do |_t, args|
32
- raise 'please provide access token' unless args[:token]
33
- sh "github_changelog_generator -u #{github_user} -p #{github_project} -t #{args[:token]}"
34
- end
@@ -1,19 +1,21 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- lita-tox (0.3.0)
4
+ lita-tox (0.4.0)
5
5
  lita (~> 4.7)
6
- tox (~> 0.0.1)
6
+ tox (~> 0.0.2)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- faraday (0.12.1)
11
+ concurrent-ruby (1.0.5)
12
+ faraday (0.14.0)
12
13
  multipart-post (>= 1.2, < 3)
13
14
  http_router (0.11.2)
14
15
  rack (>= 1.0.0)
15
16
  url_mount (~> 0.2.1)
16
- i18n (0.8.6)
17
+ i18n (1.0.0)
18
+ concurrent-ruby (~> 1.0)
17
19
  ice_nine (0.11.2)
18
20
  lita (4.7.1)
19
21
  bundler (>= 1.3)
@@ -27,16 +29,16 @@ GEM
27
29
  rb-readline (>= 0.5.1)
28
30
  redis-namespace (>= 1.3.0)
29
31
  thor (>= 0.18.1)
30
- multi_json (1.12.1)
32
+ multi_json (1.13.1)
31
33
  multipart-post (2.0.0)
32
- puma (3.9.1)
33
- rack (1.6.8)
34
- rb-readline (0.5.4)
35
- redis (3.3.3)
36
- redis-namespace (1.5.3)
37
- redis (~> 3.0, >= 3.0.4)
38
- thor (0.19.4)
39
- tox (0.0.1)
34
+ puma (3.11.3)
35
+ rack (1.6.9)
36
+ rb-readline (0.5.5)
37
+ redis (4.0.1)
38
+ redis-namespace (1.6.0)
39
+ redis (>= 3.0.4)
40
+ thor (0.20.0)
41
+ tox (0.0.2)
40
42
  url_mount (0.2.1)
41
43
  rack
42
44
 
@@ -48,4 +50,4 @@ DEPENDENCIES
48
50
  lita-tox!
49
51
 
50
52
  BUNDLED WITH
51
- 1.13.6
53
+ 1.16.1
@@ -6,7 +6,7 @@ $LOAD_PATH.unshift lib unless $LOAD_PATH.include? lib
6
6
 
7
7
  Gem::Specification.new do |spec|
8
8
  spec.name = 'lita-tox'
9
- spec.version = '0.4.0'
9
+ spec.version = '0.5.0'
10
10
  spec.license = 'GPL-3.0'
11
11
  spec.homepage = 'https://github.com/toxon/lita-tox'
12
12
  spec.summary = 'Tox adapter for the Lita chat bot'
@@ -28,15 +28,13 @@ Gem::Specification.new do |spec|
28
28
  spec.bindir = 'exe'
29
29
  spec.executables = spec.files.grep %r{^exe/}, &File.method(:basename)
30
30
 
31
- spec.add_development_dependency 'bundler', '~> 1.7'
32
- spec.add_development_dependency 'rake', '~> 10.0'
33
- spec.add_development_dependency 'rubocop', '~> 0.49.1'
34
- spec.add_development_dependency 'rspec', '~> 3.3'
35
- spec.add_development_dependency 'simplecov', '~> 0.10'
36
- spec.add_development_dependency 'redcarpet', '~> 3.3'
37
- spec.add_development_dependency 'github_changelog_generator', '~> 1.6'
38
- spec.add_development_dependency 'pry', '~> 0.10'
31
+ spec.add_development_dependency 'bundler', '~> 1.7'
32
+ spec.add_development_dependency 'rake', '~> 10.0'
33
+ spec.add_development_dependency 'rubocop', '~> 0.49.1'
34
+ spec.add_development_dependency 'rspec', '~> 3.3'
35
+ spec.add_development_dependency 'simplecov', '~> 0.10'
36
+ spec.add_development_dependency 'pry', '~> 0.10'
39
37
 
40
38
  spec.add_runtime_dependency 'lita', '~> 4.7'
41
- spec.add_runtime_dependency 'tox', '~> 0.0.1'
39
+ spec.add_runtime_dependency 'tox', '~> 0.0.2'
42
40
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-tox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Braiden Vasco
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-07-20 00:00:00.000000000 Z
11
+ date: 2018-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -80,34 +80,6 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0.10'
83
- - !ruby/object:Gem::Dependency
84
- name: redcarpet
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - "~>"
88
- - !ruby/object:Gem::Version
89
- version: '3.3'
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - "~>"
95
- - !ruby/object:Gem::Version
96
- version: '3.3'
97
- - !ruby/object:Gem::Dependency
98
- name: github_changelog_generator
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - "~>"
102
- - !ruby/object:Gem::Version
103
- version: '1.6'
104
- type: :development
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - "~>"
109
- - !ruby/object:Gem::Version
110
- version: '1.6'
111
83
  - !ruby/object:Gem::Dependency
112
84
  name: pry
113
85
  requirement: !ruby/object:Gem::Requirement
@@ -142,14 +114,14 @@ dependencies:
142
114
  requirements:
143
115
  - - "~>"
144
116
  - !ruby/object:Gem::Version
145
- version: 0.0.1
117
+ version: 0.0.2
146
118
  type: :runtime
147
119
  prerelease: false
148
120
  version_requirements: !ruby/object:Gem::Requirement
149
121
  requirements:
150
122
  - - "~>"
151
123
  - !ruby/object:Gem::Version
152
- version: 0.0.1
124
+ version: 0.0.2
153
125
  description: Tox adapter for the Lita chat bot.
154
126
  email:
155
127
  - braiden-vasco@users.noreply.github.com
@@ -164,7 +136,6 @@ files:
164
136
  - ".simplecov"
165
137
  - ".travis.yml"
166
138
  - ".yardopts"
167
- - CHANGELOG.md
168
139
  - Gemfile
169
140
  - LICENSE
170
141
  - README.md
@@ -202,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
202
173
  version: '0'
203
174
  requirements: []
204
175
  rubyforge_project:
205
- rubygems_version: 2.5.2
176
+ rubygems_version: 2.7.6
206
177
  signing_key:
207
178
  specification_version: 4
208
179
  summary: Tox adapter for the Lita chat bot
@@ -1,49 +0,0 @@
1
- # Change Log
2
-
3
- ## [v0.4.0](https://github.com/toxon/lita-tox/tree/v0.4.0) (2017-07-20)
4
- [Full Changelog](https://github.com/toxon/lita-tox/compare/v0.3.0...v0.4.0)
5
-
6
- **Merged pull requests:**
7
-
8
- - Transfer repo [\#27](https://github.com/toxon/lita-tox/pull/27) ([braiden-vasco](https://github.com/braiden-vasco))
9
- - Use newer Lita version [\#26](https://github.com/toxon/lita-tox/pull/26) ([braiden-vasco](https://github.com/braiden-vasco))
10
- - Use external Tox gem [\#25](https://github.com/toxon/lita-tox/pull/25) ([braiden-vasco](https://github.com/braiden-vasco))
11
- - Fix CI build [\#24](https://github.com/toxon/lita-tox/pull/24) ([braiden-vasco](https://github.com/braiden-vasco))
12
- - Change license from MIT to GPL-3.0 [\#23](https://github.com/toxon/lita-tox/pull/23) ([braiden-vasco](https://github.com/braiden-vasco))
13
- - Remove group chats [\#22](https://github.com/toxon/lita-tox/pull/22) ([braiden-vasco](https://github.com/braiden-vasco))
14
-
15
- ## [v0.3.0](https://github.com/toxon/lita-tox/tree/v0.3.0) (2015-09-15)
16
- [Full Changelog](https://github.com/toxon/lita-tox/compare/v0.2.0...v0.3.0)
17
-
18
- **Closed issues:**
19
-
20
- - Setup Tox user nickname and status [\#21](https://github.com/toxon/lita-tox/issues/21)
21
-
22
- ## [v0.2.0](https://github.com/toxon/lita-tox/tree/v0.2.0) (2015-09-14)
23
- [Full Changelog](https://github.com/toxon/lita-tox/compare/v0.1.0...v0.2.0)
24
-
25
- **Merged pull requests:**
26
-
27
- - Implement group chats [\#20](https://github.com/toxon/lita-tox/pull/20) ([braiden-vasco](https://github.com/braiden-vasco))
28
- - Save Tox state [\#19](https://github.com/toxon/lita-tox/pull/19) ([braiden-vasco](https://github.com/braiden-vasco))
29
-
30
- ## [v0.1.0](https://github.com/toxon/lita-tox/tree/v0.1.0) (2015-09-13)
31
- **Merged pull requests:**
32
-
33
- - Add instructions [\#13](https://github.com/toxon/lita-tox/pull/13) ([braiden-vasco](https://github.com/braiden-vasco))
34
- - Basic implementation [\#12](https://github.com/toxon/lita-tox/pull/12) ([braiden-vasco](https://github.com/braiden-vasco))
35
- - Basic "tox" extension implementation [\#11](https://github.com/toxon/lita-tox/pull/11) ([braiden-vasco](https://github.com/braiden-vasco))
36
- - Add code documentation [\#10](https://github.com/toxon/lita-tox/pull/10) ([braiden-vasco](https://github.com/braiden-vasco))
37
- - Initialize Lita adapter [\#9](https://github.com/toxon/lita-tox/pull/9) ([braiden-vasco](https://github.com/braiden-vasco))
38
- - Add changelog generator [\#8](https://github.com/toxon/lita-tox/pull/8) ([braiden-vasco](https://github.com/braiden-vasco))
39
- - Use YARD [\#7](https://github.com/toxon/lita-tox/pull/7) ([braiden-vasco](https://github.com/braiden-vasco))
40
- - Configure Coveralls [\#6](https://github.com/toxon/lita-tox/pull/6) ([braiden-vasco](https://github.com/braiden-vasco))
41
- - Configure Travis CI [\#5](https://github.com/toxon/lita-tox/pull/5) ([braiden-vasco](https://github.com/braiden-vasco))
42
- - Add README [\#4](https://github.com/toxon/lita-tox/pull/4) ([braiden-vasco](https://github.com/braiden-vasco))
43
- - Configure testing [\#3](https://github.com/toxon/lita-tox/pull/3) ([braiden-vasco](https://github.com/braiden-vasco))
44
- - Configure linting [\#2](https://github.com/toxon/lita-tox/pull/2) ([braiden-vasco](https://github.com/braiden-vasco))
45
- - Initialize gem [\#1](https://github.com/toxon/lita-tox/pull/1) ([braiden-vasco](https://github.com/braiden-vasco))
46
-
47
-
48
-
49
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*