inquisitive_alex 0.1.0 → 0.2.0

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: 5bad195b080f432cb1a9f9e08aa5307be0f132e4
4
- data.tar.gz: 5bf2ce58f2520e1c618e549d3e7884124b5038c6
3
+ metadata.gz: 08973d1434147d5f09081dc0fe068a600aec6b27
4
+ data.tar.gz: c21df446920a4574bc87abd4a0e521bd4ab94409
5
5
  SHA512:
6
- metadata.gz: 70c352396baed85d9caa96e964a2f78cf4e2b33c91e0071cfe288017a0a02efdd05de772b2c06310f1e9db68ce6d5369a7631b4f3967ba5e02429d52efa5cf74
7
- data.tar.gz: ded7eb6d52f5021a145ff66b36203c34171f4287670832fe6675e4fdbe2d2b3e546f4d11ac4a9a9a95ed6fc1e10a615a7d3ecb898b5d34f03bd6f22f2f34f8a0
6
+ metadata.gz: 0f1be5964952c34525854cc380395db738e4809812691f9b942e54ce66ca848fe0d3e9a060536f345ff7a66cf6604489137a1669e95285093ad27ffdedf816f3
7
+ data.tar.gz: 6e0ba26abe38c43b355cd483a5840380dd394cf8c6e13b31ff4a6635dde5e9060b413018d108f87ba374015d76e8d7408294f329c336d5aebc5d4e21dc9572d4
data/README.md CHANGED
@@ -21,7 +21,10 @@ Or install it yourself as:
21
21
  ## Usage
22
22
 
23
23
  ````
24
- $ ruby
24
+ $ irb
25
+ > require 'inquisitive_alex'
26
+ > alex = InquisitiveAlex
27
+ > alex.tell
25
28
  ````
26
29
 
27
30
  ## Contributing
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'inquisitive_alex'
4
+
5
+ alex = InquisitiveAlex.new
6
+ alex.tell
@@ -6,6 +6,4 @@ class InquisitiveAlex
6
6
  %x(say "Stop asking questions, Alex.")
7
7
  end
8
8
 
9
- end
10
-
11
- InquisitiveAlex.tell
9
+ end
@@ -1,3 +1,3 @@
1
1
  class InquisitiveAlex
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inquisitive_alex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Giles
@@ -56,7 +56,8 @@ description: A trial in writing my first gem which prints out a single string, t
56
56
  Alex to stop asking questions.
57
57
  email:
58
58
  - ''
59
- executables: []
59
+ executables:
60
+ - inquisitive_alex
60
61
  extensions: []
61
62
  extra_rdoc_files: []
62
63
  files:
@@ -65,6 +66,7 @@ files:
65
66
  - LICENSE.txt
66
67
  - README.md
67
68
  - Rakefile
69
+ - bin/inquisitive_alex
68
70
  - inquisitive_alex.gemspec
69
71
  - lib/inquisitive_alex.rb
70
72
  - lib/inquisitive_alex/version.rb