Alex Chaffee
Alex Chaffee
ironically, in 3.0 `fail-fast` was implemented in the way @yeikel wants and only skips out of the current suite, but that's not what everyone expects ... see https://github.com/jasmine/jasmine/issues/1563
On Thu, Apr 9, 2015 at 6:34 PM, Ana Castro [email protected] wrote: > I'd go for railsbridge/docs-es [image: :smile:] Excellent. :+1:
Although the current docs/ repo has space for an es/ subdir. I started moving stuff over there but got distracted. Once the docs page code works with the current "stepfile"...
Losing git history is fine with me. If they're in a common repo, we can maybe more easily reference original-language sources, to better track needed re-translations when the original paragraph...
It's doable. Another option, also easy, is to make subdir URLs redirect to subdomain URLs, which feels cleaner to me. I really like being able to say "go to frontend...
I suggest if we're talking about making changes to the TOC that we open a new issue. For now I'd like to pull this issue back to its title "retire...
Alright, I'll take a stab at it. (Unit testing against different versions of rubygems will be a nightmare...) Maybe a new "gem open" plugin should be part of qw? Or...
Proof of concept is easy: in `common_options.rb`: ``` def get_spec(name) # dep = Gem::Dependency.new(name, options[:version]) # specs = Gem.source_index.search(dep) specs = Gem::Specification.find_all { |s| s.name.include? name } ``` Actually building...
Looks like the `find_all` method goes back at least as far as 1.8.0 (May 2011) so that shouldn't ruffle too many feathers. But is it even possible to check the...