priscilla 1.0.0 → 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/.gitignore +1 -0
- data/.travis.yml +9 -0
- data/Gemfile +2 -0
- data/README.md +17 -4
- data/Rakefile +4 -0
- data/lib/priscilla/makeup.rb +1 -1
- data/lib/priscilla/version.rb +1 -1
- data/lib/priscilla.rb +1 -1
- data/priscilla.gemspec +1 -1
- data/spec/priscilla/configuration_spec.rb +1 -0
- data/spec/priscilla/makeup_spec.rb +1 -0
- data/spec/priscilla/simple_emoji_spec.rb +1 -0
- data/spec/spec_helper.rb +3 -0
- 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: 24977731eec6baacf60afe5f0ab13cc82f93559d
|
|
4
|
+
data.tar.gz: 762a40e5825c227cc46b61dcbfefcb389b3b8ae8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44d1fa95825f84ef73f64c6c65235a349b69bc9db527d4c4cd4c73ee1650b765a6bbc36e7c2964ca070378edfee2388263da075a94235e684b5c830dfd6476eb
|
|
7
|
+
data.tar.gz: 7f4e5fec8fff5a2fa2d79c6a747f6a2d28a5113b29cc5fc84ef7f9cc64330116fc9ec1ecc8a31e935816f9a2d205df5cb09077450bfa40aaa5747095dea97590
|
data/.gitignore
CHANGED
data/.travis.yml
ADDED
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -2,10 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
Frock up your console messages. :dancer: :dancer: :dancer:
|
|
4
4
|
|
|
5
|
+
[](https://travis-ci.org/Arkham/priscilla)
|
|
6
|
+
[](https://codeclimate.com/github/Arkham/priscilla)
|
|
7
|
+
[](https://codeclimate.com/github/Arkham/priscilla)
|
|
8
|
+
|
|
5
9
|
## Why Priscilla
|
|
6
10
|
|
|
7
|
-
Because of Priscilla, Queen of the Desert.
|
|
8
|
-
|
|
11
|
+
Because of [Priscilla, Queen of the Desert](http://en.wikipedia.org/wiki/The_Adventures_of_Priscilla,_Queen_of_the_Desert).
|
|
12
|
+
|
|
13
|
+
**Don't let your console messages drown in a wall of text, make them stand out!**
|
|
9
14
|
|
|
10
15
|

|
|
11
16
|
|
|
@@ -52,11 +57,11 @@ Priscilla supports a lot of different decorators:
|
|
|
52
57
|
|
|
53
58
|
**Unicode Emojis**
|
|
54
59
|
|
|
55
|
-

|
|
56
61
|
|
|
57
62
|
**Text Emojis**
|
|
58
63
|
|
|
59
|
-

|
|
60
65
|
|
|
61
66
|
## Configure
|
|
62
67
|
|
|
@@ -69,6 +74,14 @@ Priscilla.configure do |c|
|
|
|
69
74
|
end
|
|
70
75
|
```
|
|
71
76
|
|
|
77
|
+
## Troubleshoot
|
|
78
|
+
|
|
79
|
+
**I can't see the fancy emojis!!! I'm on Linux!!!**
|
|
80
|
+
|
|
81
|
+
On Ubuntu: `sudo apt-get install ttf-ancient-fonts`
|
|
82
|
+
|
|
83
|
+
On Fedora: `yum install gdouros-symbola-fonts`
|
|
84
|
+
|
|
72
85
|
## Contribute
|
|
73
86
|
|
|
74
87
|
1. Fork it ( http://github.com/Arkham/priscilla/fork )
|
data/Rakefile
CHANGED
data/lib/priscilla/makeup.rb
CHANGED
data/lib/priscilla/version.rb
CHANGED
data/lib/priscilla.rb
CHANGED
data/priscilla.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.homepage = "http://github.com/Arkham/priscilla"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
|
-
spec.files = `git ls-files -z`.split("\x0")
|
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.start_with? "images" }
|
|
17
17
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
19
|
spec.require_paths = ["lib"]
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: priscilla
|
|
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
|
- Ju Liu
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-04-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colorize
|
|
@@ -90,6 +90,7 @@ extra_rdoc_files: []
|
|
|
90
90
|
files:
|
|
91
91
|
- ".gitignore"
|
|
92
92
|
- ".rspec"
|
|
93
|
+
- ".travis.yml"
|
|
93
94
|
- Gemfile
|
|
94
95
|
- LICENSE.txt
|
|
95
96
|
- README.md
|