Skip to content

Commit

Permalink
Merge 6087568 into fa38974
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbaudino committed Jan 17, 2018
2 parents fa38974 + 6087568 commit fbf6ec7
Show file tree
Hide file tree
Showing 57 changed files with 2,962 additions and 2,408 deletions.
18 changes: 18 additions & 0 deletions .codeclimate.yml
@@ -0,0 +1,18 @@
---
engines:
duplication:
enabled: true
config:
languages:
- ruby
fixme:
enabled: false
rubocop:
enabled: true
brakeman:
enabled: false
ratings:
paths:
- "**.rb"
exclude_paths:
- spec/
5 changes: 5 additions & 0 deletions .gitignore
Expand Up @@ -27,6 +27,11 @@ pkg

# Ignore Bundler config
/.bundle
/vendor/bundle/

# Ignore built gems
/*.gem

# YARD doc stuff
/.yardoc
/doc/
2 changes: 2 additions & 0 deletions .rspec
@@ -0,0 +1,2 @@
--color
--require spec_helper
20 changes: 20 additions & 0 deletions .rubocop.yml
@@ -0,0 +1,20 @@
AllCops:
TargetRubyVersion: 2.4

Style/StringLiterals:
EnforcedStyle: double_quotes
Enabled: true

Style/StringLiteralsInInterpolation:
EnforcedStyle: double_quotes
Enabled: true

Style/Documentation:
Enabled: false

Metrics/LineLength:
Max: 100

Metrics/BlockLength:
Exclude:
- spec/**/*.rb
14 changes: 12 additions & 2 deletions .travis.yml
@@ -1,11 +1,21 @@
language: ruby
cache: bundler
dist: trusty
rvm:
- ruby-2.0
- ruby-2.1
- ruby-2.2
- ruby-2.3.0
- rbx
- ruby-2.3
- ruby-2.4
- ruby-2.5
- rbx-3.84
- jruby
before_install:
- gem update --system
- gem update bundler
before_script:
- bundle exec rubocop -D
notifications:
email:
on_success: change
on_failure: change
1 change: 1 addition & 0 deletions .yardopts
@@ -0,0 +1 @@
lib/addic7ed/models/**/*.rb
49 changes: 49 additions & 0 deletions CODE_OF_CONDUCT.md
@@ -0,0 +1,49 @@
# Contributor Code of Conduct

As contributors and maintainers of this project, and in the interest of
fostering an open and welcoming community, we pledge to respect all people who
contribute through reporting issues, posting feature requests, updating
documentation, submitting pull requests or patches, and other activities.

We are committed to making participation in this project a harassment-free
experience for everyone, regardless of level of experience, gender, gender
identity and expression, sexual orientation, disability, personal appearance,
body size, race, ethnicity, age, religion, or nationality.

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery
* Personal attacks
* Trolling or insulting/derogatory comments
* Public or private harassment
* Publishing other's private information, such as physical or electronic
addresses, without explicit permission
* Other unethical or unprofessional conduct

Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.

By adopting this Code of Conduct, project maintainers commit themselves to
fairly and consistently applying these principles to every aspect of managing
this project. Project maintainers who do not follow or enforce the Code of
Conduct may be permanently removed from the project team.

This code of conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community.

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting a project maintainer at michael.baudino@alpine-lab.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. Maintainers are
obligated to maintain confidentiality with regard to the reporter of an
incident.

This Code of Conduct is adapted from the [Contributor Covenant][homepage],
version 1.3.0, available at
[http://contributor-covenant.org/version/1/3/0/][version]

[homepage]: http://contributor-covenant.org
[version]: http://contributor-covenant.org/version/1/3/0/
16 changes: 9 additions & 7 deletions Gemfile
@@ -1,15 +1,17 @@
source 'https://rubygems.org'
# frozen_string_literal: true

source "https://rubygems.org"
# The gem's dependencies will be specified in addic7ed.gemspec
gemspec

group :test do
gem 'coveralls', require: false
gem "coveralls", require: false
end

platforms :rbx do
gem 'json'
gem 'racc'
gem 'rubysl'
gem 'psych'
gem 'iconv'
gem "iconv", "~> 1.0"
gem "json", "~> 2.1"
gem "psych", "~> 2.2"
gem "racc", "~> 1.4"
gem "rubysl", "~> 2.2"
end

0 comments on commit fbf6ec7

Please sign in to comment.