first_gem_jack_henley 0.0.2 → 0.0.3
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/.rspec +2 -0
- data/first_gem_jack_henley.gemspec +1 -0
- data/lib/first_gem_jack_henley.rb +2 -0
- data/lib/first_gem_jack_henley/version.rb +1 -1
- data/spec/first_gem_jack_henley_spec.rb +29 -0
- data/spec/spec_helper.rb +12 -0
- metadata +21 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 447ce46c1d5c8af6a62b56d1fdda568d519a5cec
|
4
|
+
data.tar.gz: 1decd68b085ab6f465c047d85296f7eb02c24c09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ab9cf9ec4d3b70c5adeb4ea9d197cc0d244597f2678e4d24285f0e97faefa295a645cf3954a9cfe65f316b354a1115a70b924ae2c89efd8a4499d403373d80b
|
7
|
+
data.tar.gz: db2ba62592b4e46007397bf885436760a0b3dee1040c86b8e551016f6d9d78468efff82345a88e1bf384abb627ce89add7c536f90053fb77beaae430cb6e93bf
|
data/.rspec
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe String, "#word_count" do
|
4
|
+
it 'should have a method called word_count' do
|
5
|
+
should respond_to :word_count
|
6
|
+
end
|
7
|
+
|
8
|
+
it 'should return 1 when the string is 1 word long' do
|
9
|
+
a_string = "apple"
|
10
|
+
expect(a_string.word_count).to eq 1
|
11
|
+
end
|
12
|
+
|
13
|
+
it 'should return 3 when the string is 3 words long' do
|
14
|
+
a_string = "These are words"
|
15
|
+
expect(a_string.word_count).to eq 3
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
describe String, "#unique_words" do
|
20
|
+
it 'should have a method called unique_words' do
|
21
|
+
should respond_to :unique_words
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'should return 2 when there are 2 unique words' do
|
25
|
+
a_string = "the the the the what"
|
26
|
+
expect(a_string.unique_words).to eq ["the", "what"]
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
2
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
3
|
+
require 'rspec'
|
4
|
+
require 'first_gem_jack_henley'
|
5
|
+
|
6
|
+
# Requires supporting files with custom matchers and macros, etc,
|
7
|
+
# in ./support/ and its subdirectories.
|
8
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
|
9
|
+
|
10
|
+
RSpec.configure do |config|
|
11
|
+
|
12
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: first_gem_jack_henley
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jack Henley
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 3.0.0.beta
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 3.0.0.beta
|
41
55
|
description: This is why I wrote it.
|
42
56
|
email:
|
43
57
|
- jack.d.henley@gmail.com
|
@@ -46,6 +60,7 @@ extensions: []
|
|
46
60
|
extra_rdoc_files: []
|
47
61
|
files:
|
48
62
|
- ".gitignore"
|
63
|
+
- ".rspec"
|
49
64
|
- Gemfile
|
50
65
|
- LICENSE.txt
|
51
66
|
- README.md
|
@@ -53,6 +68,8 @@ files:
|
|
53
68
|
- first_gem_jack_henley.gemspec
|
54
69
|
- lib/first_gem_jack_henley.rb
|
55
70
|
- lib/first_gem_jack_henley/version.rb
|
71
|
+
- spec/first_gem_jack_henley_spec.rb
|
72
|
+
- spec/spec_helper.rb
|
56
73
|
homepage: ''
|
57
74
|
licenses:
|
58
75
|
- MIT
|
@@ -77,5 +94,7 @@ rubygems_version: 2.2.0
|
|
77
94
|
signing_key:
|
78
95
|
specification_version: 4
|
79
96
|
summary: My first gem.
|
80
|
-
test_files:
|
97
|
+
test_files:
|
98
|
+
- spec/first_gem_jack_henley_spec.rb
|
99
|
+
- spec/spec_helper.rb
|
81
100
|
has_rdoc:
|