Ruby
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 20,028 public repositories matching this topic...
Motivation
Hi, I've struggled (like a lot of persons it seems) with setting up github pages with shpinx. In particular, the way include works on folders/subfolders.
To solve the problem, I went to the documentation and looked how it was done in the default configuration [here](https://jekyllrb.com/do
-
Updated
Feb 3, 2020
-
Updated
Feb 3, 2020 - Ruby
Question Checklist
- Updated fastlane to the latest version
- I read the Contribution Guidelines
- I read docs.fastlane.tools
- I searched for existing GitHub issues
Question Subject
This is a question about documentatio
See this contradictory screenshot. You can see that It is still tagged "Open" even after comment submitted and issue is technically closed. Refresh will update it however, so this is a minor thing.
http://storage6.static.itmages.com/i/18/0207/h_1518044500_4062387_372b6b472c.png
-
Updated
Feb 3, 2020 - Ruby
A detailed description of the proposed feature
When upgrading a bottle, first download the new version, then remove the old one and, finally, install the new.
The motivation for the feature
When upgrading things, the thing being upgraded will be unavailable for some time, since its first removed and then the download starts.
I regularly run brew upgrade and keep working since it
Seeing you are happy to close issues and never respond to replies in closed issues, I am forced to open new issue. I'm going to be brief this time.
In hashicorp/vagrant@1b0148b you removed function argument, which broke vagrant-gatling-rsync plugin. This is not a fault of plugin, but you breaking API compatibility. Please respect semv
🚀 Feature Proposal
In the Java class RemoteWebDriver within the method:
protected Response execute(String driverCommand, Map<String, ?> parameters)
the execute command is wrapped around logs statements:
log(sessionId, command.getName(), command, When.BEFORE);
response = executor.execute(command);
log(sessionId, command.getName(), command, When.AFTER);
can this be changed
This issue has 2 parts
- Style/RescueStandardError isn't represented at all in the style guide
- In particular, https://github.com/bbatsov/ruby-style-guide/tree/2c0b4713794ea07a70ca4e1dee81405350fa7544#no-blind-rescues shows that
rescue => eis "good", but this line would fail against Style/RescueStandardError 's default of "explicit".
Since this cop has 2 choices (implicit and explicit
When you have only one registered aspect, then people belonging to that aspect don't get shown with the name of the aspect, but with the generic "All Aspects".
I don't know if it was meant to be like this, I just find it confusing.
Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/86276565-profile-visualization-when-there-is-onl
I have setup rbenv according to the documentation on a fresh CentOS 7.7 machine. The result is that the installation does not work (ruby is not found regardless of me adding it as local or global). I finally found out that the shims directory never makes it to the path and therefore executed
echo 'export PATH="$HOME/.rbenv/shims:$PATH"' >> ~/.bash_profile
which made the stuff work. I a
Does Truffle support making a programming language in a new character set?
This is with reference to this question. My understanding is tha
So it seems there is a variable current_path which points to wherever :deploy:to/current symlink points. So after deploy:symlink:release it points to the current release.
Also there is a variable release_path that seems to point to the current release directory which is created by create_release task.
What
Whenever I try to install the sinatra gem, the first install hangs during:
"Installing ri documentation for sinatra-2.0.7"
I manually interrupt it, then do it again, and then it works.
I have no idea what causes it, but all the other gems and their ri
documentation do not have this issue.
I believe that there must be something special for sinatra documentation
done that causes this b
string_pattern gem
https://github.com/MarioRuiz/string_pattern
You can easily generate strings supplying a very simple pattern. Also, you can validate if a text fulfills a specific pattern or even generate a string following a pattern and returning the wrong length, value... for testing your applications.
Is your feature request related to a problem? Please describe.
There are a few situations where you have only the Cop name but you are not able to figure out what it is enforcing. Here are a few examples:
- CI fails
- Someone disabled a cop inline on the source code
- A new issue is discussing enabling/disabling a specific Cop
Describe the solution you'd like
It would be useful
Hi,
After searching a product on spree from search box. We see that screen
Instead of Search results for 'rails' result string, should we write We found 7 products related to rails. ?
What do you think?
Or is there a
Leaky Bucket Limiter
When limiting against APIs that use a Leaky Bucket rate limit, it'd be helpful to limit requests in Sidekiq using a Leaky Bucket Limiter.
References:
https://help.shopify.com/en/api/reference/rest-admin-api-rate-limits#general-api-rate-limits
https://en.wikipedia.org/wiki/Leaky_bucket
Would love to hear if anyone has extended out postal to a HA setup. With the postal install looking for IPs bound locally, that causes some issue.
Extending out the database/queues shouldn't be too hard but comes down to how mail is sent.
Having single reliance on a VM/server running postal is always a worry. Whilst the underlying hardware (for us) has resilience, there is still the single p
-
Updated
Feb 3, 2020 - Shell
Custom error formatter must have now 5 arguments instead of the old 4. These changes were introduced here on #1652
When migrating from 0.19 to 1.1.0 I had issues on a custom error formatter because the original_exception argument was introduced but that change was not documented on the upgrading guide.
Check CONTRIBUTING guideline first and here is the list to help us investigate the problem.
Is your feature request related to a problem? Please describe.
I have a k8s cluster, fluentd and fluent-bit are running on k8s cluster. fluenld and fluent-bit can collect all k8s cluster logs and output to elasticsearch, But we have so
I wanted to ask if a migration guide was created for going from a 1.4.3 version to a 2.x version? If there is no migration guide, what non-passive changes were introduced that caused the 2.x version bump?
Complete YARD docs
Here are all the Faker classes that have been updated with YARD docs/need to be updated:
- Blockchain
- Aeternity (#1742)
- Bitcoin (#1553)
- Ethereum (#1553)
- Tezos (#1553)
- Books
- Book (#1553)
- Culture (#1553) - Still needs descriptions for the YARD docs.
- Dune (#1553)
- Lovecraft (#1553)
- Creature
- Animal (#1
We've received a good amount of feedback for formatting values instantiated within the page_entries_info method. Currently we don't have a concrete interface for the method and Kaminari users need to implement a decorator that's not intuitive. It would be helpful if the method sends a certain sed of messages to the collection object. I'm not sure what the interface should look like, but here i
-
Updated
Feb 3, 2020 - Ruby

https://edgeguides.rubyonrails.org/association_basics.html#the-belongs-to-association says:
However (unless I'm going crazy), this is not accurate, because
belongs_tocan also set up a many-to-one relationship as the other side ofhas_many. This is explicitly stated in [thehas_manysection of the same gui