Skip to content

V2 Refactoring #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
require:
- rubocop-performance
- rubocop-rspec

AllCops:
NewCops: enable

Gemspec/RequiredRubyVersion:
Enabled: false

Layout/LineLength:
Max: 240

RSpec/ExampleLength:
Max: 15

RSpec/NamedSubject:
Enabled: false

RSpec/InstanceVariable:
Enabled: false

RSpec/NestedGroups:
Enabled: false

RSpec/MultipleExpectations:
Enabled: false

Metrics/BlockLength:
Enabled: false

Style/Documentation:
Enabled: false
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ language: ruby

cache: bundler
rvm:
- 2.2.6
- 2.3.3
- 2.4.2
- 2.5.0
- 2.6.6
- 2.7.3

matrix:
fast_finish: true
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [2.0.0] - 2021-04-29
### Added
- Added rubocop gems
### Changed
- Removed any specs that did not make sense
- Removed any dribbble endpoints that are not supported
### Fixed
- All of the specs


## [1.2.0] - 2017-03-01
#### Changed
Expand Down
10 changes: 10 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
# frozen_string_literal: true

source 'http://rubygems.org'

group :development do
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rake'
gem 'rubocop-rspec'
end

gemspec
6 changes: 4 additions & 2 deletions Guardfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# frozen_string_literal: true

guard :rspec, cmd: 'bundle exec rspec' do
watch(/^spec\/.+_spec\.rb$/)
watch(/^lib\/(.+)\.rb$/) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { :rspec }
end
Loading