badslava2csv 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c088b8f354e7799fe7534e148a7099e54ad782c7
4
- data.tar.gz: 098a77b0a09678853241d4e2507f8e2a64128178
3
+ metadata.gz: f6c06fa961ad0caa9b8dd9d3de2c7c5205e46c80
4
+ data.tar.gz: 1477b06cb3197c347be94767db0c4401d10158c9
5
5
  SHA512:
6
- metadata.gz: ab9f8f203d400ce7b4cc8433dbe8c9d5f1e0b4b89205d0bd3581f5642d00e03e63a9e45e0d603a0db2dc6a5ac02fe78e02055dd1e7575cea9936926923c5a036
7
- data.tar.gz: e9dba78b2d5eb5e44ceb57f4ea5d32d5bba669e82401ebb83ff43adc62d1a3814917805c8bc8cc42616f6b06575801656e6b9e70240ac5d22e012375295edcfa
6
+ metadata.gz: 35c613990166ef8f0e61742d9b66fe5c6650ea3b683ea68ead6c7dfb0c62b7d843e8ca69f0e6f93260b0acaf014acaf02f1a9439fceaa0620bacb92a31b8f805
7
+ data.tar.gz: 6d356a6d175c3c861935850ddfff7ddf83ee2238526360c7f7cf1e374c00211e3c9670a41cd4f608274b7973e9278a69ed3b66ddb146a8dbb9fce5c198c03c23
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.4
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: badslava2csv 0.0.3 ruby lib
5
+ # stub: badslava2csv 0.0.4 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "badslava2csv"
9
- s.version = "0.0.3"
9
+ s.version = "0.0.4"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
@@ -12,7 +12,7 @@ Options = Struct.new(:city, :output_dir)
12
12
 
13
13
  class Parser
14
14
  def self.parse(options)
15
- args = Options.new("world")
15
+ args = Options.new("San Francisco", "./data")
16
16
 
17
17
  opt_parser = OptionParser.new do |opts|
18
18
  opts.banner = "Usage: badslava2csv [options]"
@@ -37,8 +37,8 @@ class Parser
37
37
  end
38
38
  options = Parser.parse(ARGV)
39
39
 
40
- city = options.city || "San Francisco"
41
- output_dir = File.expand_path(options.output_dir || "./data")
40
+ city = options.city
41
+ output_dir = File.expand_path(options.output_dir)
42
42
 
43
43
  puts "Listing events for #{city}"
44
44
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: badslava2csv
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - brettshollenberger