Skip to content

Rspec proposal #52

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 36 commits into from
Nov 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
e7b7c64
Update dockerfile acording to new bundle format
darthjee Nov 6, 2019
3e2d95b
Add gitignore
darthjee Nov 6, 2019
7b23f81
Avoid Gnuplot.lock copy
darthjee Nov 6, 2019
7cd0b4c
Add rspec
darthjee Nov 6, 2019
5024cdd
add rspec
darthjee Nov 6, 2019
8e42b90
Add arrtest_spec
darthjee Nov 6, 2019
b6742ae
Add sample example for arr_spec
darthjee Nov 6, 2019
b97fb8c
Ignore swap files
darthjee Nov 6, 2019
1c72ea5
Add expectation description
darthjee Nov 6, 2019
2b577b1
Add simple plot spec proposal
darthjee Nov 6, 2019
f550805
Improove gplot spec
darthjee Nov 6, 2019
64fc5de
Use correct format
darthjee Nov 6, 2019
17290ec
Add simplecov
darthjee Nov 6, 2019
97e2b8c
Add coverage to ignore
darthjee Nov 6, 2019
7c6ebdf
Replace whitespaces
darthjee Nov 22, 2019
82c4eb8
Add histogram spec
darthjee Nov 22, 2019
9037db8
Fix histogram spec
darthjee Nov 22, 2019
093b6bd
Add sin wave spec
darthjee Nov 22, 2019
15e80d8
Rename test
darthjee Nov 22, 2019
53369f7
Add sinwave spec
darthjee Nov 22, 2019
67245c7
Add initialization spec
darthjee Nov 24, 2019
6cd22ae
Add quotting sets spec
darthjee Nov 24, 2019
9ee1f5b
Placeholder for style spec
darthjee Nov 24, 2019
4e023d6
Add Plot#[] spec
darthjee Nov 24, 2019
ff92d73
Add spec over Plot#unset
darthjee Nov 24, 2019
1134bb5
Checks changes in settings
darthjee Nov 25, 2019
2a802c3
Add method missing spec
darthjee Nov 25, 2019
b442433
Add spec over style class
darthjee Nov 26, 2019
cf8c502
Fix Plot#[]
darthjee Nov 26, 2019
8a0702c
Add rubocop
darthjee Nov 26, 2019
91fca06
Apply rubocop fixes
darthjee Nov 26, 2019
0ba3073
Add spec for Plot#style
darthjee Nov 27, 2019
93ba7af
Remove TODOs
darthjee Nov 27, 2019
1564edc
Add data set spec
darthjee Nov 27, 2019
6decfe0
Add spec for data set with properties
darthjee Nov 28, 2019
21fabe5
WIP add spec for plot args
darthjee Nov 28, 2019
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Gemfile.lock
**/*.swp
coverage/
2 changes: 2 additions & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--require spec_helper
--color
13 changes: 13 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
require: rubocop-rspec
inherit_from: .rubocop_todo.yml

AllCops:
TargetRubyVersion: 2.5

RSpec/DescribeClass:
Exclude:
- 'spec/**/*_spec.rb'

Metrics/BlockLength:
Exclude:
- 'spec/**/*_spec.rb'
Loading