coveralls 0.6.7 → 0.6.8
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 +7 -0
- data/.ruby-version +1 -0
- data/.travis.yml +4 -1
- data/coveralls-ruby.gemspec +1 -5
- data/lib/coveralls.rb +15 -16
- data/lib/coveralls/api.rb +10 -10
- data/lib/coveralls/command.rb +4 -3
- data/lib/coveralls/configuration.rb +3 -3
- data/lib/coveralls/output.rb +80 -0
- data/lib/coveralls/simplecov.rb +12 -12
- data/lib/coveralls/version.rb +1 -1
- data/spec/coveralls/output_spec.rb +29 -0
- data/spec/coveralls/simplecov_spec.rb +1 -1
- metadata +24 -58
- data/.rbenv-version +0 -1
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: bb459e184a87487cec1e9365bfbed5a4b2e85890
|
4
|
+
data.tar.gz: cb1c3e0a7429a1df758cadacbbb901e899272ec7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0e3fb3fca099134d348cffe18ef846b53b396156ede97da46444646a637d3ee563bcb62bccde43155a0551c9d0d4abc5b001a44f6bfb2bf94dfd1451d88d4e9c
|
7
|
+
data.tar.gz: 088a7e7112eed4fc0a1957de1d339a49c20115ce9580f2ce5bcc4d354bc4c243f760fc04476dacc2552e61c9e9deaf537d44dc7a4d1576189f70852712d51d0e
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.9.3-p448
|
data/.travis.yml
CHANGED
data/coveralls-ruby.gemspec
CHANGED
@@ -16,7 +16,7 @@ Gem::Specification.new do |gem|
|
|
16
16
|
gem.version = Coveralls::VERSION
|
17
17
|
|
18
18
|
gem.add_dependency 'rest-client'
|
19
|
-
gem.add_dependency '
|
19
|
+
gem.add_dependency 'term-ansicolor'
|
20
20
|
gem.add_dependency 'multi_json', '~> 1.3'
|
21
21
|
gem.add_dependency 'thor'
|
22
22
|
|
@@ -24,10 +24,6 @@ Gem::Specification.new do |gem|
|
|
24
24
|
gem.add_dependency 'simplecov', ">= 0.7"
|
25
25
|
end
|
26
26
|
|
27
|
-
unless ENV["CI"]
|
28
|
-
gem.add_development_dependency 'debugger'
|
29
|
-
end
|
30
|
-
|
31
27
|
gem.add_runtime_dependency('jruby-openssl') if RUBY_PLATFORM == 'java'
|
32
28
|
|
33
29
|
gem.add_development_dependency 'rspec'
|
data/lib/coveralls.rb
CHANGED
@@ -1,19 +1,18 @@
|
|
1
|
-
require 'colorize'
|
2
|
-
|
3
1
|
require "coveralls/version"
|
4
2
|
require "coveralls/configuration"
|
5
3
|
require "coveralls/api"
|
4
|
+
require "coveralls/output"
|
6
5
|
require "coveralls/simplecov"
|
7
6
|
|
8
7
|
module Coveralls
|
9
8
|
extend self
|
10
9
|
|
11
10
|
class NilFormatter
|
12
|
-
def format(
|
11
|
+
def format(result)
|
13
12
|
end
|
14
13
|
end
|
15
14
|
|
16
|
-
attr_accessor :testing, :noisy, :
|
15
|
+
attr_accessor :testing, :noisy, :run_locally
|
17
16
|
|
18
17
|
def wear!(simplecov_setting=nil, &block)
|
19
18
|
setup!
|
@@ -49,9 +48,9 @@ module Coveralls
|
|
49
48
|
# Load the appropriate adapter.
|
50
49
|
if @@adapter == :simplecov
|
51
50
|
::SimpleCov.formatter = Coveralls::SimpleCov::Formatter
|
52
|
-
puts
|
51
|
+
Coveralls::Output.puts("[Coveralls] Set up the SimpleCov formatter.", :color => "green")
|
53
52
|
else
|
54
|
-
puts
|
53
|
+
Coveralls::Output.puts("[Coveralls] Couldn't find an appropriate adapter.", :color => "red")
|
55
54
|
end
|
56
55
|
|
57
56
|
end
|
@@ -61,17 +60,17 @@ module Coveralls
|
|
61
60
|
::SimpleCov.add_filter 'vendor'
|
62
61
|
|
63
62
|
if simplecov_setting
|
64
|
-
puts
|
63
|
+
Coveralls::Output.puts("[Coveralls] Using SimpleCov's '#{simplecov_setting}' settings.", :color => "green")
|
65
64
|
if block_given?
|
66
|
-
::SimpleCov.start(simplecov_setting) { instance_eval
|
65
|
+
::SimpleCov.start(simplecov_setting) { instance_eval(&block)}
|
67
66
|
else
|
68
67
|
::SimpleCov.start(simplecov_setting)
|
69
68
|
end
|
70
69
|
elsif block_given?
|
71
|
-
puts
|
72
|
-
::SimpleCov.start { instance_eval
|
70
|
+
Coveralls::Output.puts("[Coveralls] Using SimpleCov settings defined in block.", :color => "green")
|
71
|
+
::SimpleCov.start { instance_eval(&block)}
|
73
72
|
else
|
74
|
-
puts
|
73
|
+
Coveralls::Output.puts("[Coveralls] Using SimpleCov's default settings.", :color => "green")
|
75
74
|
::SimpleCov.start
|
76
75
|
end
|
77
76
|
end
|
@@ -80,19 +79,19 @@ module Coveralls
|
|
80
79
|
def should_run?
|
81
80
|
# Fail early if we're not on a CI
|
82
81
|
unless ENV["CI"] || ENV["JENKINS_URL"] ||
|
83
|
-
ENV["COVERALLS_RUN_LOCALLY"] ||
|
84
|
-
puts
|
82
|
+
ENV["COVERALLS_RUN_LOCALLY"] || testing
|
83
|
+
Coveralls::Output.puts("[Coveralls] Outside the Travis environment, not sending data.", :color => "yellow")
|
85
84
|
return false
|
86
85
|
end
|
87
86
|
|
88
|
-
if ENV["COVERALLS_RUN_LOCALLY"] ||
|
89
|
-
puts
|
87
|
+
if ENV["COVERALLS_RUN_LOCALLY"] || run_locally
|
88
|
+
Coveralls::Output.puts("[Coveralls] Creating a new job on Coveralls from local coverage results.", :color => "cyan")
|
90
89
|
end
|
91
90
|
|
92
91
|
true
|
93
92
|
end
|
94
93
|
|
95
94
|
def noisy?
|
96
|
-
ENV["COVERALLS_NOISY"] ||
|
95
|
+
ENV["COVERALLS_NOISY"] || noisy
|
97
96
|
end
|
98
97
|
end
|
data/lib/coveralls/api.rb
CHANGED
@@ -12,19 +12,19 @@ module Coveralls
|
|
12
12
|
def self.post_json(endpoint, hash)
|
13
13
|
disable_net_blockers!
|
14
14
|
url = endpoint_to_url(endpoint)
|
15
|
-
|
15
|
+
Coveralls::Output.puts("#{ MultiJson.dump(hash, :pretty => true) }", :color => "green") if ENV['COVERALLS_DEBUG']
|
16
16
|
hash = apified_hash hash
|
17
|
-
|
17
|
+
Coveralls::Output.puts "[Coveralls] Submitting to #{API_BASE}", :color => "cyan"
|
18
18
|
response = RestClient.post(url, :json_file => hash_to_file(hash))
|
19
19
|
response_hash = MultiJson.load(response.to_str)
|
20
|
-
|
20
|
+
Coveralls::Output.puts "[Coveralls] #{ response_hash['message'] }", :color => "cyan"
|
21
21
|
if response_hash['message']
|
22
|
-
|
22
|
+
Coveralls::Output.puts("[Coveralls] #{ Coveralls::Output.format(response_hash['url'], :color => "underline") }", :color => "cyan")
|
23
23
|
end
|
24
24
|
rescue RestClient::ServiceUnavailable
|
25
|
-
puts
|
25
|
+
Coveralls::Output.puts "[Coveralls] API timeout occured, but data should still be processed", :color => "red"
|
26
26
|
rescue RestClient::InternalServerError
|
27
|
-
|
27
|
+
Coveralls::Output.puts "[Coveralls] API internal error occured, we're on it!", :color => "red"
|
28
28
|
end
|
29
29
|
|
30
30
|
private
|
@@ -58,11 +58,11 @@ module Coveralls
|
|
58
58
|
def self.apified_hash hash
|
59
59
|
config = Coveralls::Configuration.configuration
|
60
60
|
if ENV['CI'] || ENV['COVERALLS_DEBUG'] || Coveralls.testing
|
61
|
-
|
62
|
-
|
63
|
-
gsub(/"repo_token": "(.*?)"/,'"repo_token": "[secure]"')
|
61
|
+
Coveralls::Output.puts "[Coveralls] Submiting with config:", :color => "yellow"
|
62
|
+
Coveralls::Output.puts MultiJson.dump(config, :pretty => true)
|
63
|
+
.gsub(/"repo_token": "(.*?)"/,'"repo_token": "[secure]"'), :color => "yellow"
|
64
64
|
end
|
65
65
|
hash.merge(config)
|
66
66
|
end
|
67
67
|
end
|
68
|
-
end
|
68
|
+
end
|
data/lib/coveralls/command.rb
CHANGED
@@ -57,12 +57,13 @@ module Coveralls
|
|
57
57
|
def ensure_can_run_locally!
|
58
58
|
config = Coveralls::Configuration.configuration
|
59
59
|
if config[:repo_token].nil?
|
60
|
-
puts "Coveralls cannot run locally because no repo_secret_token is set in .coveralls.yml"
|
61
|
-
puts "Please try again when you get your act together."
|
60
|
+
Coveralls::Output.puts "Coveralls cannot run locally because no repo_secret_token is set in .coveralls.yml", :color => "red"
|
61
|
+
Coveralls::Output.puts "Please try again when you get your act together.", :color => "red"
|
62
|
+
|
62
63
|
return false
|
63
64
|
end
|
64
65
|
true
|
65
66
|
end
|
66
67
|
|
67
68
|
end
|
68
|
-
end
|
69
|
+
end
|
@@ -109,8 +109,8 @@ module Coveralls
|
|
109
109
|
hash
|
110
110
|
|
111
111
|
rescue Exception => e
|
112
|
-
puts "Coveralls git error:"
|
113
|
-
puts e.to_s
|
112
|
+
Coveralls::Output.puts "Coveralls git error:", :color => "red"
|
113
|
+
Coveralls::Output.puts e.to_s, :color => "red"
|
114
114
|
nil
|
115
115
|
end
|
116
116
|
|
@@ -150,4 +150,4 @@ module Coveralls
|
|
150
150
|
end
|
151
151
|
|
152
152
|
end
|
153
|
-
end
|
153
|
+
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
module Coveralls
|
2
|
+
#
|
3
|
+
# Public: Methods for formatting strings with Term::ANSIColor.
|
4
|
+
# Does not utilize monkey-patching and should play nicely when
|
5
|
+
# included with other libraries.
|
6
|
+
#
|
7
|
+
# All methods are module methods and should be called on
|
8
|
+
# the Coveralls::Output module.
|
9
|
+
#
|
10
|
+
# Examples
|
11
|
+
#
|
12
|
+
# Coveralls::Output.format("Hello World", :color => "cyan")
|
13
|
+
# # => "\e[36mHello World\e[0m"
|
14
|
+
#
|
15
|
+
# Coveralls::Output.print("Hello World")
|
16
|
+
# # Hello World => nil
|
17
|
+
#
|
18
|
+
# Coveralls::Output.puts("Hello World", :color => "underline")
|
19
|
+
# # Hello World
|
20
|
+
# # => nil
|
21
|
+
module Output
|
22
|
+
require 'term/ansicolor'
|
23
|
+
extend self
|
24
|
+
|
25
|
+
# Public: Formats the given string with the specified color
|
26
|
+
# through Term::ANSIColor
|
27
|
+
#
|
28
|
+
# string - the text to be formatted
|
29
|
+
# options - The hash of options used for formatting the text:
|
30
|
+
# :color - The color to be passed as a method to
|
31
|
+
# Term::ANSIColor
|
32
|
+
#
|
33
|
+
# Examples
|
34
|
+
#
|
35
|
+
# Coveralls::Output.format("Hello World!", :color => "cyan")
|
36
|
+
# # => "\e[36mHello World\e[0m"
|
37
|
+
#
|
38
|
+
# Returns the formatted string.
|
39
|
+
def format(string, options = {})
|
40
|
+
if options[:color] && Term::ANSIColor.respond_to?(options[:color].to_sym)
|
41
|
+
Term::ANSIColor.send(options[:color].to_sym, string)
|
42
|
+
else
|
43
|
+
string
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
# Public: Passes .format to Kernel#puts
|
48
|
+
#
|
49
|
+
# string - the text to be formatted
|
50
|
+
# options - The hash of options used for formatting the text:
|
51
|
+
# :color - The color to be passed as a method to
|
52
|
+
# Term::ANSIColor
|
53
|
+
#
|
54
|
+
#
|
55
|
+
# Example
|
56
|
+
#
|
57
|
+
# Coveralls::Output.puts("Hello World", :color => "cyan")
|
58
|
+
#
|
59
|
+
# Returns nil.
|
60
|
+
def puts(string, options = {})
|
61
|
+
Kernel.puts self.format(string, options)
|
62
|
+
end
|
63
|
+
|
64
|
+
# Public: Passes .format to Kernel#print
|
65
|
+
#
|
66
|
+
# string - the text to be formatted
|
67
|
+
# options - The hash of options used for formatting the text:
|
68
|
+
# :color - The color to be passed as a method to
|
69
|
+
# Term::ANSIColor
|
70
|
+
#
|
71
|
+
# Example
|
72
|
+
#
|
73
|
+
# Coveralls::Output.print("Hello World!", :color => "underline")
|
74
|
+
#
|
75
|
+
# Returns nil.
|
76
|
+
def print(string, options = {})
|
77
|
+
Kernel.print self.format(string, options)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
data/lib/coveralls/simplecov.rb
CHANGED
@@ -7,19 +7,19 @@ module Coveralls
|
|
7
7
|
if result.files.length > 0
|
8
8
|
puts "[Coveralls] Some handy coverage stats:"
|
9
9
|
else
|
10
|
-
puts "[Coveralls] There are no covered files."
|
10
|
+
Coveralls::Output.puts "[Coveralls] There are no covered files.", :color => "yellow"
|
11
11
|
end
|
12
12
|
result.files.each do |f|
|
13
13
|
print " * "
|
14
|
-
print
|
15
|
-
print " => "
|
14
|
+
Coveralls::Output.print short_filename(f.filename).to_s, :color => "cyan"
|
15
|
+
Coveralls::Output.print " => ", :color => "white"
|
16
16
|
cov = "#{f.covered_percent.round}%"
|
17
17
|
if f.covered_percent > 90
|
18
|
-
print cov
|
18
|
+
Coveralls::Output.print cov, :color => "green"
|
19
19
|
elsif f.covered_percent > 80
|
20
|
-
print cov
|
20
|
+
Coveralls::Output.print cov, :color => "yellow"
|
21
21
|
else
|
22
|
-
print cov
|
22
|
+
Coveralls::Output.print cov, :color => "red"
|
23
23
|
end
|
24
24
|
puts ""
|
25
25
|
end
|
@@ -79,14 +79,14 @@ module Coveralls
|
|
79
79
|
end
|
80
80
|
|
81
81
|
def display_error(e)
|
82
|
-
puts "Coveralls encountered an exception:"
|
83
|
-
puts e.class.to_s
|
84
|
-
puts e.message
|
82
|
+
Coveralls::Output.puts "Coveralls encountered an exception:", :color => "red"
|
83
|
+
Coveralls::Output.puts e.class.to_s, :color => "red"
|
84
|
+
Coveralls::Output.puts e.message, :color => "red"
|
85
85
|
e.backtrace.each do |line|
|
86
|
-
puts line
|
86
|
+
Coveralls::Output.puts line, :color => "red"
|
87
87
|
end if e.backtrace
|
88
88
|
if e.respond_to?(:response) && e.response
|
89
|
-
puts e.response.to_s
|
89
|
+
Coveralls::Output.puts e.response.to_s, :color => "red"
|
90
90
|
end
|
91
91
|
false
|
92
92
|
end
|
@@ -102,4 +102,4 @@ module Coveralls
|
|
102
102
|
|
103
103
|
end
|
104
104
|
end
|
105
|
-
end
|
105
|
+
end
|
data/lib/coveralls/version.rb
CHANGED
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Coveralls::Output do
|
4
|
+
describe '.format' do
|
5
|
+
it "accepts a color argument" do
|
6
|
+
string = 'Hello'
|
7
|
+
ansi_color_string = Term::ANSIColor.red(string)
|
8
|
+
Coveralls::Output.format(string, :color => 'red').should eq(ansi_color_string)
|
9
|
+
end
|
10
|
+
|
11
|
+
it "also accepts no color arguments" do
|
12
|
+
unformatted_string = "Hi Doggie!"
|
13
|
+
Coveralls::Output.format(unformatted_string).should eq(unformatted_string)
|
14
|
+
end
|
15
|
+
|
16
|
+
it "rejects formats unrecognized by Term::ANSIColor" do
|
17
|
+
string = 'Hi dog!'
|
18
|
+
Coveralls::Output.format(string, :color => "not_a_real_color").should eq(string)
|
19
|
+
end
|
20
|
+
|
21
|
+
it "accepts more than 1 color argument" do
|
22
|
+
pending "Not implemented"
|
23
|
+
|
24
|
+
string = 'Hi dog!'
|
25
|
+
multi_formatted_string = Term::ANSIColor.red{ Term::ANSIColor.underline(string) }
|
26
|
+
Coveralls::Output.format(string, :color => 'red underline').should eq(multi_formatted_string)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -61,7 +61,7 @@ describe Coveralls::SimpleCov::Formatter do
|
|
61
61
|
|
62
62
|
context "with api error" do
|
63
63
|
it "rescues" do
|
64
|
-
e = RestClient::ResourceNotFound.new
|
64
|
+
e = RestClient::ResourceNotFound.new double('HTTP Response', :code => '502')
|
65
65
|
silence do
|
66
66
|
Coveralls::SimpleCov::Formatter.new.display_error(e).should be_false
|
67
67
|
end
|
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: coveralls
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
5
|
-
prerelease:
|
4
|
+
version: 0.6.8
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Nick Merwin
|
@@ -10,44 +9,39 @@ authors:
|
|
10
9
|
autorequire:
|
11
10
|
bindir: bin
|
12
11
|
cert_chain: []
|
13
|
-
date: 2013-
|
12
|
+
date: 2013-09-12 00:00:00.000000000 Z
|
14
13
|
dependencies:
|
15
14
|
- !ruby/object:Gem::Dependency
|
16
15
|
name: rest-client
|
17
16
|
requirement: !ruby/object:Gem::Requirement
|
18
|
-
none: false
|
19
17
|
requirements:
|
20
|
-
- -
|
18
|
+
- - '>='
|
21
19
|
- !ruby/object:Gem::Version
|
22
20
|
version: '0'
|
23
21
|
type: :runtime
|
24
22
|
prerelease: false
|
25
23
|
version_requirements: !ruby/object:Gem::Requirement
|
26
|
-
none: false
|
27
24
|
requirements:
|
28
|
-
- -
|
25
|
+
- - '>='
|
29
26
|
- !ruby/object:Gem::Version
|
30
27
|
version: '0'
|
31
28
|
- !ruby/object:Gem::Dependency
|
32
|
-
name:
|
29
|
+
name: term-ansicolor
|
33
30
|
requirement: !ruby/object:Gem::Requirement
|
34
|
-
none: false
|
35
31
|
requirements:
|
36
|
-
- -
|
32
|
+
- - '>='
|
37
33
|
- !ruby/object:Gem::Version
|
38
34
|
version: '0'
|
39
35
|
type: :runtime
|
40
36
|
prerelease: false
|
41
37
|
version_requirements: !ruby/object:Gem::Requirement
|
42
|
-
none: false
|
43
38
|
requirements:
|
44
|
-
- -
|
39
|
+
- - '>='
|
45
40
|
- !ruby/object:Gem::Version
|
46
41
|
version: '0'
|
47
42
|
- !ruby/object:Gem::Dependency
|
48
43
|
name: multi_json
|
49
44
|
requirement: !ruby/object:Gem::Requirement
|
50
|
-
none: false
|
51
45
|
requirements:
|
52
46
|
- - ~>
|
53
47
|
- !ruby/object:Gem::Version
|
@@ -55,7 +49,6 @@ dependencies:
|
|
55
49
|
type: :runtime
|
56
50
|
prerelease: false
|
57
51
|
version_requirements: !ruby/object:Gem::Requirement
|
58
|
-
none: false
|
59
52
|
requirements:
|
60
53
|
- - ~>
|
61
54
|
- !ruby/object:Gem::Version
|
@@ -63,87 +56,62 @@ dependencies:
|
|
63
56
|
- !ruby/object:Gem::Dependency
|
64
57
|
name: thor
|
65
58
|
requirement: !ruby/object:Gem::Requirement
|
66
|
-
none: false
|
67
59
|
requirements:
|
68
|
-
- -
|
60
|
+
- - '>='
|
69
61
|
- !ruby/object:Gem::Version
|
70
62
|
version: '0'
|
71
63
|
type: :runtime
|
72
64
|
prerelease: false
|
73
65
|
version_requirements: !ruby/object:Gem::Requirement
|
74
|
-
none: false
|
75
66
|
requirements:
|
76
|
-
- -
|
67
|
+
- - '>='
|
77
68
|
- !ruby/object:Gem::Version
|
78
69
|
version: '0'
|
79
70
|
- !ruby/object:Gem::Dependency
|
80
71
|
name: simplecov
|
81
72
|
requirement: !ruby/object:Gem::Requirement
|
82
|
-
none: false
|
83
73
|
requirements:
|
84
|
-
- -
|
74
|
+
- - '>='
|
85
75
|
- !ruby/object:Gem::Version
|
86
76
|
version: '0.7'
|
87
77
|
type: :runtime
|
88
78
|
prerelease: false
|
89
79
|
version_requirements: !ruby/object:Gem::Requirement
|
90
|
-
none: false
|
91
80
|
requirements:
|
92
|
-
- -
|
81
|
+
- - '>='
|
93
82
|
- !ruby/object:Gem::Version
|
94
83
|
version: '0.7'
|
95
|
-
- !ruby/object:Gem::Dependency
|
96
|
-
name: debugger
|
97
|
-
requirement: !ruby/object:Gem::Requirement
|
98
|
-
none: false
|
99
|
-
requirements:
|
100
|
-
- - ! '>='
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
version: '0'
|
103
|
-
type: :development
|
104
|
-
prerelease: false
|
105
|
-
version_requirements: !ruby/object:Gem::Requirement
|
106
|
-
none: false
|
107
|
-
requirements:
|
108
|
-
- - ! '>='
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: '0'
|
111
84
|
- !ruby/object:Gem::Dependency
|
112
85
|
name: rspec
|
113
86
|
requirement: !ruby/object:Gem::Requirement
|
114
|
-
none: false
|
115
87
|
requirements:
|
116
|
-
- -
|
88
|
+
- - '>='
|
117
89
|
- !ruby/object:Gem::Version
|
118
90
|
version: '0'
|
119
91
|
type: :development
|
120
92
|
prerelease: false
|
121
93
|
version_requirements: !ruby/object:Gem::Requirement
|
122
|
-
none: false
|
123
94
|
requirements:
|
124
|
-
- -
|
95
|
+
- - '>='
|
125
96
|
- !ruby/object:Gem::Version
|
126
97
|
version: '0'
|
127
98
|
- !ruby/object:Gem::Dependency
|
128
99
|
name: rake
|
129
100
|
requirement: !ruby/object:Gem::Requirement
|
130
|
-
none: false
|
131
101
|
requirements:
|
132
|
-
- -
|
102
|
+
- - '>='
|
133
103
|
- !ruby/object:Gem::Version
|
134
104
|
version: '0'
|
135
105
|
type: :development
|
136
106
|
prerelease: false
|
137
107
|
version_requirements: !ruby/object:Gem::Requirement
|
138
|
-
none: false
|
139
108
|
requirements:
|
140
|
-
- -
|
109
|
+
- - '>='
|
141
110
|
- !ruby/object:Gem::Version
|
142
111
|
version: '0'
|
143
112
|
- !ruby/object:Gem::Dependency
|
144
113
|
name: webmock
|
145
114
|
requirement: !ruby/object:Gem::Requirement
|
146
|
-
none: false
|
147
115
|
requirements:
|
148
116
|
- - '='
|
149
117
|
- !ruby/object:Gem::Version
|
@@ -151,7 +119,6 @@ dependencies:
|
|
151
119
|
type: :development
|
152
120
|
prerelease: false
|
153
121
|
version_requirements: !ruby/object:Gem::Requirement
|
154
|
-
none: false
|
155
122
|
requirements:
|
156
123
|
- - '='
|
157
124
|
- !ruby/object:Gem::Version
|
@@ -159,7 +126,6 @@ dependencies:
|
|
159
126
|
- !ruby/object:Gem::Dependency
|
160
127
|
name: vcr
|
161
128
|
requirement: !ruby/object:Gem::Requirement
|
162
|
-
none: false
|
163
129
|
requirements:
|
164
130
|
- - '='
|
165
131
|
- !ruby/object:Gem::Version
|
@@ -167,7 +133,6 @@ dependencies:
|
|
167
133
|
type: :development
|
168
134
|
prerelease: false
|
169
135
|
version_requirements: !ruby/object:Gem::Requirement
|
170
|
-
none: false
|
171
136
|
requirements:
|
172
137
|
- - '='
|
173
138
|
- !ruby/object:Gem::Version
|
@@ -182,8 +147,8 @@ extensions: []
|
|
182
147
|
extra_rdoc_files: []
|
183
148
|
files:
|
184
149
|
- .gitignore
|
185
|
-
- .rbenv-version
|
186
150
|
- .rspec
|
151
|
+
- .ruby-version
|
187
152
|
- .travis.yml
|
188
153
|
- CHANGELOG.md
|
189
154
|
- Gemfile
|
@@ -196,6 +161,7 @@ files:
|
|
196
161
|
- lib/coveralls/api.rb
|
197
162
|
- lib/coveralls/command.rb
|
198
163
|
- lib/coveralls/configuration.rb
|
164
|
+
- lib/coveralls/output.rb
|
199
165
|
- lib/coveralls/rake/task.rb
|
200
166
|
- lib/coveralls/simplecov.rb
|
201
167
|
- lib/coveralls/version.rb
|
@@ -209,31 +175,31 @@ files:
|
|
209
175
|
- spec/coveralls/fixtures/app/models/user.rb
|
210
176
|
- spec/coveralls/fixtures/app/vendor/vendored_gem.rb
|
211
177
|
- spec/coveralls/fixtures/sample.rb
|
178
|
+
- spec/coveralls/output_spec.rb
|
212
179
|
- spec/coveralls/simplecov_spec.rb
|
213
180
|
- spec/spec_helper.rb
|
214
181
|
homepage: https://coveralls.io
|
215
182
|
licenses: []
|
183
|
+
metadata: {}
|
216
184
|
post_install_message:
|
217
185
|
rdoc_options: []
|
218
186
|
require_paths:
|
219
187
|
- lib
|
220
188
|
required_ruby_version: !ruby/object:Gem::Requirement
|
221
|
-
none: false
|
222
189
|
requirements:
|
223
|
-
- -
|
190
|
+
- - '>='
|
224
191
|
- !ruby/object:Gem::Version
|
225
192
|
version: '0'
|
226
193
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
227
|
-
none: false
|
228
194
|
requirements:
|
229
|
-
- -
|
195
|
+
- - '>='
|
230
196
|
- !ruby/object:Gem::Version
|
231
197
|
version: '0'
|
232
198
|
requirements: []
|
233
199
|
rubyforge_project:
|
234
|
-
rubygems_version:
|
200
|
+
rubygems_version: 2.0.3
|
235
201
|
signing_key:
|
236
|
-
specification_version:
|
202
|
+
specification_version: 4
|
237
203
|
summary: A Ruby implementation of the Coveralls API.
|
238
204
|
test_files:
|
239
205
|
- spec/coveralls/configuration_spec.rb
|
@@ -246,6 +212,6 @@ test_files:
|
|
246
212
|
- spec/coveralls/fixtures/app/models/user.rb
|
247
213
|
- spec/coveralls/fixtures/app/vendor/vendored_gem.rb
|
248
214
|
- spec/coveralls/fixtures/sample.rb
|
215
|
+
- spec/coveralls/output_spec.rb
|
249
216
|
- spec/coveralls/simplecov_spec.rb
|
250
217
|
- spec/spec_helper.rb
|
251
|
-
has_rdoc:
|
data/.rbenv-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
1.9.3-p194
|