New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gondler

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gondler

  • 0.4.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Gondler

Build Status

bundler for golang. inspired by gom.

Installation

$ gem install gondler

Usage

  1. Write your Gomfile

    gom 'github.com/golang/glog'
    
  2. Install dependency packages: gondler install

  3. Build your application: gondler build

  4. Run tests: gondler test

Gomfile

like gom's Gomfile

itself 'github.com/rosylilly/test'

autodetect

gom 'github.com/golang/glog'
package 'github.com/golang/glog'

gom 'github.com/golang/glog', commit: 'c6f9652c7179652e2fd8ed7002330db089f4c9db'
gom 'github.com/golang/glog', branch: 'master'
gom 'github.com/golang/glog', tag: 'go1'

gom 'github.com/golang/glog', group: ['development', 'test']
group :development, :test do
  gom 'github.com/golang/glog'
end

gom 'github.com/golang/glog', os: ['linux', 'darwin']
os :linux, :darwin do
  gom 'github.com/golang/glog'
end

Commands

build           # Build with dependencies specified in your Gomfile
exec            # Execute a command in the context of Gondler
help [COMMAND]  # Describe available commands or one specific command
install         # Install the dependecies specified in your Gomfile
list            # Show all of the dependencies in the current bundle
repl            # REPL in the context of Gondler
test            # Test with dependencies specified in your Gomfile
version         # Print Gondler version

Custom commands

Gondler supports custom commands.

  1. Create a executable script file somewhere in your executable paths. It must use the following naming schema gondler-your-command.
  2. This file can be written in any scripting language or binaries.
  3. Now your could use it as gondler your-command.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

FAQs

Package last updated on 15 Mar 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc