File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
160
160
## [ 0.4.0] - 2020-11-21
161
161
### Added
162
162
- ` arduino_ci_remote.rb ` CLI switch ` --skip-examples-compilation `
163
- - Add support for ` diditalPinToPort ()` , ` digitalPinToBitMask() ` , ` portOutputRegister() ` , and ` portInputRegister() `
163
+ - Add support for ` digitalPinToPort ()` , ` digitalPinToBitMask() ` , ` portOutputRegister() ` , and ` portInputRegister() `
164
164
- ` CppLibrary.header_files ` to find header files
165
165
- ` LibraryProperties ` to read metadata from Arduino libraries
166
166
- ` CppLibrary.library_properties_path ` , ` CppLibrary.library_properties? ` , ` CppLibrary.library_properties ` to expose library properties of a Cpp library
Original file line number Diff line number Diff line change @@ -13,14 +13,21 @@ Pull requests will trigger a CI job. The following two commands will be expecte
13
13
14
14
* ` bundle exec rubocop -D . ` - code style tests
15
15
* ` bundle exec rspec ` - functional tests
16
+ * ` bundle exec rspec spec/some_file_spec.rb ` - functional tests for just some file
16
17
17
18
If you do not already have a working ruby development environment set up, run the following commands:
18
19
19
20
``` shell
21
+ # One of the following
20
22
apt-get install ruby ruby-dev # For Debian/Ubuntu
21
- dnf install ruby ruby-devel # For Fedora
22
- yum install ruby ruby-devel # For Centos/RHEL
23
+ dnf install ruby ruby-devel # For Fedora/newer Centos/RHEL
24
+ yum install ruby ruby-devel # For older Centos/RHEL
25
+
26
+ # All below
23
27
gem install bundler
28
+ gem install rspec
29
+ # Now you are ready to install dependencies with bundle (as described in the
30
+ # README file) and to run unit tests.
24
31
```
25
32
26
33
Be prepared to write tests to accompany any code you would like to see merged.
You can’t perform that action at this time.
0 commit comments