The Wayback Machine - https://web.archive.org/web/20200609204054/https://github.com/topics/ruby?l=javascript
Skip to content
#

Ruby

ruby logo

Ruby was developed by Yukihiro "Matz" Matsumoto in 1995 with the intent of having an easily readable programming language. It is used by the Rails framework to create dynamic web-applications. Ruby's syntax is similar to that of Perl and Python.

Here are 768 public repositories matching this topic...

bvirlet
bvirlet commented May 6, 2019

I'm trying to generate the documentation for an ObjC framework.

Unfortunately, I cannot make Jazzy work.

The framework is part of a workspace, so I'm trying to use the xcodebuild-arguments option as follow:

jazzy \
  --objc \
  --clean \
  --xcodebuild-arguments -scheme,MyScheme,-workspace,MyWorkspace \
  --output docs/

But I'm getting the following error:

Unreco
eliotsykes
eliotsykes commented Oct 3, 2019

I'm sorry to post an issue that is missing crucial evidence, but some debugging of a recent config loading bug makes me suspect that the react-rails railtie.rb may be modifying the load order of initializers, and preventing the values in Rails.application.config being as expected.

Whether this happens or not appears to be partly dependent on where in the Gemfile the react-rails gem is l

gs2589
gs2589 commented Oct 3, 2018

I am unclear about the difference between :field_list and :fields options.

Could someone please give me some clues.

The example here also appears to be missing some comments for the second part that might clarify this a bit.

https://github.com/sunspot/sunspot#restrictions-and-field-list
I'd be happy to PR the explanation to the README once I get some clarity

@serggl @markmcdonal

nicolas-raoul
nicolas-raoul commented Jul 11, 2019

30 minutes ago I had trouble remembering the name of this website, so I search "open source projects looking for volunteers" in Google. To my surprise, the site did not appear even after reading 5 pages of results. I also searched for "open source projects to contribute to", but up-for-grabs.net was not listed either.

The website is linked to by a great number of guides/etc on the Inter

plugin-ruby
cbothner
cbothner commented Feb 9, 2019

Input

Person
  .select('people.id, people.name, comments.text')
  .joins(:comments)
  .where('comments.created_at > ?', 1.week.ago)

Current output

Person.select('people.id, people.name, comments.text').joins(:comments).where(
  'comments.created_at > ?', 1.week.ago
)

Expected output

Person
  .select('people.id, people.name, comment
JonnyWaffles
JonnyWaffles commented Sep 4, 2019

The Python Async Actions example is confusing in my humble opinion. I'm not entirely sure how this functionality works.

If you run the code in the example, no output is displayed and the application immediately ends. I believe this occurs because the main thread terminates and the remaining threads are marked a

catmando
catmando commented Mar 1, 2020

SomeModelWithLotsOfData.first will transfer the entire table to the client then select the first item.

This patch appears to fix, and can be added as is to your ApplicationRecord file at the start.

module ReactiveRecord
  class Collection

   # THIS IS THE KEY PART OF THE PATCH... DO THE SAME THING AS last FOR first
    def first(n = nil)
      if n
        apply_scope(:__hy

Created by Yukihiro Matsumoto

Released December 21, 1995

Repository
ruby/ruby
Website
www.ruby-lang.org/en
Wikipedia
Wikipedia

Related Topics

language python rails
You can’t perform that action at this time.