lobbyliste 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce0924a0fdcfbbab50aef56bd7252faa3d58c705
|
4
|
+
data.tar.gz: 6b51ef334fdfd48f2a409234ad238a5530c1f3f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2afa814b500f48bcd5bdbc43533fa94ca5828996e93a30ae7e6faac191d6c95f49e29b18f6d6280e8b3e0249f34c7ff82a31569c37fa7d19c6aafae8cbd3c1de
|
7
|
+
data.tar.gz: 01d455966273c7e0ccf12f9898917850cfdedcb15c10f264254c13bbfad6b3b444b90454bc786ee0c784e2675fc3da47ea0139e129b8b09913c0f28643edeca2
|
@@ -67,7 +67,7 @@ module Lobbyliste
|
|
67
67
|
line = interest_lines[i]
|
68
68
|
next_line = interest_lines[i+1]
|
69
69
|
|
70
|
-
if line =~ /[-–]$/ && !(next_line.start_with?("und"," und"))
|
70
|
+
if line =~ /[-–]$/ && !(next_line.start_with?("und"," und", "oder", " oder"))
|
71
71
|
line.gsub!(/[-–]$/,"")
|
72
72
|
next_line_words = next_line.split(" ")
|
73
73
|
|
@@ -79,7 +79,7 @@ module Lobbyliste
|
|
79
79
|
interest_lines[i+1] = next_line
|
80
80
|
end
|
81
81
|
|
82
|
-
interest_lines.reject(&:blank?).join("
|
82
|
+
interest_lines.reject(&:blank?).join("\n")
|
83
83
|
end
|
84
84
|
|
85
85
|
def members
|
data/lib/lobbyliste/version.rb
CHANGED