update_plist_build_version 0.0.3 → 0.0.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: 12095f2daad69a53d61cb62a1e0efeaf57e1c75a
4
- data.tar.gz: 130d43d823f87143b62edae7fe5bc5f3f6814a24
3
+ metadata.gz: a35f268fcf91ac1882398dc037b5c35bba041b91
4
+ data.tar.gz: 0c69ebd1e1207ef5772e513a613c04247e7500e0
5
5
  SHA512:
6
- metadata.gz: c2f42f2dc9521a9af6801c14738ed77b587ee854319e2cd65dd58a41cffba58934685d3735097bf1a042cdb844779a55bf73f4b4a97aa2ab70b73be905be4224
7
- data.tar.gz: a946a46dcc315590a7ce0787a336c220217ca8d74143a9bf46cc707188201678a5f9e53bb14e97a967bb1ce1134c438990150fbddf90c47d1b4b82b3df381bc6
6
+ metadata.gz: 1a111a9531f6b21328237c73a138231f28fdddfff8660dd0e36bc4a81dc3fc37552763d94798a8dbf23d635aa292941778f442de575f55d76cca705aca115902
7
+ data.tar.gz: 5a7710df3d5d13b0e6f3c6af91571de4e6098973ce60a63015e2f81de692dd0641983574f0e773c03c420983682894e43707ad409018fb873e03a2f97036706e
@@ -18,7 +18,7 @@ module UpdatePlistBuildVersion
18
18
  # バージョンのインクリメント処理を開始します.
19
19
  def run
20
20
  pos = get_version_position(@xml)
21
- version = @xml.elements["plist/dict/string[#{pos}]"].text
21
+ version = @xml.elements["plist/dict/*[#{pos}]"].text
22
22
  date,index = version.split(/\./)
23
23
 
24
24
  next_version = if today?(date)
@@ -27,7 +27,7 @@ module UpdatePlistBuildVersion
27
27
  "#{today_str}.0"
28
28
  end
29
29
 
30
- @xml.elements["plist/dict/string[#{pos}]"].text = next_version
30
+ @xml.elements["plist/dict/*[#{pos}]"].text = next_version
31
31
  write(@xml)
32
32
  return next_version, @xml
33
33
  end
@@ -43,7 +43,7 @@ module UpdatePlistBuildVersion
43
43
  xml.elements["plist/dict"].each do |dict|
44
44
  if dict.class == REXML::Element and dict.name == "key"
45
45
  pos += 1
46
- return pos if dict.text == "CFBundleVersion"
46
+ return (pos * 2) if dict.text == "CFBundleVersion"
47
47
  end
48
48
  end
49
49
 
@@ -1,3 +1,3 @@
1
1
  module UpdatePlistBuildVersion
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: update_plist_build_version
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
  - Shin Hiroe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-08 00:00:00.000000000 Z
11
+ date: 2016-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler