extract_ticket_numbers 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: c8032055e755457576bd828b6ed890f7d02c5d3d
4
- data.tar.gz: f276655a0c10cff9bf37afcf24ec1f7aab0c5931
3
+ metadata.gz: 91cb0f4b4dc2fb4b2a4e599904c37183bdd39693
4
+ data.tar.gz: 544f61065c569efb64e38fd69819819fb4cdabc1
5
5
  SHA512:
6
- metadata.gz: 3b654190988547fd63a9b557b88cd0432285d488537b35543fbf8e9e6d09828c757f40d67808aa15b93daa763b8572441263c1de927eeb9f6a68afed34996dc4
7
- data.tar.gz: f985c42bb932ea69ace3f2f2cd5d52aa1883ca6fdc48bc08239601785d62cfcce319669dea798ffb556f94a665bc8e27f71b1422d42b95e045d46c05a59552d7
6
+ metadata.gz: 7146a822f33dae4206328854f4e1ab6b8223689b6ec9115dcec285cbc895accf4ae4b6182a98d42cf1047641a761896eebdef15605451ace52cf8ada5abfd75a
7
+ data.tar.gz: b7e4d5c1bf5415c1dd544e85ee934c1ba63d43e5884af80a64d3e59b7d0043f47568db734e7020b6426ac671c7b0440222ba920338978292a02757c0544adec9
@@ -1,3 +1,3 @@
1
1
  module ExtractTicketNumbers
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -4,7 +4,6 @@ require 'csv'
4
4
  module ExtractTicketNumbers
5
5
 
6
6
  def self.add_to_csv(in_path, out_path = out_path_from(in_path))
7
- puts out_path
8
7
  CSV.open(out_path, "wb", col_sep: ';') do |out_row|
9
8
  CSV.foreach(in_path, col_sep: ';', headers: false).each do |in_row|
10
9
  tickets = in_row.to_s.scan(/[a-zA-Z]+\-[0-9]+/)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: extract_ticket_numbers
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
  - Peter Ehrenberg