All Projects → shime → bun

shime / bun

Licence: MIT license
Bundler's little helper. A missing CLI tool to install and remove gems from Gemfile with ease.

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to bun

ClusterWS-Client-Swift
☄️ Swift Client for ClusterWS - lightweight, fast and powerful framework for building scalable WebSockets applications in Node.js.
Stars: ✭ 20 (-41.18%)
Mutual labels:  minimalistic
tb-grid
tb-grid is a super simple and lightweight 12 column responsive grid system utilizing css grid.
Stars: ✭ 19 (-44.12%)
Mutual labels:  minimalistic
parcel-typescript-example
A minimum TypeScript app with Parcel Bundler.
Stars: ✭ 100 (+194.12%)
Mutual labels:  bundler
cdk-esbuild
CDK constructs for esbuild, an extremely fast JavaScript bundler
Stars: ✭ 44 (+29.41%)
Mutual labels:  bundler
pansy
🛠️ A zero configuration library bundler.
Stars: ✭ 14 (-58.82%)
Mutual labels:  bundler
holo
Minimalistic configuration management
Stars: ✭ 88 (+158.82%)
Mutual labels:  minimalistic
requirex
A different kind of module loader 📦🦖
Stars: ✭ 20 (-41.18%)
Mutual labels:  bundler
bundle outdated formatter
Formatter for `bundle outdated` command
Stars: ✭ 16 (-52.94%)
Mutual labels:  bundler
rebloom
Minimalistic RedisBloom client for Node.js
Stars: ✭ 18 (-47.06%)
Mutual labels:  minimalistic
white-theme.el
Minimalistic light color theme inspired by basic-theme
Stars: ✭ 27 (-20.59%)
Mutual labels:  minimalistic
fliphub
the easiest app builder
Stars: ✭ 30 (-11.76%)
Mutual labels:  bundler
barecolor
A tiny JavaScript utility for printing colorful console messages.
Stars: ✭ 20 (-41.18%)
Mutual labels:  minimalistic
unpack
Create Web apps without a bundler
Stars: ✭ 39 (+14.71%)
Mutual labels:  bundler
ws
scripts for building web projects
Stars: ✭ 13 (-61.76%)
Mutual labels:  bundler
osprey-delight
Osprey Delight is the free-minded artist's choice for a clutter-free and blazingly fast single-page portfolio.
Stars: ✭ 43 (+26.47%)
Mutual labels:  minimalistic
fjb
fast javascript bundler 📦
Stars: ✭ 103 (+202.94%)
Mutual labels:  bundler
muleify
Muleify - Static Site Generator | Website Bundler | Asset Compiler | Templating | Preproccessor
Stars: ✭ 16 (-52.94%)
Mutual labels:  bundler
nanobundle
Yet another build tool for libraries, powered by esbuild
Stars: ✭ 45 (+32.35%)
Mutual labels:  bundler
wine-bundler
wine bundler - simple command line alternative to wine bottler and wineskin for macOS
Stars: ✭ 18 (-47.06%)
Mutual labels:  bundler
unchained
🚀 ES6 modules in browsers without bundlers.
Stars: ✭ 60 (+76.47%)
Mutual labels:  bundler

Bun

Build Status

Bundler's little helper. A missing CLI tool to install and remove gems from Gemfile with ease.

Installation

$ gem install bun

Usage

Install RSpec:

$ bun add rspec

Install specific version of RSpec

$ bun add rspec:3.7.0

Install Pry in development group:

$ bun add pry --development 

Install RSpec and Cucumber in test group:

$ bun add rspec cucumber --test

Uninstall RSpec:

$ bun remove rspec

Uninstall Rails:

$ bun remove rails

Install Cuba with strict version range:

$ bun add cuba --strict

Add Sequel to the Gemfile and exit without installing it:

$ bun add sequel --skip-install

Just print the gem name with the latest version found and exit:

$ bun add sequel --print

More info:

$ bun --help

API

require "bun"

Bun.add("rspec:3.7.0") # adds RSpec to Gemfile and runs bundle install
Bun.remove("rspec")    # removes RSpec from Gemfile

Prior art

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].