robot-vim 0.1.0 → 0.1.1

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.
@@ -1,5 +1,5 @@
1
1
  module Robot
2
2
  module Vim
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
@@ -18,5 +18,6 @@ describe "Automating Vim with RobotVim" do
18
18
  runner.run(:commands => commands, :input_file => input_path)
19
19
  result = File.read(output_file)
20
20
  result.should eql(unsorted_text.split("\n").sort.join("\n") + "\n")
21
+ File.delete(output_file)
21
22
  end
22
23
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: robot-vim
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.0
5
+ version: 0.1.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Matt Margolis
@@ -67,7 +67,6 @@ files:
67
67
  - lib/robot-vim/runner.rb
68
68
  - lib/robot-vim/script_file.rb
69
69
  - lib/robot-vim/version.rb
70
- - output.txt
71
70
  - robot-vim.gemspec
72
71
  - spec/fixtures/unsorted_file.txt
73
72
  - spec/integration_spec.rb
data/output.txt DELETED
@@ -1,3 +0,0 @@
1
- A first line
2
- Middle line
3
- This line should be last