<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chouette-core/Gemfile, branch check_policy_specs</title>
<subtitle>Chouette manage transport static data</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/'/>
<entry>
<title>Merge remote-tracking branch 'origin/master' into 3479-refactor-table_builder-helper</title>
<updated>2017-06-12T08:30:22+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2017-06-12T08:30:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=6dfdb22139eda7561fa1ae5a9c54b9fdadbfa4b3'/>
<id>6dfdb22139eda7561fa1ae5a9c54b9fdadbfa4b3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Gemfile: Add 'htmlbeautifier' in :test group</title>
<updated>2017-06-08T16:29:38+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2017-06-08T16:29:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=3b745cf43b877a4bb26532d16b602717779cf15c'/>
<id>3b745cf43b877a4bb26532d16b602717779cf15c</id>
<content type='text'>
Want a way to beautify HTML to get better diffs in the
`TableBuilderHelper` spec. Beautifying the HTML allows us to do line
comparisons of the HTML that results from the builder.

Refs #3479
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Want a way to beautify HTML to get better diffs in the
`TableBuilderHelper` spec. Beautifying the HTML allows us to do line
comparisons of the HTML that results from the builder.

Refs #3479
</pre>
</div>
</content>
</entry>
<entry>
<title>Refs: #3604; rewriting schema cloner in Ruby</title>
<updated>2017-06-06T13:50:54+00:00</updated>
<author>
<name>Robert</name>
</author>
<published>2017-06-06T13:50:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=15b7cf8213d730fa36740a74bc75baa5fc56dd62'/>
<id>15b7cf8213d730fa36740a74bc75baa5fc56dd62</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add 'dbshell-rails' gem</title>
<updated>2017-05-31T16:54:25+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2017-05-31T16:54:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=a39d78ed314bc2eb1b030cadbbf0b928e36e1927'/>
<id>a39d78ed314bc2eb1b030cadbbf0b928e36e1927</id>
<content type='text'>
This is a personal optimisation. If it doesn't make sense to add to the
project, we can remove it.

I want to be able to open the application's database console quickly at
times, and this gem lets me do that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a personal optimisation. If it doesn't make sense to add to the
project, we can remove it.

I want to be able to open the application's database console quickly at
times, and this gem lets me do that.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add 'spring-commands-rspec'</title>
<updated>2017-05-31T16:41:54+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2017-05-31T09:39:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=a5ea240ed1eec9b500c7aa723f1a71a2f9057383'/>
<id>a5ea240ed1eec9b500c7aa723f1a71a2f9057383</id>
<content type='text'>
This gem allows RSpec to be used with the Spring preloader, eliminating
the Rails startup time when running tests. Was getting really annoyed at
the 10-second startup times every time I wanted to run any tests.

Here's a sample comparison running a single test file:

    Before:

    rspec spec/models/chouette/vehicle_journey_at_stops_day_offset_spec.rb
    Run options:
      include {:wip=&gt;true}
      exclude {:js=&gt;true, :meta=&gt;true}

    All examples were filtered out; ignoring {:wip=&gt;true}
    ...

    Finished in 2.01 seconds (files took 9.41 seconds to load)
    3 examples, 0 failures

    ---

    After:

    spring rspec spec/models/chouette/vehicle_journey_at_stops_day_offset_spec.rb
    Running via Spring preloader in process 45340
    Run options:
      include {:wip=&gt;true}
      exclude {:js=&gt;true, :meta=&gt;true}

    All examples were filtered out; ignoring {:wip=&gt;true}
    ...

    Finished in 2 seconds (files took 0.76843 seconds to load)
    3 examples, 0 failures

When doing TDD this is a huge workflow improvement.

Since the `/bin/` directory is ignored by .gitignore, you'll have to
generate the binstub manually to get this working:

    $ bundle exec spring binstub rspec
    $ git checkout bin/spring  # since this file is in the repo but is
    $                          # also in .gitignore so shouldn't be
    $                          # committed.
    $ bundle exec spring rspec  # enjoy!

