aesthetify 1.0.1 → 1.0.2

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
2
  SHA1:
3
- metadata.gz: 00d85874813e3f4fbc7ed1caccbc3b278d04fcc0
4
- data.tar.gz: 69f7d840c31a38cdd980c44f67368366728c7b1b
3
+ metadata.gz: f8c24e3ce07a09528f6b44ca8ce305af19b42bd4
4
+ data.tar.gz: ff3009ef2a9086ed3b8b952471823e4f01f7edd8
5
5
  SHA512:
6
- metadata.gz: cffc8d7f31151e78e3e1436846b3f7b972ad872f18264a81736f1dd4fe1ece904139e976cbc91f22f3d0f430845abfd564a5e3489f7feb0a849a262b3cfd8f8d
7
- data.tar.gz: 8a2dcfb2fb21c2d06d4bcd10c3c6457559e6d257def780c47fd4099fc1b8590db4059bb727ef32b5e4aecdf6375b3bf9e1f4056e8de49f1589aee61eb7d023cb
6
+ metadata.gz: 54a274d8ad67143a316f15e044887d9a118c18f3d52db3ad2da590f591c04975a60363a6a06486fb8cb70f141e801c6df2f348e655a741c85bf3592ff9ab728e
7
+ data.tar.gz: 5e03b05eae75d7d4885963d9847ebcf1aa8e11c729d9e0e28dd9b219c12a75fb7c46892028ea026df6a87a951b81e464324f60c2b708790bec1e16a3a949eb15
data/.gitattributes CHANGED
@@ -1,5 +1,6 @@
1
1
  # Auto detect text files and perform LF normalization
2
2
  * text=auto
3
+ * eol=lf
3
4
 
4
5
  # Custom for Visual Studio
5
6
  *.cs diff=csharp
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ /bin/*.gem
data/.travis.yml ADDED
@@ -0,0 +1,21 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.5.1
4
+ - 2.5.0
5
+ - 2.4.4
6
+ - 2.4.3
7
+ - 2.4.2
8
+ - 2.4.1
9
+ - 2.4.0
10
+ - 2.3.7
11
+ - 2.3.6
12
+ - 2.3.5
13
+ - 2.3.4
14
+ - 2.3.3
15
+ - 2.3.2
16
+ - 2.3.1
17
+ - 2.3.0
18
+ script:
19
+ - bundle exec rake test
20
+ before_install:
21
+ - gem install bundler
data/Gemfile CHANGED
@@ -1,9 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
-
5
- group :test do
6
- gem 'minitest'
7
- gem 'minitest-proveit'
8
- gem 'rake'
9
- end
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- aesthetify (1.0.1)
4
+ aesthetify (1.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -9,7 +9,7 @@ GEM
9
9
  minitest (5.11.3)
10
10
  minitest-proveit (1.0.0)
11
11
  minitest (> 5, < 7)
12
- rake (12.3.0)
12
+ rake (12.3.1)
13
13
 
14
14
  PLATFORMS
15
15
  ruby
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2017 TheAssailant https://github.com/theassailant
3
+ Copyright (c) 2017-2018 TheAssailant https://github.com/theassailant
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
  this software and associated documentation files (the "Software"), to deal in
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # aesthetify
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/aesthetify.svg)](https://badge.fury.io/rb/aesthetify)
4
+ [![Build Status](https://travis-ci.org/TheAssailant/aesthetify.svg?branch=master)](https://travis-ci.org/TheAssailant/aesthetify)
4
5
 
5
6
  aesthetify makes it simple to take any string and transform it for the
6
7
  AESTHETIC. In addition, it also makes creating Fullwidth text
@@ -9,7 +10,11 @@ just as simple.
9
10
  aesthetify comes with regular methods and bang versions of those methods for
10
11
  in-place string modification.
11
12
 
12
- ## Examples
13
+ ## Usage
14
+
15
+ ```ruby
16
+ require "aesthetify"
17
+ ```
13
18
 
14
19
  Using String#aesthetify:
15
20
  ```ruby
@@ -36,10 +41,10 @@ puts text
36
41
 
37
42
  ## Supported Ruby versions
38
43
  aesthetify supports all of the currently supported versions of Ruby. As of
39
- 2018-03-18 these are:
40
- - Ruby 2.3 - 2.3.6
41
- - Ruby 2.4 - 2.4.3
42
- - Ruby 2.5
44
+ 2018-03-30 these are:
45
+ - Ruby 2.3 - 2.3.7
46
+ - Ruby 2.4 - 2.4.4
47
+ - Ruby 2.5 - 2.5.1
43
48
 
44
49
  ## License
45
50
  aesthetify is licensed under the [MIT License](https://opensource.org/licenses/MIT).
data/aesthetify.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "aesthetify"
3
- s.version = "1.0.1"
3
+ s.version = "1.0.2"
4
4
  s.authors = "TheAssailant"
5
5
  s.email = "TheAssailant@users.noreply.github.com"
6
6
  s.summary = %q{aesthetify is a gem that lets you transform ASCII text into fullwidth text of 2 distinct flavors: regular Fullwidth and AESTHETIC}
@@ -10,6 +10,9 @@ Gem::Specification.new do |s|
10
10
  s.required_ruby_version = "~> 2.3"
11
11
 
12
12
  s.add_development_dependency "bundler", "~> 1.15"
13
+ s.add_development_dependency "minitest"
14
+ s.add_development_dependency "minitest-proveit"
15
+ s.add_development_dependency "rake"
13
16
 
14
17
  s.files = `git ls-files`.split("\n")
15
18
  s.test_files = `git ls-files -- test/*`.split("\n")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aesthetify
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - TheAssailant
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-19 00:00:00.000000000 Z
11
+ date: 2018-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -24,6 +24,48 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.15'
27
+ - !ruby/object:Gem::Dependency
28
+ name: minitest
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest-proveit
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
27
69
  description:
28
70
  email: TheAssailant@users.noreply.github.com
29
71
  executables: []
@@ -31,6 +73,8 @@ extensions: []
31
73
  extra_rdoc_files: []
32
74
  files:
33
75
  - ".gitattributes"
76
+ - ".gitignore"
77
+ - ".travis.yml"
34
78
  - Gemfile
35
79
  - Gemfile.lock
36
80
  - LICENSE