approvals 0.0.15 → 0.0.16

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: 3467c5674b942ca5ea76c264bc3b0773e2b99983
4
- data.tar.gz: 60478c31b4f022bb605ffa3a4e9da511759e1002
3
+ metadata.gz: f03c9912d647a41bc6ccef8ce020201e000f125b
4
+ data.tar.gz: 34f5917f013272df690db31f5edacc2929d8084f
5
5
  SHA512:
6
- metadata.gz: ff18968ce69e403214ff9eeb5698a63dfe958417f6d060e57b6e532dc541c6e034ea19640e7ab1cd17f8b1c4acc40c5dfec50252030b7ffaaf2bee57d87a5e28
7
- data.tar.gz: 46e7be4063ba047353afb5dfceaaca6c1d7bce071fb5341c0c444a25411a7dc961be75d0271be2c60fb8c64b4ea319788e2fec3ab93fef401b46ab991301d85d
6
+ metadata.gz: a3ef07f8ccc9ccb287d81db21fa2ca6627eb5989c086bfd4c1fa8d8ed35dd612a3ea0fb96845c36719ae3a8f728a3cc03d39c5290acd31aa72d5de2691d8a658
7
+ data.tar.gz: d6396fcc5fd6692bdd3a802fe9e521fdf042c69a7549c239889815fba2db679c2d5bfe2c1b4cddd9cf6e07e17ac68b21ba428a1d0853f8ede62dec6948355941
data/.travis.yml CHANGED
@@ -1,9 +1,10 @@
1
1
  language: ruby
2
- gemfile:
3
- Gemfile.travis
4
2
  rvm:
5
3
  - 1.9.2
6
4
  - 1.9.3
7
- - rbx
8
-
5
+ - 2.0.0
6
+ - 2.1.0
7
+ - ruby-head
8
+ - rbx-2
9
9
  script: bundle exec rspec spec
10
+ cache: bundler
data/bin/approvals CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  require 'rubygems'
4
4
  require 'thor'
5
- require 'commandline'
5
+ require 'approvals/cli'
6
6
 
7
7
  Approvals::CLI.start
8
8
 
@@ -106,11 +106,11 @@ module Approvals
106
106
  end
107
107
 
108
108
  def approved_text
109
- File.read approved_path
109
+ File.read(approved_path).chomp
110
110
  end
111
111
 
112
112
  def received_text
113
- File.read received_path
113
+ File.read(received_path).chomp
114
114
  end
115
115
  end
116
116
  end
File without changes
@@ -1,3 +1,3 @@
1
1
  module Approvals
2
- VERSION = '0.0.15'
2
+ VERSION = '0.0.16'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: approvals
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
4
+ version: 0.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Katrina Owen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-05 00:00:00.000000000 Z
11
+ date: 2014-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -78,7 +78,6 @@ files:
78
78
  - ".travis.yml"
79
79
  - Changelog.md
80
80
  - Gemfile
81
- - Gemfile.travis
82
81
  - License.txt
83
82
  - README.md
84
83
  - Rakefile
@@ -86,6 +85,7 @@ files:
86
85
  - bin/approvals
87
86
  - lib/approvals.rb
88
87
  - lib/approvals/approval.rb
88
+ - lib/approvals/cli.rb
89
89
  - lib/approvals/configuration.rb
90
90
  - lib/approvals/dotfile.rb
91
91
  - lib/approvals/dsl.rb
@@ -121,7 +121,6 @@ files:
121
121
  - lib/approvals/writers/json_writer.rb
122
122
  - lib/approvals/writers/text_writer.rb
123
123
  - lib/approvals/writers/xml_writer.rb
124
- - lib/commandline.rb
125
124
  - spec/approvals_spec.rb
126
125
  - spec/configuration_spec.rb
127
126
  - spec/dotfile_spec.rb
@@ -200,9 +199,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
200
199
  version: '0'
201
200
  requirements: []
202
201
  rubyforge_project: approvals
203
- rubygems_version: 2.2.0
202
+ rubygems_version: 2.2.2
204
203
  signing_key:
205
204
  specification_version: 4
206
205
  summary: Approval Tests for Ruby
207
206
  test_files: []
208
- has_rdoc:
data/Gemfile.travis DELETED
@@ -1,8 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- platforms :rbx do
4
- gem 'rubysl', '~> 2.0'
5
- gem 'racc'
6
- end
7
-
8
- eval_gemfile File.expand_path('../Gemfile', __FILE__)