emoji-extractor 1.0.1 → 1.0.2
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/Gemfile.lock +52 -0
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/emoji-extractor.gemspec +53 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 87e08bea2e02ff5117ec58857e05f75300eefbd7
|
|
4
|
+
data.tar.gz: ccb64e19bfda17519d6e70904a86cb7723c42a53
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8ad084b04246fc79016481c230c75b4f2913d6fa652a3a003efe7cb5ec72ffe064559544a606eed63b8150aa7f4c892e79df3de8589a4102b4a86be08172537
|
|
7
|
+
data.tar.gz: b531dbddcd3a0bdc7ec529f5778560083c95cb45bfca32dadeba700c4fa43db5b50ec1fb73860926c3d48a57a34e2f4019945633ab38dea36060e6c835db7c2f
|
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
GEM
|
|
2
|
+
remote: http://rubygems.org/
|
|
3
|
+
specs:
|
|
4
|
+
addressable (2.3.6)
|
|
5
|
+
builder (3.2.2)
|
|
6
|
+
descendants_tracker (0.0.4)
|
|
7
|
+
thread_safe (~> 0.3, >= 0.3.1)
|
|
8
|
+
faraday (0.9.0)
|
|
9
|
+
multipart-post (>= 1.2, < 3)
|
|
10
|
+
git (1.2.8)
|
|
11
|
+
github_api (0.11.3)
|
|
12
|
+
addressable (~> 2.3)
|
|
13
|
+
descendants_tracker (~> 0.0.1)
|
|
14
|
+
faraday (~> 0.8, < 0.10)
|
|
15
|
+
hashie (>= 1.2)
|
|
16
|
+
multi_json (>= 1.7.5, < 2.0)
|
|
17
|
+
nokogiri (~> 1.6.0)
|
|
18
|
+
oauth2
|
|
19
|
+
hashie (3.2.0)
|
|
20
|
+
highline (1.6.21)
|
|
21
|
+
jeweler (2.0.1)
|
|
22
|
+
builder
|
|
23
|
+
bundler (>= 1.0)
|
|
24
|
+
git (>= 1.2.5)
|
|
25
|
+
github_api
|
|
26
|
+
highline (>= 1.6.15)
|
|
27
|
+
nokogiri (>= 1.5.10)
|
|
28
|
+
rake
|
|
29
|
+
rdoc
|
|
30
|
+
jwt (1.0.0)
|
|
31
|
+
mini_portile (0.6.0)
|
|
32
|
+
multi_json (1.10.1)
|
|
33
|
+
multi_xml (0.5.5)
|
|
34
|
+
multipart-post (2.0.0)
|
|
35
|
+
nokogiri (1.6.2.1)
|
|
36
|
+
mini_portile (= 0.6.0)
|
|
37
|
+
oauth2 (0.9.4)
|
|
38
|
+
faraday (>= 0.8, < 0.10)
|
|
39
|
+
jwt (~> 1.0)
|
|
40
|
+
multi_json (~> 1.3)
|
|
41
|
+
multi_xml (~> 0.5)
|
|
42
|
+
rack (~> 1.2)
|
|
43
|
+
rack (1.5.2)
|
|
44
|
+
rake (10.3.2)
|
|
45
|
+
rdoc (4.1.0)
|
|
46
|
+
thread_safe (0.3.4)
|
|
47
|
+
|
|
48
|
+
PLATFORMS
|
|
49
|
+
ruby
|
|
50
|
+
|
|
51
|
+
DEPENDENCIES
|
|
52
|
+
jeweler (~> 2.0.1)
|
data/Rakefile
CHANGED
|
@@ -15,7 +15,7 @@ require 'jeweler'
|
|
|
15
15
|
Jeweler::Tasks.new do |gem|
|
|
16
16
|
# gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
|
|
17
17
|
gem.name = "emoji-extractor"
|
|
18
|
-
gem.homepage = "http://github.com/andoriyu/emoji-extractor"
|
|
18
|
+
gem.homepage = "http://github.com/andoriyu/emoji-extractor-cli"
|
|
19
19
|
gem.license = "MIT"
|
|
20
20
|
gem.summary = %Q{extracts high-resolution emoji pngs from ttf}
|
|
21
21
|
gem.description = %Q{extracts high-resolution emoji pngs from ttf}
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.2
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
# stub: emoji-extractor 1.0.2 ruby lib
|
|
6
|
+
|
|
7
|
+
Gem::Specification.new do |s|
|
|
8
|
+
s.name = "emoji-extractor"
|
|
9
|
+
s.version = "1.0.2"
|
|
10
|
+
|
|
11
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
|
+
s.require_paths = ["lib"]
|
|
13
|
+
s.authors = ["Andrey Cherkashin", "Aman Gupta"]
|
|
14
|
+
s.date = "2014-08-05"
|
|
15
|
+
s.description = "extracts high-resolution emoji pngs from ttf"
|
|
16
|
+
s.email = "with.out@me.com"
|
|
17
|
+
s.executables = ["emoji-extractor"]
|
|
18
|
+
s.extra_rdoc_files = [
|
|
19
|
+
"LICENSE.txt",
|
|
20
|
+
"README.rdoc"
|
|
21
|
+
]
|
|
22
|
+
s.files = [
|
|
23
|
+
".document",
|
|
24
|
+
"Gemfile",
|
|
25
|
+
"Gemfile.lock",
|
|
26
|
+
"LICENSE.txt",
|
|
27
|
+
"README.rdoc",
|
|
28
|
+
"Rakefile",
|
|
29
|
+
"VERSION",
|
|
30
|
+
"bin/emoji-extractor",
|
|
31
|
+
"emoji-extractor.gemspec",
|
|
32
|
+
"lib/emoji-extractor.rb",
|
|
33
|
+
"test/helper.rb",
|
|
34
|
+
"test/test_emoji-extractor.rb"
|
|
35
|
+
]
|
|
36
|
+
s.homepage = "http://github.com/andoriyu/emoji-extractor-cli"
|
|
37
|
+
s.licenses = ["MIT"]
|
|
38
|
+
s.rubygems_version = "2.2.2"
|
|
39
|
+
s.summary = "extracts high-resolution emoji pngs from ttf"
|
|
40
|
+
|
|
41
|
+
if s.respond_to? :specification_version then
|
|
42
|
+
s.specification_version = 4
|
|
43
|
+
|
|
44
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
45
|
+
s.add_development_dependency(%q<jeweler>, ["~> 2.0.1"])
|
|
46
|
+
else
|
|
47
|
+
s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
|
|
48
|
+
end
|
|
49
|
+
else
|
|
50
|
+
s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: emoji-extractor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrey Cherkashin
|
|
@@ -36,15 +36,17 @@ extra_rdoc_files:
|
|
|
36
36
|
files:
|
|
37
37
|
- ".document"
|
|
38
38
|
- Gemfile
|
|
39
|
+
- Gemfile.lock
|
|
39
40
|
- LICENSE.txt
|
|
40
41
|
- README.rdoc
|
|
41
42
|
- Rakefile
|
|
42
43
|
- VERSION
|
|
43
44
|
- bin/emoji-extractor
|
|
45
|
+
- emoji-extractor.gemspec
|
|
44
46
|
- lib/emoji-extractor.rb
|
|
45
47
|
- test/helper.rb
|
|
46
48
|
- test/test_emoji-extractor.rb
|
|
47
|
-
homepage: http://github.com/andoriyu/emoji-extractor
|
|
49
|
+
homepage: http://github.com/andoriyu/emoji-extractor-cli
|
|
48
50
|
licenses:
|
|
49
51
|
- MIT
|
|
50
52
|
metadata: {}
|