<feed xmlns='http://www.w3.org/2005/Atom'>
<title>game-of-life.git/CLI/ruby/game_of_life.gemspec, branch main</title>
<subtitle>Game of Life implementation in different languages
</subtitle>
<link rel='alternate' type='text/html' href='http://git.a14m.dev/game-of-life.git/'/>
<entry>
<title>Use docker for ruby dev and fix yard with ruby 3</title>
<updated>2023-07-02T17:19:17+00:00</updated>
<author>
<name>Ahmed AbdelHalim</name>
<email>pm@a14m.me</email>
</author>
<published>2023-07-02T17:19:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.a14m.dev/game-of-life.git/commit/?id=36c22fba73375f18ad46334a27d6b418309448e8'/>
<id>36c22fba73375f18ad46334a27d6b418309448e8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update and fix rubocop offenses</title>
<updated>2023-06-30T14:00:40+00:00</updated>
<author>
<name>Ahmed AbdelHalim</name>
<email>pm@a14m.me</email>
</author>
<published>2023-06-30T14:00:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.a14m.dev/game-of-life.git/commit/?id=f64697a5aede493d52724860856bcbf9f5803169'/>
<id>f64697a5aede493d52724860856bcbf9f5803169</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove codecov as it's not working on srht</title>
<updated>2021-02-17T15:11:01+00:00</updated>
<author>
<name>a14m</name>
<email>a14m@pm.me</email>
</author>
<published>2021-02-17T15:01:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.a14m.dev/game-of-life.git/commit/?id=ac45bcc396d50fc6c4d3485a77b17ce58c1f76df'/>
<id>ac45bcc396d50fc6c4d3485a77b17ce58c1f76df</id>
<content type='text'>
SimpleCov is internally using JSON but doesn't include it as a
dependency that's why it needs to be added to the dev dependencies

Ref: https://github.com/simplecov-ruby/simplecov/issues/917
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SimpleCov is internally using JSON but doesn't include it as a
dependency that's why it needs to be added to the dev dependencies

Ref: https://github.com/simplecov-ruby/simplecov/issues/917
</pre>
</div>
</content>
</entry>
<entry>
<title>Update the ruby gem links</title>
<updated>2020-12-16T15:56:27+00:00</updated>
<author>
<name>a14m</name>
<email>a14m@pm.me</email>
</author>
<published>2020-12-16T15:56:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.a14m.dev/game-of-life.git/commit/?id=ff3b9d9a6385f993d77ef248c5e6ab12a4e5ef20'/>
<id>ff3b9d9a6385f993d77ef248c5e6ab12a4e5ef20</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add rubocop-rspec</title>
<updated>2020-12-14T14:13:18+00:00</updated>
<author>
<name>a14m</name>
<email>a14m@pm.me</email>
</author>
<published>2020-12-14T14:13:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.a14m.dev/game-of-life.git/commit/?id=3a84b11208e8378424790be4302a82f61a556186'/>
<id>3a84b11208e8378424790be4302a82f61a556186</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add codecov integration</title>
<updated>2020-12-14T13:17:39+00:00</updated>
<author>
<name>a14m</name>
<email>a14m@pm.me</email>
</author>
<published>2020-12-14T13:17:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.a14m.dev/game-of-life.git/commit/?id=67de73f67ea4f7afeb68829fb510065ed8d41159'/>
<id>67de73f67ea4f7afeb68829fb510065ed8d41159</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix the required ruby version (2.4 isn't supported)</title>
<updated>2020-12-12T19:46:17+00:00</updated>
<author>
<name>a14m</name>
<email>a14m@pm.me</email>
</author>
<published>2020-12-12T19:46:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.a14m.dev/game-of-life.git/commit/?id=0c465900092042947ae3110ba0bf7da48a515545'/>
<id>0c465900092042947ae3110ba0bf7da48a515545</id>
<content type='text'>
Ruby 2.4 URI.open method is private and cannot be used
I can support 2.4 by using `URI.send(:open, uri)` instead of `URI.open`
but I haven't investigated that, and I don't think it's critical to
support 2.4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ruby 2.4 URI.open method is private and cannot be used
I can support 2.4 by using `URI.send(:open, uri)` instead of `URI.open`
but I haven't investigated that, and I don't think it's critical to
support 2.4
</pre>
</div>
</content>
</entry>
<entry>
<title>Add documentation and changelog URIs to the gem page</title>
<updated>2020-12-12T19:31:19+00:00</updated>
<author>
<name>a14m</name>
<email>a14m@pm.me</email>
</author>
<published>2020-12-12T19:05:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.a14m.dev/game-of-life.git/commit/?id=a85dc48d9f2b51d7926d5426adc1ebec072cf0f6'/>
<id>a85dc48d9f2b51d7926d5426adc1ebec072cf0f6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Include yardopts for autogenerated docs with private</title>
<updated>2020-12-12T18:54:57+00:00</updated>
<author>
<name>a14m</name>
<email>a14m@pm.me</email>
</author>
<published>2020-12-12T18:54:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.a14m.dev/game-of-life.git/commit/?id=b64a9bf10b204e8f8d3c650cad7da721bb5133dd'/>
<id>b64a9bf10b204e8f8d3c650cad7da721bb5133dd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update the name to a unique name on rubygems</title>
<updated>2020-12-04T15:33:45+00:00</updated>
<author>
<name>a14m</name>
<email>a14m@pm.me</email>
</author>
<published>2020-12-04T15:33:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.a14m.dev/game-of-life.git/commit/?id=e402229c03a65259b7d1cbd8d7b9730af2180269'/>
<id>e402229c03a65259b7d1cbd8d7b9730af2180269</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
