secret_agent 0.0.3 → 0.0.4

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.
data/README.md CHANGED
@@ -21,7 +21,6 @@ Or install it yourself as:
21
21
  Once you've installed the gem, you can include the gem in your application:
22
22
 
23
23
  require 'secret_agent'
24
-
25
24
  puts SecretAgent.greet('Archer') #=> Greetings Agent Archer
26
25
 
27
26
  You can also use the gem as a command line utility:
@@ -1,3 +1,3 @@
1
1
  module SecretAgent
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
data/lib/secret_agent.rb CHANGED
@@ -1,7 +1,17 @@
1
1
  require "secret_agent/version"
2
2
 
3
3
  module SecretAgent
4
+
5
+ # Greet secret agents in style!
6
+ #
7
+ # Example:
8
+ # >> SecretAgent.greet("Krieger")
9
+ # => Greetings Agent Krieger
10
+ #
11
+ # Arguments:
12
+ # name: (String)
4
13
  def self.greet(name = nil)
5
14
  "Greetings Agent #{name}".strip
6
15
  end
7
- end
16
+
17
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: secret_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: