headingify 1.0.6 → 1.0.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9c223bf61af6004186323e64e666df5fa130ddb1
4
- data.tar.gz: e74cc9571eed7f577f84ac0e83cfb7c32e59c13b
3
+ metadata.gz: 762493d8d9730bb651360d163173586961bf5522
4
+ data.tar.gz: c5b5709abc406ac6fa876d38e9b5b34b3ba85861
5
5
  SHA512:
6
- metadata.gz: b52d926b60b53ebb0458b5a3401fd2b5ac48db6b9b1a52cf56672e9d1254d4da77ed5e3512dca27ccae4a5bf702d0bdb89c8cf53b779a2a28cd181aa22861761
7
- data.tar.gz: 07157562b97510eeb568fb4761e0e25ee80230088b55490d13b463d3ea73c0366e40dcceb5a6288e55cb35991b1199dcbe7c80d342fea38644c33f18a62c2214
6
+ metadata.gz: da261fcc9eb783099d1a956e079dc73f9b70333f3a6e38f419301812f1b65a4d6586982902f91458380cd73f4128b6ac099af38f36580deb6462ad28e6f6f79e
7
+ data.tar.gz: f2c66c3c639d365879eba9dd4253b5f2c2beab54a611d03d01d39e0980749cf7c9ef2ebd771c534c4644813e5a7e2f2667edd58ed4d8b459df6676e14b7cbfa3
data/.travis.yml ADDED
@@ -0,0 +1,17 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.8.7
4
+ - 1.9.3
5
+ - 2.1.1
6
+ - jruby-18mode
7
+ - jruby-19mode
8
+ - rbx-2.1.1
9
+ - ruby-head
10
+ - jruby-head
11
+ - ree
12
+ before_install:
13
+ - gem update --system
14
+ - gem --version
15
+ - bundle_cache_install
16
+ after_script:
17
+ - bundle_cache
data/README.rdoc CHANGED
@@ -1,3 +1,5 @@
1
+ {<img src="https://travis-ci.org/vulcancreative/headingify.svg" alt="Build Status" />}[https://travis-ci.org/vulcancreative/headingify]
2
+
1
3
  = Headingify
2
4
 
3
5
  A method used to convert a string into a heading. It extends the String class; currently only supporting the English language. Please contribute if you are adept in other languages utilizing articles, conjuctions, and prepositions.
@@ -1,6 +1,6 @@
1
1
  module Headingify
2
2
  TITLE = "Ruby String.headingify Core Extension"
3
- VERSION = "1.0.6"
3
+ VERSION = "1.0.7"
4
4
  UPDATE = "2014-11-19"
5
5
  REVISION = "31"
6
6
  USAGE = "headingify \"string\" | \"an \\%ESCAPED\\% string\""
@@ -1,7 +1,7 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  describe Headingify do
4
- it "should return the input String as a proper title" do
4
+ it "should return the input String as a proper title (in code)" do
5
5
  input = ["i'm dale, but you have to call me dragon.",
6
6
  "i swear, i'm so pissed off at my mom.",
7
7
  "as soon as she's of age, i'm putting her in a home.",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: headingify
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Calo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-19 00:00:00.000000000 Z
11
+ date: 2014-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -64,6 +64,7 @@ extensions: []
64
64
  extra_rdoc_files: []
65
65
  files:
66
66
  - ".gitignore"
67
+ - ".travis.yml"
67
68
  - Gemfile
68
69
  - LICENSE.txt
69
70
  - README.rdoc