data_structures_101 0.2.8 → 0.2.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +5 -8
- data/README.md +1 -1
- data/lib/data_structures_101/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 041a1ce7519dc86919f51a17ccdb41f17da27d1c
|
4
|
+
data.tar.gz: 8af2cd941e004e1e9109be999cd4642b5952e49a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2cb4dafe9df3a28ccbeac161226a2f17b8dc5b9cbad190c55006699bbd0b39b7a949c82f2cf85e12b0fcbdd2e221bbcc6f2b89144457a8d4fbb1f9946460361
|
7
|
+
data.tar.gz: dbed3c821a25eb210669ede89a4bd9783abc3212fd5f0b978b17fc8a19edb0f5ea48469c5ae37b7e6458281d720da49f2b8c226f74b9fe60a842144fd21d7231
|
data/.travis.yml
CHANGED
@@ -6,16 +6,17 @@ env:
|
|
6
6
|
global:
|
7
7
|
- CI=true
|
8
8
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
|
9
|
+
- CODE_CLIMATE_REPO_TOKEN=b8dab6b569a23ad67ac1f98e15f6b60da1e642be9bbc6e8de5c4d99492654b4d
|
9
10
|
before_script:
|
10
11
|
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
11
12
|
- chmod +x ./cc-test-reporter
|
12
|
-
-
|
13
|
+
- ./cc-test-reporter before-build
|
13
14
|
script:
|
14
15
|
- bundle exec rspec
|
15
16
|
after_script:
|
16
|
-
-
|
17
|
+
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
17
18
|
before_deploy:
|
18
|
-
-
|
19
|
+
- cat ./README.md >> ./docs/index.md
|
19
20
|
deploy:
|
20
21
|
- provider: pages
|
21
22
|
skip_cleanup: true
|
@@ -33,8 +34,4 @@ deploy:
|
|
33
34
|
on:
|
34
35
|
tags: true
|
35
36
|
repo: renehernandez/data_structures_101
|
36
|
-
branch: master
|
37
|
-
addons:
|
38
|
-
code_climate:
|
39
|
-
repo_token:
|
40
|
-
secure: RniybQE1wb0iDFzqH31Y3oUZ11xwrvtpnKwahLPB44pdR9ocpEmHG1I7IBO5pkJscHbKAL7lUJwoshgSV9cRx15CYNglzB
|
37
|
+
branch: master
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# DataStructures101 [![Build Status](https://travis-ci.org/renehernandez/data_structures_101.svg)](https://travis-ci.org/renehernandez/data_structures_101) [![Gem Version](https://badge.fury.io/rb/data_structures_101.svg)](https://badge.fury.io/rb/data_structures_101) [![Code Climate](https://codeclimate.com/github/
|
1
|
+
# DataStructures101 [![Build Status](https://travis-ci.org/renehernandez/data_structures_101.svg)](https://travis-ci.org/renehernandez/data_structures_101) [![Gem Version](https://badge.fury.io/rb/data_structures_101.svg)](https://badge.fury.io/rb/data_structures_101) [![Code Climate](https://codeclimate.com/github/renehernandez/data_structures_101/badges/gpa.svg)](https://codeclimate.com/github/renehernandez/data_structures_101) [![Test Coverage](https://codeclimate.com/github/renehernandez/data_structures_101/badges/coverage.svg)](https://codeclimate.com/github/renehernandez/data_structures_101/coverage)
|
2
2
|
|
3
3
|
DataStructures101 is a simple gem that groups several implementations of common data structures usually taught in Computer Science courses. The overall goal of the gem is to provide easy to use functionality (trying to match the behavior of existing structures in Ruby) while providing the user with a framework to test and compare their implementations against.
|
4
4
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: data_structures_101
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- renehernandez
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-09-
|
11
|
+
date: 2017-09-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|