0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
All you need for developing Hive apps.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.3
~> 1.6.5
~> 10.1.1
~> 2.14.1

Runtime

~> 1.1.0
~> 0.18.1
 Project Readme

Hive::Toolbelt

Command Line Interface for the Hive wallet

Installation

$ gem install hive-toolbelt

Usage

$ hive init     # walk you through scaffolding a Hive app
$ hive package  # creates a .hiveapp bundle from specified or current working directory (.hidden files ignored)
$ hive serve    # serve current working directory as a .hiveapp bundle by starting a registry server
$ hive release  # (TODO) bumps version, tags and pushes

hive init

$ mkdir new_app
$ cd new_app
$ hive init

hive init asks questions and scaffolds a Hive app. It

hive package

hive package [DIR_NAME] packages a directory into a .hiveapp bundle. DIR_NAME defaults to current working directory if not specified. Regardless of DIR_NAME, the generated .hiveapp bundle is always located at current working directory.

Note that the command deliberately exclude all .hidden files and directories, like .git, when generating the bundle.

Contributing

  1. Fork it ( http://github.com/hivewallet/hive-toolbelt/fork )
  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