headingify 1.0.0 → 1.0.1

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: 226af19a5b6f64c029d4c42b967a7f47a4c93a87
4
- data.tar.gz: 3ab3c93ee275a86279a26a672343fbee7c9f6127
3
+ metadata.gz: 2da17d7e8f33f52489902a220d2d909a7e0ff589
4
+ data.tar.gz: 327c6014854e1dab851fec813656729d240ddbc9
5
5
  SHA512:
6
- metadata.gz: 21d250c8367c68d93606cb30f7bf9098db366af842dd4e853a5d3e95e042ad2b118b0817131f8426c6e86ab57f2f14bde1891cc3447094a7f7767c2e3b628408
7
- data.tar.gz: 9358b2a4c59e7722e4f2b09c633c78bc57ff9188244dcb4fc69d452b487cdaf9f93c319238be6e68f387e847a2e32a47852ecc6b741550bf03187c3fc728ff45
6
+ metadata.gz: 3e963a9804061476194385a67cf52aad91bddc8e836617d73b34d5a3be4b7cfa8a604faedd3f0c2f70396b1cfae528b77b563cd2b21fbfb1b2a5f25f4f00e042
7
+ data.tar.gz: 9af1db1677f77140505a53dea2efa60e8b82e54597b88cd344c39fbfb0c72ebcbc0789d1eb9c0e8fad554c4ac78681f74002b5405c448303a6c3287bc5a58cd3
data/headingify.gemspec CHANGED
@@ -4,19 +4,20 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'headingify/info'
5
5
 
6
6
  Gem::Specification.new do |s|
7
- s.name = "headingify"
8
- s.version = Headingify::VERSION
9
- s.authors = ["Chris Calo"]
10
- s.email = ["ccalo@vulcanca.com"]
11
- s.summary = "A method used to convert a string into a heading."
12
- s.description = "#{s.summary} It extends String class; English only."
13
- s.homepage = "http://vulcanca.com"
14
- s.license = "MIT"
7
+ s.name = "headingify"
8
+ s.version = Headingify::VERSION
9
+ s.authors = ["Chris Calo"]
10
+ s.email = ["ccalo@vulcanca.com"]
11
+ s.summary = "A method used to convert a Ruby String into a "
12
+ s.summary += "grammatically correct heading."
13
+ s.description = "#{s.summary} It extends String class; English only."
14
+ s.homepage = "http://vulcanca.com"
15
+ s.license = "MIT"
15
16
 
16
- s.files = `git ls-files -z`.split("\x0")
17
- s.test_files = s.files.grep(%r{^(test|spec|features)/})
18
- s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
- s.require_paths = ["lib"]
17
+ s.files = `git ls-files -z`.split("\x0")
18
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
19
+ s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
20
21
 
21
22
  s.required_ruby_version = '>= 1.9.3'
22
23
  s.add_development_dependency "rspec"
@@ -1,6 +1,6 @@
1
1
  module Headingify
2
2
  TITLE = "Ruby String.headingify Core Extension"
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  UPDATE = "2014-11-19"
5
5
  REVISION = "4"
6
6
  USAGE = "headingify \"string\" | \"an \\%ESCAPED\\% string\""
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: headingify
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Calo
@@ -52,8 +52,8 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '10.0'
55
- description: A method used to convert a string into a heading. It extends String class;
56
- English only.
55
+ description: A method used to convert a Ruby String into agrammatically correct heading.
56
+ It extends String class; English only.
57
57
  email:
58
58
  - ccalo@vulcanca.com
59
59
  executables:
@@ -96,7 +96,7 @@ rubyforge_project:
96
96
  rubygems_version: 2.4.3
97
97
  signing_key:
98
98
  specification_version: 4
99
- summary: A method used to convert a string into a heading.
99
+ summary: A method used to convert a Ruby String into agrammatically correct heading.
100
100
  test_files:
101
101
  - spec/headingify_spec.rb
102
102
  - spec/spec_helper.rb