rorr 0.1.0 → 0.1.1

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: 0ca103a7ee93c621213da7adca4e7f21190dd9a0
4
- data.tar.gz: b30bc7e8c6ffbb6e3106e67963a5da106fd051cc
3
+ metadata.gz: 7e42ca4ace0bd14ca5fc7c30d34e5f76264615da
4
+ data.tar.gz: 682afcffc0497809200c573084d4a0cfc44ba31a
5
5
  SHA512:
6
- metadata.gz: 6eefd4ae78e44825a3ded2572532f82e4075703af212b2f23a6b108ebb6a4e6d4887f51cc9f71cce4e78e70a629fd6c9bcda24ceefc1b27cd29a47c26e01937a
7
- data.tar.gz: dbb6c97183b2041e578411765c260b5af6307605e9bb2fdcc0ec4ecd367164d806142cabd02b25a241b3cf62d541d86b9d06c46eccf8c79644e625a68f6239a7
6
+ metadata.gz: 23880c31c073f9389bc06b54652ba388c29b3343945f307807bb7f87bb9ac0db0ad41f3876b3e3f17cbf3b959d8b6211e1b65a419dce8f0cec905622ede50424
7
+ data.tar.gz: 77ed8379c00083b77a29a518eea9c135643e5d0903396707d261dedc21d618722777f440f3510056b5d198f58012b5b48c861f0ab1ed04a4ce6de7de15d20720
data/.codeclimate.yml ADDED
@@ -0,0 +1,16 @@
1
+ engines:
2
+ rubocop:
3
+ enabled: true
4
+ duplication:
5
+ enabled: true
6
+ config:
7
+ languages:
8
+ - ruby
9
+ ratings:
10
+ paths:
11
+ - lib/**
12
+ - "**.rb"
13
+ exclude_paths:
14
+ - spec/**/*
15
+ - topic/**/*
16
+ - "**/vendor/**/*"
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
1
  source 'https://rubygems.org'
2
-
2
+ gem 'coveralls', require: false
3
3
  # Specify your gem's dependencies in rorr.gemspec
4
4
  gemspec
data/README.md CHANGED
@@ -1,7 +1,10 @@
1
1
  # RorR
2
2
 
3
- [![Code Climate](https://codeclimate.com/github/mgleon08/rorr/badges/gpa.svg)](https://codeclimate.com/github/mgleon08/rorr)
3
+ [![Gem Version](https://badge.fury.io/rb/rorr.svg)](https://badge.fury.io/rb/rorr)
4
4
  [![Build Status](https://travis-ci.org/mgleon08/rorr.svg?branch=master)](https://travis-ci.org/mgleon08/rorr)
5
+ [![Coverage Status](https://coveralls.io/repos/github/mgleon08/rorr/badge.svg?branch=master)](https://coveralls.io/github/mgleon08/rorr?branch=master)
6
+ [![Code Climate](https://codeclimate.com/github/mgleon08/rorr/badges/gpa.svg)](https://codeclimate.com/github/mgleon08/rorr)
7
+ [![security](https://hakiri.io/github/mgleon08/rorr/master.svg)](https://hakiri.io/github/mgleon08/rorr/master)
5
8
 
6
9
  RorR(Ruby or Rails) is a test designed to evaluate the Ruby or Rails proficiency and artificial intelligence in a fun, interactive way.
7
10
 
@@ -138,7 +141,7 @@ Usage: rorr [options]
138
141
  ##Questions Reference
139
142
 
140
143
  If you have good questions welcome to pull requests or comments
141
- on GitHub at `https://github.com/mgleon08/rorr`
144
+ on GitHub at [`https://github.com/mgleon08/rorr/pulls`](https://github.com/mgleon08/rorr/pulls)
142
145
 
143
146
  * [Rails Hurts quiz](http://railshurts.com/quiz/)
144
147
  * [11 Essential Ruby Interview Questions*](https://www.toptal.com/ruby/interview-questions)
@@ -147,9 +150,9 @@ on GitHub at `https://github.com/mgleon08/rorr`
147
150
 
148
151
  ## Contributing
149
152
 
150
- Bug reports and pull requests are welcome on GitHub at `https://github.com/mgleon08/rorr`
153
+ Bug reports and pull requests are welcome on GitHub at [`https://github.com/mgleon08/rorr/pulls`](https://github.com/mgleon08/rorr/pulls)
151
154
 
152
155
  ## Copyright & License
153
156
 
154
157
  * Copyright (c) 2016 Leon Ji. See [LICENSE.txt](https://github.com/mgleon08/rorr/blob/master/LICENSE.txt) for further details.
155
- * The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
158
+ * The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/lib/rorr/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Rorr
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
data/lib/spec_helper.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  RSpec.configure do |config|
2
- config.backtrace_exclusion_patterns = [/lib/, /spec/, /rorr/]
2
+ config.backtrace_exclusion_patterns = [/lib/, /spec/]
3
3
  config.color = true
4
4
  end
data/spec/spec_helper.rb CHANGED
@@ -1,5 +1,7 @@
1
1
  $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
2
  require 'rorr'
3
+ require 'coveralls'
4
+ Coveralls.wear!
3
5
 
4
6
  RSpec.configure do |config|
5
7
  config.exclude_pattern = "#{File.expand_path('../check_answer/**/*', __FILE__)}"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rorr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leon Ji
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-29 00:00:00.000000000 Z
11
+ date: 2016-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -89,6 +89,7 @@ executables:
89
89
  extensions: []
90
90
  extra_rdoc_files: []
91
91
  files:
92
+ - ".codeclimate.yml"
92
93
  - ".gitignore"
93
94
  - ".rspec"
94
95
  - ".travis.yml"