bb_stats_crunch 0.0.5 → 0.0.6

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/bin/bb_stats_crunch CHANGED
@@ -2,6 +2,6 @@
2
2
 
3
3
  require 'bb_stats_crunch'
4
4
 
5
- name = ARGV.first | nil "1969"
5
+ name = ARGV.first || "1969"
6
6
 
7
7
  puts BbStatsCrunch.new(name).mood
@@ -1 +1,15 @@
1
1
  puts "Hello World"
2
+ puts "Hello World"
3
+
4
+ class BbStatsCrunch
5
+ attr_accessor :name
6
+
7
+ def initialize name
8
+ @name = name
9
+ end
10
+
11
+ def mood
12
+ "#{name} is always HAPPY!!"
13
+ end
14
+
15
+ end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 5
9
- version: 0.0.5
8
+ - 6
9
+ version: 0.0.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jack Howland