To use with rspec.vim, add this to your Vim config:

    let g:rspec_command = "!bundle exec spring rspec {spec}"
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This gem allows RSpec to be used with the Spring preloader, eliminating
the Rails startup time when running tests. Was getting really annoyed at
the 10-second startup times every time I wanted to run any tests.

Here's a sample comparison running a single test file:

    Before:

    rspec spec/models/chouette/vehicle_journey_at_stops_day_offset_spec.rb
    Run options:
      include {:wip=&gt;true}
      exclude {:js=&gt;true, :meta=&gt;true}

    All examples were filtered out; ignoring {:wip=&gt;true}
    ...

    Finished in 2.01 seconds (files took 9.41 seconds to load)
    3 examples, 0 failures

    ---

    After:

    spring rspec spec/models/chouette/vehicle_journey_at_stops_day_offset_spec.rb
    Running via Spring preloader in process 45340
    Run options:
      include {:wip=&gt;true}
      exclude {:js=&gt;true, :meta=&gt;true}

    All examples were filtered out; ignoring {:wip=&gt;true}
    ...

    Finished in 2 seconds (files took 0.76843 seconds to load)
    3 examples, 0 failures

When doing TDD this is a huge workflow improvement.

Since the `/bin/` directory is ignored by .gitignore, you'll have to
generate the binstub manually to get this working:

    $ bundle exec spring binstub rspec
    $ git checkout bin/spring  # since this file is in the repo but is
    $                          # also in .gitignore so shouldn't be
    $                          # committed.
    $ bundle exec spring rspec  # enjoy!

To use with rspec.vim, add this to your Vim config:

    let g:rspec_command = "!bundle exec spring rspec {spec}"
</pre>
</div>
</content>
</entry>
<entry>
<title>Refs #3627: Farewell turbolinks</title>
<updated>2017-05-31T14:45:58+00:00</updated>
<author>
<name>Thomas Haddad</name>
</author>
<published>2017-05-31T14:45:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=c48ba9fc153e2b03b5eb02bc9df4e307e64fbc0a'/>
<id>c48ba9fc153e2b03b5eb02bc9df4e307e64fbc0a</id>
<content type='text'>
Signed-off-by: Thomas Shawarma Haddad &lt;thomas.haddad@af83.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Thomas Shawarma Haddad &lt;thomas.haddad@af83.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Restore ci:check_security in ci task. Fixes last warnings in Gemfile</title>
<updated>2017-05-03T08:07:30+00:00</updated>
<author>
<name>Alban Peignier</name>
</author>
<published>2017-05-03T08:07:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=bc55e06d948fc69d8639ae5dcfaa8adcc7a97926'/>
<id>bc55e06d948fc69d8639ae5dcfaa8adcc7a97926</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update rubyzip to 1.2.1. Fixes #3274</title>
<updated>2017-05-03T08:02:04+00:00</updated>
<author>
<name>Alban Peignier</name>
</author>
<published>2017-05-03T08:02:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=24fc29e3712fbfbfaaf5dba5924fa63fccdc4878'/>
<id>24fc29e3712fbfbfaaf5dba5924fa63fccdc4878</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove guard/guard-rspec to avoid ruby_dep dependency and ruby version &gt;= 2.2.5. Refs #3017</title>
<updated>2017-04-11T19:37:16+00:00</updated>
<author>
<name>Alban Peignier</name>
</author>
<published>2017-04-11T19:37:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=b06f35fd18c7eb306aee37bb77199d04452322d6'/>
<id>b06f35fd18c7eb306aee37bb77199d04452322d6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Skip ruby requirement in Gemfile. Refs #2070</title>
<updated>2017-04-11T19:13:12+00:00</updated>
<author>
<name>Alban Peignier</name>
</author>
<published>2017-04-11T19:13:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=d4f4a848f63d708e4a203b8846f835b561069726'/>
<id>d4f4a848f63d708e4a203b8846f835b561069726</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
