coveralls 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.coveralls.yml +1 -0
- data/README.md +2 -35
- data/lib/coveralls/configuration.rb +5 -0
- data/lib/coveralls/version.rb +1 -1
- metadata +5 -4
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
repo_secret_token: 1NlQMLuOhf9NAFElxHAxVKxIWzv3oAYW5
|
data/README.md
CHANGED
@@ -1,36 +1,3 @@
|
|
1
|
-
# Coveralls for Ruby
|
2
|
-
Add the following to your Gemfile
|
1
|
+
# [Coveralls](http://coveralls.io) for Ruby [![Test Coverage](https://coveralls.io/repos/lemurheavy/coveralls-ruby/badge.png?branch=master)](https://coveralls.io/repos/lemurheavy/coveralls-ruby) [![Build Status](https://secure.travis-ci.org/lemurheavy/coveralls-ruby.png?branch=master)](https://travis-ci.org/lemurheavy/coveralls-ruby)
|
3
2
|
|
4
|
-
|
5
|
-
gem 'coveralls', require: false, github: 'lemurheavy/coveralls-ruby'
|
6
|
-
end
|
7
|
-
|
8
|
-
<!---
|
9
|
-
TODO: Write a gem description
|
10
|
-
|
11
|
-
## Installation
|
12
|
-
|
13
|
-
Add this line to your application's Gemfile:
|
14
|
-
|
15
|
-
gem 'coveralls-ruby'
|
16
|
-
|
17
|
-
And then execute:
|
18
|
-
|
19
|
-
$ bundle
|
20
|
-
|
21
|
-
Or install it yourself as:
|
22
|
-
|
23
|
-
$ gem install coveralls-ruby
|
24
|
-
|
25
|
-
## Usage
|
26
|
-
|
27
|
-
TODO: Write usage instructions here
|
28
|
-
|
29
|
-
## Contributing
|
30
|
-
|
31
|
-
1. Fork it
|
32
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
33
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
34
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
35
|
-
5. Create new Pull Request
|
36
|
-
-->
|
3
|
+
### [Read the docs →](https://coveralls.io/docs/ruby)
|
@@ -18,6 +18,11 @@ module Coveralls
|
|
18
18
|
config[:service_job_id] = ENV['TRAVIS_JOB_ID']
|
19
19
|
config[:service_name] = (yaml_config ? yaml_config['service_name'] : nil) || 'travis-ci'
|
20
20
|
end
|
21
|
+
if ENV["COVERALLS_RUN_LOCALLY"]
|
22
|
+
config[:service_job_id] = nil
|
23
|
+
config[:service_name] = 'coveralls-ruby'
|
24
|
+
config[:service_event_type] = 'manual'
|
25
|
+
end
|
21
26
|
config
|
22
27
|
end
|
23
28
|
|
data/lib/coveralls/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: coveralls
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-11-
|
12
|
+
date: 2012-11-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rest-client
|
@@ -131,6 +131,7 @@ executables:
|
|
131
131
|
extensions: []
|
132
132
|
extra_rdoc_files: []
|
133
133
|
files:
|
134
|
+
- .coveralls.yml
|
134
135
|
- .gitignore
|
135
136
|
- .rspec
|
136
137
|
- .travis.yml
|
@@ -163,7 +164,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
163
164
|
version: '0'
|
164
165
|
segments:
|
165
166
|
- 0
|
166
|
-
hash: -
|
167
|
+
hash: -1044931547748599466
|
167
168
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
168
169
|
none: false
|
169
170
|
requirements:
|
@@ -172,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
172
173
|
version: '0'
|
173
174
|
segments:
|
174
175
|
- 0
|
175
|
-
hash: -
|
176
|
+
hash: -1044931547748599466
|
176
177
|
requirements: []
|
177
178
|
rubyforge_project:
|
178
179
|
rubygems_version: 1.8.24
|