auto-deploy-test 0.1.8 → 0.1.9

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YjRmNTQ0YzM4N2I5NDEzMTAxZmRjYzc0N2NkOTg2MThkMjJjMDQwOA==
4
+ MDQ5MjIzMThlZjMzNDA5NGNkYzJkOWU5MDcwNjZlMDRlNDQ1ZGZjYg==
5
5
  data.tar.gz: !binary |-
6
- YWQyMjYzMWZlZTJhZDc0ZDU3MDVlMjA1NDFlMGRhYTIxNjllYWE4ZA==
6
+ ZjU1ZDAzNTU4MThkNGEyYTg5YjU4OTEyYTY0NGYwOTYyM2ZiMWUwZA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YTFhNmU1Y2ZkZjgxMjRhNmM0ZTg3Nzc2Zjk2ZTAyMWFkZDJiNjkwY2MxMTQx
10
- NTBlMDdlZTcyNjQ5M2VhZGYwODJhZDg4MDIwOGM1ZGUxYzRiZDM5NzhlOTIy
11
- ZGFlMTBiNWM0MDExY2I5MTVjMTQ2YTRkYWJlMDMwMjVmMjI3NzM=
9
+ ZTM4ZDM4Y2MxMDNmNjYyODg0Mjc0YTdlMTFkYzNmNDlkZjVkMzc1OTg1Mjg3
10
+ NTQxYzc3MjkxZDliMTJkMDM1NzhjNDRmZWVmNjllMDI4NmRmNTk5MWRlODRm
11
+ MzBhMjQ0MGE2OGMzNTBlM2YzZWY1NDljNTNhZjE0MjI3ZTliZDE=
12
12
  data.tar.gz: !binary |-
13
- MGQyMjEyMjdhYzRkODAwMmQ3ZDBmNjYyNTJhNzUyOWI3YjEwNWQzMjI0NDBh
14
- ZGZhNDNhYzIzMGJmNmU5NDJlYjg5NjViNjY2Mjc3NzQwNjM5NTI4NTc1OGNl
15
- MjU4YmNiZGY2MzI2YzU2Y2NmYjdiNmE3ZDAwZWU3ZDI1NDdiODY=
13
+ M2RjOWJlOGE0NzlmZjAxMDgxYjNjMDczNjVlYjJhNzYzODdlNGFhMTBhODVj
14
+ NjdiODcwNzYxZDU2OTk0ZTEzZWEzNmY2ZDkxMmFkNWZmY2VkODcyMGQxY2U0
15
+ ZGE5ZmJlZTQ0ZDlkNWQ0ZTJmNTFlODhmMTZkYTA5NjRhMGUyYTI=
data/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  Next Release (TBD)
4
4
  ------------------
5
5
 
6
+ v0.1.9 (2014-08-14)
7
+ ------------------
8
+
9
+ * Labamc excea eaat caeca excep. Proid ullit sabo essagab velit cin ut alit
10
+ excat. Eu anaat ut na incaad magnaa.
11
+
12
+ * Cini iamc ut oalaa preaa dati paad lori. Fama cat daab exeaa alit dolor exce
13
+ idat pa sit ex. Oatatiatuat.
14
+
15
+ * Aamagna qat incatia sed laboru caam. Adate dolo ute lore qaba maal cula do
16
+ fatat eia culp quaat duat alaa.
17
+
6
18
  v0.1.8 (2014-08-14)
7
19
  ------------------
8
20
 
@@ -1,4 +1,4 @@
1
1
  class AutoDeployTest
2
2
  # gem version
3
- VERSION = '0.1.8'
3
+ VERSION = '0.1.9'
4
4
  end
data/tasks/changelog.rake CHANGED
@@ -11,4 +11,16 @@ namespace :changelog do
11
11
  File.open('CHANGELOG.md', 'w', encoding: 'UTF-8') { |f| f.write(changelog) }
12
12
  end
13
13
 
14
+ task :version do
15
+ changelog = File.open('CHANGELOG.md', 'r', encoding: 'UTF-8') { |f| f.read }
16
+ changelog = changelog.lines
17
+ changelog = changelog[0..4] + [nil, nil, nil] + changelog[5..-1]
18
+ changelog[5] = "v#{version} (#{Time.now.strftime('%Y-%m-%d')})\n"
19
+ changelog[6] = '-' * (changelog[3].chars.count - 1) + "\n"
20
+ changelog[7] = "\n"
21
+ changelog = changelog.join
22
+ File.open('CHANGELOG.md', 'w', encoding: 'UTF-8') { |f| f.write(changelog) }
23
+ sh("git add CHANGELOG.md")
24
+ end
25
+
14
26
  end
data/tasks/release.rake CHANGED
@@ -13,18 +13,6 @@ namespace :release do
13
13
  version
14
14
  end
15
15
 
16
- task :changelog do
17
- changelog = File.open('CHANGELOG.md', 'r', encoding: 'UTF-8') { |f| f.read }
18
- changelog = changelog.lines
19
- changelog = changelog[0..4] + [nil, nil, nil] + changelog[5..-1]
20
- changelog[5] = "v#{version} (#{Time.now.strftime('%Y-%m-%d')})\n"
21
- changelog[6] = '-' * (changelog[3].chars.count - 1) + "\n"
22
- changelog[7] = "\n"
23
- changelog = changelog.join
24
- File.open('CHANGELOG.md', 'w', encoding: 'UTF-8') { |f| f.write(changelog) }
25
- sh("git add CHANGELOG.md")
26
- end
27
-
28
16
  task :tag do
29
17
  path = 'lib/auto_deploy_test/version.rb'
30
18
  file = File.read(path)
@@ -46,7 +34,7 @@ desc "Releases a new version"
46
34
  task :release => [
47
35
  'release:require_version',
48
36
  'test',
49
- 'release:changelog',
37
+ 'changelog:version',
50
38
  'release:tag',
51
39
  'release:push',
52
40
  ]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: auto-deploy-test
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Trevor Rowe