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 +4 -4
- data/headingify.gemspec +13 -12
- data/lib/headingify/info.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2da17d7e8f33f52489902a220d2d909a7e0ff589
|
|
4
|
+
data.tar.gz: 327c6014854e1dab851fec813656729d240ddbc9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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 =
|
|
8
|
-
s.version =
|
|
9
|
-
s.authors =
|
|
10
|
-
s.email =
|
|
11
|
-
s.summary =
|
|
12
|
-
s.
|
|
13
|
-
s.
|
|
14
|
-
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 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 =
|
|
17
|
-
s.test_files =
|
|
18
|
-
s.executables =
|
|
19
|
-
s.require_paths =
|
|
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"
|
data/lib/headingify/info.rb
CHANGED
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.
|
|
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
|
|
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
|
|
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
|