ringcentral-avatars 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -1
- data/README.md +1 -1
- data/lib/ringcentral-avatars.rb +1 -1
- data/ringcentral-avatars-0.2.1.gem +0 -0
- data/ringcentral-avatars-0.3.1.gem +0 -0
- data/ringcentral-avatars.gemspec +32 -0
- metadata +5 -3
- data/docs/images/ringcentral-avatars-softphone.png +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bbb35141725f26b70450dc6bfaad79a88314d688
|
4
|
+
data.tar.gz: 58ad92147c047399bf2fc11ea09f79bd70c68019
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 29cdddf6b2b7b7ed39b45fce636b5c502583650e3425eafd96f264bb794008f02596dcaa83aef6fd96df83d858bd107ae13eaad45818709ae16485f731a923ea
|
7
|
+
data.tar.gz: cee6a4cd3d798d38c9d4ba4e37404049f9c7a817a00b688e3d499ff778adeb19ad8112f3862f5da483dcfd3dad20cc8e3ecb6fe98c65b7ba384b892e43466f05
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -21,7 +21,7 @@ This library will build [RingCentral](https://ringcentral.com) avatars using Gma
|
|
21
21
|
|
22
22
|
By default, the images will look like the following in the RingCentral softphone:
|
23
23
|
|
24
|
-
![](docs/images/ringcentral-avatars-softphone.png)
|
24
|
+
![](https://raw.githubusercontent.com/ringcentral-ruby/ringcentral-avatars-ruby/master/docs/images/ringcentral-avatars-softphone.png)
|
25
25
|
|
26
26
|
This library uses [Avatarly](https://github.com/lucek/avatarly) to generate the avatars and can pass through any avatar option for customization purposes.
|
27
27
|
|
data/lib/ringcentral-avatars.rb
CHANGED
Binary file
|
Binary file
|
@@ -0,0 +1,32 @@
|
|
1
|
+
lib = 'ringcentral-avatars'
|
2
|
+
lib_file = File.expand_path("../lib/#{lib}.rb", __FILE__)
|
3
|
+
File.read(lib_file) =~ /\bVERSION\s*=\s*["'](.+?)["']/
|
4
|
+
version = $1
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = lib
|
8
|
+
s.version = version
|
9
|
+
s.date = '2016-11-03'
|
10
|
+
s.summary = 'RingCentral library for auto-generating Gmail style avatars'
|
11
|
+
s.description = 'Create RingCentral avatars using Gmail-style avatars'
|
12
|
+
s.authors = ['John Wang']
|
13
|
+
s.email = 'johncwang@gmail.com'
|
14
|
+
s.homepage = 'https://github.com/grokify/'
|
15
|
+
s.licenses = ['MIT']
|
16
|
+
s.files = Dir['lib/**/**/*']
|
17
|
+
s.files += Dir['[A-Z]*'] + Dir['test/**/*']
|
18
|
+
|
19
|
+
s.required_ruby_version = '>= 2.2.2'
|
20
|
+
|
21
|
+
s.add_dependency 'avatarly', '~> 1.5', '>= 1.5.0'
|
22
|
+
s.add_dependency 'faraday', '~> 0.9', '>= 0.9'
|
23
|
+
s.add_dependency 'mime-types', '~> 3.0', '>= 3.1'
|
24
|
+
s.add_dependency 'ringcentral_sdk', '~> 1', '>= 1.3.4'
|
25
|
+
s.add_dependency 'ruby_identicon', '~> 0', '>= 0.0.5'
|
26
|
+
|
27
|
+
s.add_development_dependency 'coveralls', '~> 0'
|
28
|
+
s.add_development_dependency 'mocha', '~> 1'
|
29
|
+
s.add_development_dependency 'rake', '~> 11'
|
30
|
+
s.add_development_dependency 'simplecov', '~> 0'
|
31
|
+
s.add_development_dependency 'test-unit', '~> 3'
|
32
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ringcentral-avatars
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Wang
|
@@ -191,9 +191,11 @@ files:
|
|
191
191
|
- LICENSE.md
|
192
192
|
- README.md
|
193
193
|
- Rakefile
|
194
|
-
- docs/images/ringcentral-avatars-softphone.png
|
195
194
|
- lib/ringcentral-avatars.rb
|
196
195
|
- lib/ringcentral-avatars/creator.rb
|
196
|
+
- ringcentral-avatars-0.2.1.gem
|
197
|
+
- ringcentral-avatars-0.3.1.gem
|
198
|
+
- ringcentral-avatars.gemspec
|
197
199
|
homepage: https://github.com/grokify/
|
198
200
|
licenses:
|
199
201
|
- MIT
|
@@ -214,7 +216,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
214
216
|
version: '0'
|
215
217
|
requirements: []
|
216
218
|
rubyforge_project:
|
217
|
-
rubygems_version: 2.
|
219
|
+
rubygems_version: 2.4.8
|
218
220
|
signing_key:
|
219
221
|
specification_version: 4
|
220
222
|
summary: RingCentral library for auto-generating Gmail style avatars
|
Binary file
|