trial 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.
Files changed (5) hide show
  1. checksums.yaml +8 -8
  2. data/bin/trial +16 -17
  3. data/trial-0.0.5.gem +0 -0
  4. data/trial.gemspec +1 -1
  5. metadata +2 -1
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YzNkZDJkMDk1ZDM5N2YyNmM0ZjM4OWQ5NmI1OTllMTRjN2Y4M2RhZA==
4
+ M2E2MjgxMTk2MDJmOTUxZjkxM2FkNmNjZThlNDJlZTMwMmYzNzU4YQ==
5
5
  data.tar.gz: !binary |-
6
- M2RkNWZjMzNlOWNmM2Q4NzdjYTUyOTU1YjJmODA3YTlkZTBiODRhNQ==
6
+ YmM0YjljZWEwZmFjNDA0MDJhOThmMDI0NDFhYWE0ZWNhOTExYmE1ZA==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- MDYwZjVmMTEzYmM3ZGM4ZTI4NWZiOGM1MzEzOWFiZTI1NDdhYzZmNTgxZTZh
10
- MjU0OTU5NWEzNDc4ZmM4Mzc4OTNmOGE0YTc2YmVhOGU4NTMwOGM4OThhNGFm
11
- ZjMwOGUzMjkwMWNiOTMwNGI1MGNkODQyMGM2ZGY5MWJiOTVkNTc=
9
+ MjQ2MGRjMjY4NTI1MGEwNWQ2ZmY1YmU5YzNkMmU4OWNhMjU0ZWRmYzViYTc5
10
+ NWJlMjBjZTk0ZWQwNWZjZmM3NDM5NWJmY2VkNmI4MTk1NzAzZTNlMzFlZGU5
11
+ ZjY1YmMxOWFkYzYxNjA3ZDFjOWMwMmE0YWQxY2RkODEwNTA0ZmM=
12
12
  data.tar.gz: !binary |-
13
- ZGQ4OWVmODhhMjAyM2U5YTNmOTM4N2VlZTNiMmI0MTkwNWZlZTdlNGUyNjVj
14
- MTFiMWZlYzljMzgzMzQ5YzZjYWM3ZjU1MzA5N2ViNjRmNGMyNDUzMjU3YjVk
15
- MWY5MmEzZGYwYTkxMDgwMzE1ZGEwODNhYzc5ZmFhNDZkNDEwYWQ=
13
+ ZTcyNTQyZDBlYTVmMThkOWU1YzUzZjk3NDYxM2VkNDgzZjdlZDM5NzZmZjU5
14
+ MmM4ZDE0OTY2NGMwMWYzOTAyN2YzNTFkMzYyMjlkMTIxMjgzZTZlYjljYmU5
15
+ OTBhZTMzZDgzODAxNmJjMjY4NmRmNGI4MjQyYTA5MGQ1NmI4OWM=
data/bin/trial CHANGED
@@ -3,28 +3,27 @@
3
3
  class Trial
4
4
  puts "good job, jack!"
5
5
 
6
- def cool
7
- number = gets.chomp.to_i
6
+ def cool (number)
8
7
  puts "Your favorite number is #{number}"
9
8
  end
10
9
  end
11
10
 
12
11
  require 'optparse'
13
12
 
14
- options = { :count => 1 }
15
- OptionParser.new do |opts|
16
- opts.banner = "Usage #{__FILE__} [options]"
17
- opts.on("-c N", "--count N", "How many kitties do you want?") do |count|
18
- options[:count] = count.to_i
19
- end
13
+ # options = { :count => 1 }
14
+ # OptionParser.new do |opts|
15
+ # opts.banner = "Usage #{__FILE__} [options]"
16
+ # opts.on("-c N", "--count N", "How many kitties do you want?") do |count|
17
+ # options[:count] = count.to_i
18
+ # end
20
19
 
21
- opts.on_tail("-h", "--help", "Show this message") do
22
- puts opts
23
- exit
24
- end
25
- end.parse!
20
+ # opts.on_tail("-h", "--help", "Show this message") do
21
+ # puts opts
22
+ # exit
23
+ # end
24
+ # end.parse!
26
25
 
27
- trial = Trial.new
28
- options[:count].times do
29
- trial.cool
30
- end
26
+ # trial = Trial.new
27
+ # trial do
28
+ # trial.cool(gets.chomp)
29
+ # end
data/trial-0.0.5.gem ADDED
Binary file
data/trial.gemspec CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
 
3
3
  SPEC = Gem::Specification.new do |s|
4
4
  s.name = "trial"
5
- s.version = "0.0.5"
5
+ s.version = "0.0.6"
6
6
  s.author = "Jack Altman"
7
7
  s.email = "jack.e.altman@gmail.com"
8
8
  s.platform = Gem::Platform::RUBY
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trial
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jack Altman
@@ -23,6 +23,7 @@ files:
23
23
  - trial-0.0.2.gem
24
24
  - trial-0.0.3.gem
25
25
  - trial-0.0.4.gem
26
+ - trial-0.0.5.gem
26
27
  - trial.gemspec
27
28
  homepage: http://github.com/jaltman429/trial
28
29
  licenses: []