codespicuous 0.0.2 → 0.0.3

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: 2f6aa844f077caec750d39a33e9c748daca60eed
4
- data.tar.gz: 66f2b73f5bfe77d9bee7f12c20fbf0916eb46138
3
+ metadata.gz: f9379428b6cb144a43717aa71bcd93ca85f078b4
4
+ data.tar.gz: 75eef51c8c5aeb3db60eb6c1a19181f7748aece7
5
5
  SHA512:
6
- metadata.gz: 6fb02298619c7efe10bb65731cf6023d92ed9e7e2fd59042e01f9f90a8f1cfc4a330898569565badf7ecab0c05293b04b7c34b83696d66e6d2b6b7b8a63fae01
7
- data.tar.gz: f880b34a43da171ee189fd8ba3e3d6ad66c6c466702902e23ecd2df0f1c505fc4fbff2629996e3cd19c9417d3278885b49aa59e7db0c1c9d330d9df40aef7262
6
+ metadata.gz: 5002c811d2e23ab4b971af34232b721354f3daecdae2c6473eb1ac81773355344eecf4e5902bbe07d6580079761f4e9e11bb21510eb58bb61e562e3e434265cb
7
+ data.tar.gz: a2a5dfdf61f318279c9a8872af6602fb7ad4bd62e2e77bb2b675d8e99475acb79ab8622daf09a877608f50e8b58a1a6c604894ee80ce1d260cf78d1d24bce674
@@ -8,7 +8,7 @@ class SVNClient
8
8
 
9
9
  def log_xml(from, to)
10
10
  AttemptTo.attempt_to('svn log: "' + @repository + '"', 5) {
11
- CommandRunner.run("svn log #{@repository} -r{#{from.strftime("%Y-%m-%d")}}:{#{to.strftime("%Y-%m-%d")}} --xml")
11
+ CommandRunner.run("svn log #{@repository} -r{#{from.strftime("%Y-%m-%d")}}:{#{to.strftime("%Y-%m-%d")}} --xml --non-interactive ")
12
12
  }
13
13
  end
14
14
  end
@@ -1,4 +1,4 @@
1
1
 
2
2
  module Codespicuous
3
- VERSION = "0.0.2"
3
+ VERSION = "0.0.3"
4
4
  end
@@ -8,7 +8,7 @@ describe "Interface towards the command line svn" do
8
8
  now = DateTime.new(1978)
9
9
 
10
10
  expect(AttemptTo).to receive(:attempt_to).with('svn log: "Heh"', 5).and_yield
11
- expect(CommandRunner).to receive(:run).with("svn log Heh -r{1977-01-01}:{1978-01-01} --xml").and_return(xmllog)
11
+ expect(CommandRunner).to receive(:run).with("svn log Heh -r{1977-01-01}:{1978-01-01} --xml --non-interactive ").and_return(xmllog)
12
12
 
13
13
  svn.repository("Heh")
14
14
  expect(svn.log_xml(now.prev_year, now)).to eq(xmllog)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codespicuous
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bas Vodde