summary refs log tree commit diff
path: root/doc/languages-frameworks/ruby.section.md
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-11-10 00:02:22 +0000
committerGitHub <noreply@github.com>2023-11-10 00:02:22 +0000
commit3f616fad02c82853a8e6e3cf8fd3aea95945f70e (patch)
tree13ae002b9f9ee17c56db234f89ae5585b505b16c /doc/languages-frameworks/ruby.section.md
parente112f9b8bbb5af9de4426046a7cb4490e2c12eb0 (diff)
parent2251d8ffde6ad42897b7c97c51e117a2c6ec7f23 (diff)
downloadnixpkgs-3f616fad02c82853a8e6e3cf8fd3aea95945f70e.tar
nixpkgs-3f616fad02c82853a8e6e3cf8fd3aea95945f70e.tar.gz
nixpkgs-3f616fad02c82853a8e6e3cf8fd3aea95945f70e.tar.bz2
nixpkgs-3f616fad02c82853a8e6e3cf8fd3aea95945f70e.tar.lz
nixpkgs-3f616fad02c82853a8e6e3cf8fd3aea95945f70e.tar.xz
nixpkgs-3f616fad02c82853a8e6e3cf8fd3aea95945f70e.tar.zst
nixpkgs-3f616fad02c82853a8e6e3cf8fd3aea95945f70e.zip
Merge master into staging-next
Diffstat (limited to 'doc/languages-frameworks/ruby.section.md')
-rw-r--r--doc/languages-frameworks/ruby.section.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/languages-frameworks/ruby.section.md b/doc/languages-frameworks/ruby.section.md
index d3b896686c0..920c84eee68 100644
--- a/doc/languages-frameworks/ruby.section.md
+++ b/doc/languages-frameworks/ruby.section.md
@@ -94,7 +94,7 @@ $ bundle lock
 $ bundix
 ```
 
-If you already have a `Gemfile.lock`, you can simply run `bundix` and it will work the same.
+If you already have a `Gemfile.lock`, you can run `bundix` and it will work the same.
 
 To update the gems in your `Gemfile.lock`, you may use the `bundix -l` flag, which will create a new `Gemfile.lock` in case the `Gemfile` has a more recent time of modification.
 
@@ -251,7 +251,7 @@ source 'https://rubygems.org' do
 end
 ```
 
-If you want to package a specific version, you can use the standard Gemfile syntax for that, e.g. `gem 'mdl', '0.5.0'`, but if you want the latest stable version anyway, it's easier to update by simply running the `bundle lock` and `bundix` steps again.
+If you want to package a specific version, you can use the standard Gemfile syntax for that, e.g. `gem 'mdl', '0.5.0'`, but if you want the latest stable version anyway, it's easier to update by running the `bundle lock` and `bundix` steps again.
 
 Now you can also make a `default.nix` that looks like this: