<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rebar3.git/dialyzer_reference, branch master</title>
<subtitle>Clone of https://github.com/erlang/rebar3</subtitle>
<link rel='alternate' type='text/html' href='https://git.sunet.se/rebar3.git/'/>
<entry>
<title>slowly widdling away at dialyzer errors</title>
<updated>2014-09-21T03:36:54+00:00</updated>
<author>
<name>Tristan Sloughter</name>
<email>t@crashfast.com</email>
</author>
<published>2014-09-21T03:36:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/rebar3.git/commit/?id=e1b1152b219cf65c7f8cd3b77db5cf2156fcbab7'/>
<id>e1b1152b219cf65c7f8cd3b77db5cf2156fcbab7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update dialyzer_reference</title>
<updated>2014-07-25T18:41:23+00:00</updated>
<author>
<name>Tuncer Ayaz</name>
<email>tuncer.ayaz@gmail.com</email>
</author>
<published>2014-07-25T18:41:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/rebar3.git/commit/?id=63a348743d687db7ed48edf3569a4dbf8606e296'/>
<id>63a348743d687db7ed48edf3569a4dbf8606e296</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add code coverage analysis functionality to `qc'</title>
<updated>2014-06-14T17:23:45+00:00</updated>
<author>
<name>Andras Horvath</name>
<email>andras.horvath@erlang-solutions.com</email>
</author>
<published>2013-04-24T19:43:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/rebar3.git/commit/?id=4a6dc223b7a53acf99ffebeab95daef6f57f4be1'/>
<id>4a6dc223b7a53acf99ffebeab95daef6f57f4be1</id>
<content type='text'>
- Use `cover' with QuickCheck testing
- Reuse the `cover_*' rebar.config options
- Refactor cover-related code to separate module (`qc_cover_utils')
  for use with both `eunit' and `qc'
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Use `cover' with QuickCheck testing
- Reuse the `cover_*' rebar.config options
- Refactor cover-related code to separate module (`qc_cover_utils')
  for use with both `eunit' and `qc'
</pre>
</div>
</content>
</entry>
<entry>
<title>Add qualified name tests specification (see #118)</title>
<updated>2014-05-29T18:38:14+00:00</updated>
<author>
<name>Sergey Savenko</name>
<email>deadok22@gmail.com</email>
</author>
<published>2013-08-15T08:26:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/rebar3.git/commit/?id=93689703c1d29d5859b04db4f27d3b19d75873e5'/>
<id>93689703c1d29d5859b04db4f27d3b19d75873e5</id>
<content type='text'>
Augment 'tests' option of 'rebar eunit' command with ability to specify
tests to run using module-qualified names. This change also forced me
to change the way modules for coverage and for testing itself are
selected - module-qualified tests specifications are now taken into
consideration. Extend tests to cover new functionality. Update
dialyzer_reference accordingly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Augment 'tests' option of 'rebar eunit' command with ability to specify
tests to run using module-qualified names. This change also forced me
to change the way modules for coverage and for testing itself are
selected - module-qualified tests specifications are now taken into
consideration. Extend tests to cover new functionality. Update
dialyzer_reference accordingly.
</pre>
</div>
</content>
</entry>
<entry>
<title>erlc: clean-up, enhance, and regression fix fd17693</title>
<updated>2014-03-05T14:44:38+00:00</updated>
<author>
<name>Tuncer Ayaz</name>
<email>tuncer.ayaz@gmail.com</email>
</author>
<published>2013-09-01T17:34:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/rebar3.git/commit/?id=b6908421b7a83a2c2972c3263f32d438c3dc3cec'/>
<id>b6908421b7a83a2c2972c3263f32d438c3dc3cec</id>
<content type='text'>
* update files
* fix Dialyzer warning
* unconditionally enable info fil
* clean-up inconsistencies
* use term_to_binary compression
* use try...catch instead of case...catch...of
* do not write build info file if the graph is unmodified
* store info file as &lt;base_dir&gt;/.rebarinfo
* properly support list of compile directives
* fix regressions:
 - Fix a bug in handling of files to compile first.
 - If a file that is depended upon itself depends on other files, make sure
   those are compiled first. While at it, rename variables for correctness.
   Reported-by: David Robakowski
 - Make sure that FirstFiles has no dupes and preserves the proper order.
 - headers referenced via -include_lib() were not properly resolved to absolute
   filenames
 - .erl files found in sub dirs of src_dirs were not properly resolved to
   absolute filenames
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* update files
* fix Dialyzer warning
* unconditionally enable info fil
* clean-up inconsistencies
* use term_to_binary compression
* use try...catch instead of case...catch...of
* do not write build info file if the graph is unmodified
* store info file as &lt;base_dir&gt;/.rebarinfo
* properly support list of compile directives
* fix regressions:
 - Fix a bug in handling of files to compile first.
 - If a file that is depended upon itself depends on other files, make sure
   those are compiled first. While at it, rename variables for correctness.
   Reported-by: David Robakowski
 - Make sure that FirstFiles has no dupes and preserves the proper order.
 - headers referenced via -include_lib() were not properly resolved to absolute
   filenames
 - .erl files found in sub dirs of src_dirs were not properly resolved to
   absolute filenames
</pre>
</div>
</content>
</entry>
<entry>
<title>eunit: fix dialyzer warnings introduced in 03da5e0b</title>
<updated>2014-02-20T18:10:47+00:00</updated>
<author>
<name>Tuncer Ayaz</name>
<email>tuncer.ayaz@gmail.com</email>
</author>
<published>2014-02-20T18:10:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/rebar3.git/commit/?id=589afc0173e83ab35f470f3b085355378ae0cf25'/>
<id>589afc0173e83ab35f470f3b085355378ae0cf25</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove experimental flags</title>
<updated>2014-01-14T11:44:53+00:00</updated>
<author>
<name>Tuncer Ayaz</name>
<email>tuncer.ayaz@gmail.com</email>
</author>
<published>2014-01-14T11:38:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/rebar3.git/commit/?id=5fa6671511aac8b662c6a8560924de4fe16f9b42'/>
<id>5fa6671511aac8b662c6a8560924de4fe16f9b42</id>
<content type='text'>
Remove experimental flag from:
* qc compile_only=true
* eunit compile_only=true
* src/foo.app.src.script
* eunit tests=
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove experimental flag from:
* qc compile_only=true
* eunit compile_only=true
* src/foo.app.src.script
* eunit tests=
</pre>
</div>
</content>
</entry>
<entry>
<title>Update dialyzer_reference to match changes made in 490d00f0</title>
<updated>2013-06-27T10:44:20+00:00</updated>
<author>
<name>Tuncer Ayaz</name>
<email>tuncer.ayaz@gmail.com</email>
</author>
<published>2013-06-27T10:43:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/rebar3.git/commit/?id=3952806f5fce82815103308c39bbff36f730eecf'/>
<id>3952806f5fce82815103308c39bbff36f730eecf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement 'rebar help CMD1 CMD2' and extend common 'rebar help' msg</title>
<updated>2012-12-31T19:45:11+00:00</updated>
<author>
<name>Tuncer Ayaz</name>
<email>tuncer.ayaz@gmail.com</email>
</author>
<published>2012-11-10T20:59:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/rebar3.git/commit/?id=4b8c81fb53e2caaa74a33d5b62664a67427a7bbf'/>
<id>4b8c81fb53e2caaa74a33d5b62664a67427a7bbf</id>
<content type='text'>
* allow plugins to print help message for implemented commands
* append core rebar.config options to common 'rebar help' message
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* allow plugins to print help message for implemented commands
* append core rebar.config options to common 'rebar help' message
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert arch string changes</title>
<updated>2012-10-29T15:01:28+00:00</updated>
<author>
<name>Tuncer Ayaz</name>
<email>tuncer.ayaz@gmail.com</email>
</author>
<published>2012-10-29T14:33:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sunet.se/rebar3.git/commit/?id=588244465f552eb4481ab7d9ff3a391cec58c8db'/>
<id>588244465f552eb4481ab7d9ff3a391cec58c8db</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
