Skip to content

Commit 678e997

Browse files
committed
release pmdtester 1.0.0.beta2
1 parent e5728ad commit 678e997

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ script:
77
- rake install_gem
88
- pmdtester -h
99

10-
before_deploy: "rake hoe:spec"
10+
before_deploy:
11+
- git stash --all
12+
- rake hoe:spec
13+
1114
deploy:
1215
provider: rubygems
1316
api_key:
1417
secure: xcEpX/r7es6/jnvNPrVClVkKLemC+4EaFACfK9PCw05jAqf3sDX8UMKD2B4NU1JfF+I/szC5loyCe8s1wBUbFhelR8sL93RNOyVlQCKqaDTFw0DUvnbKWdgDb7POhcmo8SWi4aaKPias6wCuWA/Wc6jUvcrlAgKDsmYqOukXQoFyQbOUsnqrE/FMA7BfUIHkeeJbNk8807u4+aMqahZyzTFvuEVBUvKqCzDYPl9kpm4fzOtjxiExj1ic9dr2Dz5bcyWteMjZFSgjYWgZUXpk8FWCj5R/8VQsklxFFXFZlQIVwqtpaKgEOjwOOxaA6b8O7OeU82HtSPfxy6eCNE7pvzoYq+ZGxxk6fPbAl2mqKtPU76oRKH8YmXuEdDtdHVCYp7wOFdrLhJ6bJ3H/DSD14Kso21D3ktt4y4qkCd0Ev1a6nbY3LrO+NqFlZytwlYY1t8CUWyc9GfvpQXd7j0shSvrh2RU0+ATcQc0tRSHE2htjbiMWPi/ffMNe5h7iVqho5cLC4n187VrWOqGJf2S47spIgw9N3VWzyfAxAxI2XIvWcGoAIQhEgU6bH14Mz+0amG6ggzCBAbDPEC1j8cuwVkmanWCWZWi6EuRbCYZ7rgCFIx3hZS9NPBANfcXudm7eINvuMlFnmwrVzmtTIEZTy56ZfaWPzGxotyn5M9DdT1U=
1518
on:
1619
tags: true
20+
skip_cleanup: true
1721
gem: pmdtester
1822
gemspec: pmdtester.gemspec

Rakefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ Hoe.plugin :git
1414
hoe = Hoe.spec 'pmdtester' do
1515
self.version = PmdTester::Options::VERSION
1616

17-
self.author = 'Binguo Bao'
18-
self.email = '[email protected]'
17+
developer 'Andreas Dangle', '[email protected]'
18+
developer 'Binguo Bao', '[email protected]'
19+
1920
self.clean_globs = %w[target/reports/**/* target/test/**/*]
2021
self.extra_deps += [['nokogiri', '~> 1.8.2'], ['slop', '~> 4.6.2']]
2122
self.extra_dev_deps += [

lib/pmdtester/parsers/options.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Options
1515
LOCAL = 'local'
1616
ONLINE = 'online'
1717
SINGLE = 'single'
18-
VERSION = '1.0.0-SNAPSHOT'
18+
VERSION = '1.0.0-beta2'
1919

2020
attr_reader :local_git_repo
2121
attr_reader :base_branch

0 commit comments

Comments
 (0)