aboutsummaryrefslogtreecommitdiffstats
path: root/oni-ruby
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-05-28 02:12:40 -0700
committerGravatar Tom Willemse2026-05-28 02:12:40 -0700
commit09a4099586657170cbdcff071b2d0fac5ed133b7 (patch)
tree8e8df3ca47bf2e89b430eb4f77e329dc78946320 /oni-ruby
parenta44d06182fbcb6b424b4ac699c69f7132c68acb6 (diff)
downloademacs-config-09a4099586657170cbdcff071b2d0fac5ed133b7.tar.gz
emacs-config-09a4099586657170cbdcff071b2d0fac5ed133b7.zip
oni-yasnippet: Move all snippets to ‘oni-yasnippet’
There is no real point in having them all separate. Having them all in a single place makes them much easier to manage.
Diffstat (limited to 'oni-ruby')
-rw-r--r--oni-ruby/Eldev13
-rw-r--r--oni-ruby/oni-ruby.el62
-rw-r--r--oni-ruby/snippets/ruby-mode/ProductSeed5
-rw-r--r--oni-ruby/snippets/ruby-mode/ProductSeedHW5
-rw-r--r--oni-ruby/snippets/ruby-mode/ProductSeedHWGroup8
-rw-r--r--oni-ruby/snippets/ruby-mode/describe7
-rw-r--r--oni-ruby/snippets/ruby-mode/do6
-rw-r--r--oni-ruby/snippets/ruby-mode/factory9
-rw-r--r--oni-ruby/snippets/ruby-mode/fill_in5
-rw-r--r--oni-ruby/snippets/ruby-mode/mod11
-rw-r--r--oni-ruby/snippets/ruby-mode/reduce5
11 files changed, 0 insertions, 136 deletions
diff --git a/oni-ruby/Eldev b/oni-ruby/Eldev
deleted file mode 100644
index 1ba3134..0000000
--- a/oni-ruby/Eldev
+++ /dev/null
@@ -1,13 +0,0 @@
-; -*- mode: emacs-lisp; lexical-binding: t -*-
-
-;; Uncomment some calls below as needed for your project.
-(eldev-use-package-archive 'gnu-elpa)
-;(eldev-use-package-archive 'nongnu-elpa)
-(eldev-use-package-archive 'melpa)
-(eldev-use-package-archive `("oni" . ,(expand-file-name "../bin")))
-
-(eldev-use-plugin 'autoloads)
-
-(setf eldev-files-to-package
- `(:or ,eldev-files-to-package
- '("*.el" "./snippets/**/*")))
diff --git a/oni-ruby/oni-ruby.el b/oni-ruby/oni-ruby.el
deleted file mode 100644
index 056a2a6..0000000
--- a/oni-ruby/oni-ruby.el
+++ /dev/null
@@ -1,62 +0,0 @@
-;;; oni-ruby.el --- Ruby configuration -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2019 Tom Willemse
-
-;; Author: Tom Willemse <tom@ryuslash.org>
-;; Keywords: local
-;; Version: 2021.1201.134041
-;; Package-Requires: (ruby-mode oni-yasnippet)
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program. If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Ruby configuration.
-
-;;; Code:
-
-(require 'yasnippet)
-
-(defconst oni-ruby-root
- (file-name-directory
- (or load-file-name
- (buffer-file-name)))
- "The directory where ‘oni-ruby’ was loaded from.")
-
-(defconst oni-ruby-snippets-dir
- (expand-file-name "snippets" oni-ruby-root)
- "The directory where ‘oni-ruby’ stores its snippets.")
-
-(defun oni-ruby-snippets-initialize ()
- "Initialize the snippets for ‘oni-ruby’."
- (when (boundp 'yas-snippet-dirs)
- (add-to-list 'yas-snippet-dirs oni-ruby-snippets-dir))
- (yas-load-directory oni-ruby-snippets-dir))
-
-(defun oni-ruby--auto-fill-mode ()
- "Enable ‘auto-fill-mode’ only for comments."
- (setq-local comment-auto-fill-only-comments t)
- (auto-fill-mode))
-
-(add-hook 'ruby-mode-hook 'display-fill-column-indicator-mode)
-(add-hook 'ruby-mode-hook 'electric-indent-local-mode)
-(add-hook 'ruby-mode-hook 'electric-pair-local-mode)
-(add-hook 'ruby-mode-hook 'oni-ruby--auto-fill-mode)
-
-(with-eval-after-load 'ruby-mode
- (with-eval-after-load 'yasnippet
- (oni-ruby-snippets-initialize)))
-
-(provide 'oni-ruby)
-;;; oni-ruby.el ends here
diff --git a/oni-ruby/snippets/ruby-mode/ProductSeed b/oni-ruby/snippets/ruby-mode/ProductSeed
deleted file mode 100644
index 7e836c2..0000000
--- a/oni-ruby/snippets/ruby-mode/ProductSeed
+++ /dev/null
@@ -1,5 +0,0 @@
-# -*- mode: snippet; require-final-newline: nil -*-
-# name: ProductSeed
-# key: pseed
-# --
-Product.find_or_create_by_name(parent_id: $1, name: '$2', description: '$3', price: '$4') \ No newline at end of file
diff --git a/oni-ruby/snippets/ruby-mode/ProductSeedHW b/oni-ruby/snippets/ruby-mode/ProductSeedHW
deleted file mode 100644
index 843b32e..0000000
--- a/oni-ruby/snippets/ruby-mode/ProductSeedHW
+++ /dev/null
@@ -1,5 +0,0 @@
-# -*- mode: snippet; require-final-newline: nil -*-
-# name: ProductSeedWithHW
-# key: pseed
-# --
-Product.find_or_create_by_name(parent_id: $1, name: '$2', description: '$3', price: '$4', width_in_cm: '$5', height_in_cm: '$6', width_in_mm: '${5:$(round (* 10 (string-to-int yas-text)))}', height_in_mm: '${6:$(round (* 10 (string-to-int yas-text)))}') \ No newline at end of file
diff --git a/oni-ruby/snippets/ruby-mode/ProductSeedHWGroup b/oni-ruby/snippets/ruby-mode/ProductSeedHWGroup
deleted file mode 100644
index 25594c5..0000000
--- a/oni-ruby/snippets/ruby-mode/ProductSeedHWGroup
+++ /dev/null
@@ -1,8 +0,0 @@
-# -*- mode: snippet; require-final-newline: nil -*-
-# name: ProductSeedWithHWGroup
-# key: pseed
-# --
-Product.find_or_create_by_name(parent_id: $1, name: '$2', description: 'Small', price: '20.00', width_in_cm: '25.00', height_in_cm: '21.00', width_in_mm: '250', height_in_mm: '210')
-Product.find_or_create_by_name(parent_id: $1, name: '$2', description: 'Medium', price: '20.00', width_in_cm: '30.00', height_in_cm: '25.80', width_in_mm: '300', height_in_mm: '258')
-Product.find_or_create_by_name(parent_id: $1, name: '$2', description: 'Large', price: '20.00', width_in_cm: '35.00', height_in_cm: '30.00', width_in_mm: '350', height_in_mm: '300')
-Product.find_or_create_by_name(parent_id: $1, name: '$2', description: 'Extra large', price: '20.00', width_in_cm: '40.00', height_in_cm: '34.00', width_in_mm: '400', height_in_mm: '340')
diff --git a/oni-ruby/snippets/ruby-mode/describe b/oni-ruby/snippets/ruby-mode/describe
deleted file mode 100644
index acd3a6b..0000000
--- a/oni-ruby/snippets/ruby-mode/describe
+++ /dev/null
@@ -1,7 +0,0 @@
-# -*- mode: snippet; require-final-newline: nil -*-
-# name: describe
-# key: desc
-# --
-describe '$1' do
- $0
-end \ No newline at end of file
diff --git a/oni-ruby/snippets/ruby-mode/do b/oni-ruby/snippets/ruby-mode/do
deleted file mode 100644
index 3c556fc..0000000
--- a/oni-ruby/snippets/ruby-mode/do
+++ /dev/null
@@ -1,6 +0,0 @@
-# -*- mode: snippet -*-
-# name: do
-# key: do
-# --
-do$0
-end \ No newline at end of file
diff --git a/oni-ruby/snippets/ruby-mode/factory b/oni-ruby/snippets/ruby-mode/factory
deleted file mode 100644
index 619b2e5..0000000
--- a/oni-ruby/snippets/ruby-mode/factory
+++ /dev/null
@@ -1,9 +0,0 @@
-# -*- mode: snippet -*-
-# name: factory
-# key: factory
-# --
-FactoryGirl.define do
- factory :${1:`(file-name-sans-extension (file-name-nondirectory buffer-file-name))`} do
- $0
- end
-end \ No newline at end of file
diff --git a/oni-ruby/snippets/ruby-mode/fill_in b/oni-ruby/snippets/ruby-mode/fill_in
deleted file mode 100644
index 854b029..0000000
--- a/oni-ruby/snippets/ruby-mode/fill_in
+++ /dev/null
@@ -1,5 +0,0 @@
-# -*- mode: snippet; require-final-newline: nil -*-
-# name: fill_in
-# key: fin
-# --
-fill_in '$1', with: $2 \ No newline at end of file
diff --git a/oni-ruby/snippets/ruby-mode/mod b/oni-ruby/snippets/ruby-mode/mod
deleted file mode 100644
index 9af7d23..0000000
--- a/oni-ruby/snippets/ruby-mode/mod
+++ /dev/null
@@ -1,11 +0,0 @@
-# -*- mode: snippet; require-final-newline: nil -*-
-# name: module ... end
-# key: mod
-# group: definitions
-# --
-module ${1:`(let ((fn (capitalize (file-name-nondirectory
- (directory-file-name
- default-directory)))))
- (replace-regexp-in-string "_" "" fn t t))`}
- $0
-end \ No newline at end of file
diff --git a/oni-ruby/snippets/ruby-mode/reduce b/oni-ruby/snippets/ruby-mode/reduce
deleted file mode 100644
index 3d4bfe4..0000000
--- a/oni-ruby/snippets/ruby-mode/reduce
+++ /dev/null
@@ -1,5 +0,0 @@
-# -*- mode: snippet; require-final-newline: nil -*-
-# name: reduce
-# key: reduce
-# --
-reduce { |a, e| $0 } \ No newline at end of file