Project

firebrew

0.0
No commit activity in last 3 years
No release in over 3 years
Firefox add-ons manager for CUI.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.5
>= 0
~> 3.0
~> 1.19

Runtime

~> 0.9
~> 2.0
~> 0.9
~> 1.1
 Project Readme

Firebrew

Firefox add-ons manager for CUI.

Installation

Add this line to your application's Gemfile:

gem 'firebrew'

And then execute:

$ bundle

Or install it yourself as:

$ gem install firebrew

NOTE: This program execution requires the OpenSSL.

Usage

The structure of the command line is shown below:

$ firebrew [--help] [--version]
           [--base-dir=<path>] [--profile=<name>] [--firefox=<path>]
           <command> [<args>]

commands

install

Install the extension which is designated by the extension-name argument:

$ firebrew install <extension-name>

uninstall

Uninstall the extension which is designated by the extension-name argument:

$ firebrew uninstall <extension-name>

info

Show detail information of the extension which is designated by the extension-name argument:

$ firebrew info <extension-name>

search

Enumerate the remote extensions whose name is matched the term argument:

$ firebrew search <term>

list

Enumerate the installed extensions:

$ firebrew list

profile

Show the profile information:

$ firebrew profile [--attribute=<attr-name>]
options
--attribute

The name of the attribute which want to display:

-a <attr-name>, --attribute=<attr-name>

global options

--base-dir

The Firefox profiles.ini directory:

-d <path>, --base-dir=<path>

The default value is listed below:

platform value
Mac OS X ~/Library/Application Support/Firefox
Linux ~/.mozilla/firefox
Windows %APPDATA%\Mozilla\Firefox

It's able to overridden by the FIREBREW_FIREFOX_PROFILE_BASE_DIR environment variable.

--profile-name

The Firefox profile name:

-p <name>, --profile=<name>

The default value is default, and it's able to overridden by the FIREBREW_FIREFOX_PROFILE environment variable.

--firefox

The Firefox command path:

-f <path>, --firefox=<path>

The default value is listed below:

platform value
Mac OS X /Applications/Firefox.app/Contents/MacOS/firefox-bin
Linux /usr/bin/firefox
Windows %PROGRAMFILES%\Mozilla Firefox\firefox.exe or %PROGRAMFILES(X86)%\Mozilla Firefox\firefox.exe

It's able to overridden by the FIREBREW_FIREFOX environment variable.

Contributing

  1. Fork it ( http://github.com/mrk21/firebrew/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