lotto 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +1 -1
- data/Gemfile.lock +1 -1
- data/README.md +5 -6
- data/lib/lotto/version.rb +1 -1
- metadata +2 -3
- data/.coveralls.yml +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ecc64ed19340ddcccf7815fc2aaaf074c63b40546bd6eae9187ec4732a3df164
|
4
|
+
data.tar.gz: 7fa4239c14f203900feb652629ebc496e17c334dc8c191445fe8273b09664b68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 524879b450da306baa8830f51c715ddd7182b80c3590208a2576365a116138f24a03245e84c400fef6ba0aa087c89ee23e9db705056ec751d6959d395229b370
|
7
|
+
data.tar.gz: f51693751b6c3197e523a030352a9a1ebf231ed7e0b96316fb712cd4f147ccf99ca2973cd83a9f6612d02efc2ea99948d57fa1e3441acb81a185bf894b9efdb9
|
data/.circleci/config.yml
CHANGED
@@ -42,7 +42,7 @@ jobs:
|
|
42
42
|
command: |
|
43
43
|
mkdir /tmp/test-results
|
44
44
|
TEST_FILES="$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)"
|
45
|
-
|
45
|
+
echo "repo_token: $COVERALLS_TOKEN" > .coveralls.yml
|
46
46
|
bundle exec rspec --format progress \
|
47
47
|
$TEST_FILES
|
48
48
|
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
# Lotto
|
2
|
+
[![Coverage Status](https://coveralls.io/repos/github/onurkucukkece/lotto/badge.svg?branch=feature%2Fimproved_specs)](https://coveralls.io/github/onurkucukkece/lotto?branch=feature%2Fimproved_specs) [![CircleCI](https://circleci.com/gh/onurkucukkece/lotto/tree/master.svg?style=svg)](https://circleci.com/gh/onurkucukkece/lotto/tree/master)
|
2
3
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
4
|
+
A customizable lottery gem
|
6
5
|
|
7
6
|
## Installation
|
8
7
|
|
9
8
|
Add this line to your application's Gemfile:
|
10
9
|
|
11
10
|
```ruby
|
12
|
-
gem 'lotto'
|
11
|
+
gem 'lotto', '~> 0.3.0'
|
13
12
|
```
|
14
13
|
|
15
14
|
And then execute:
|
@@ -39,7 +38,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
39
38
|
|
40
39
|
## Contributing
|
41
40
|
|
42
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
41
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/onurkucukkece/lotto. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
43
42
|
|
44
43
|
## License
|
45
44
|
|
@@ -47,4 +46,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
47
46
|
|
48
47
|
## Code of Conduct
|
49
48
|
|
50
|
-
Everyone interacting in the Lotto project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
49
|
+
Everyone interacting in the Lotto project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/onurkucukkece/lotto/blob/master/CODE_OF_CONDUCT.md).
|
data/lib/lotto/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lotto
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Onur Kucukkece
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-04-
|
11
|
+
date: 2018-04-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -74,7 +74,6 @@ extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
75
75
|
files:
|
76
76
|
- ".circleci/config.yml"
|
77
|
-
- ".coveralls.yml"
|
78
77
|
- ".gitignore"
|
79
78
|
- ".rspec"
|
80
79
|
- ".travis.yml"
|
data/.coveralls.yml
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
repo_token: $COVERALLS_TOKEN
|