0.0
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Firefox os app analyzer tool
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 10.4
~> 3.1

Runtime

~> 1.1
~> 2.6
 Project Readme

Firefox Zip

Build Status

This gem library is Firefox os application package file (.zip) analyzer. you can read any information of zip files.

Install

$ gem install firefox_zip

# or

gem 'firefox_zip'
$ bundle install

How to use

require 'firefox_zip'

app = FirefoxZip.analyze('/path/to/firefox_app.zip', valid: true) # valid default false

app.name           # [String] app name
app.description    # [String] app description
app.launch_path    # [String] app launch path
app.icon           # [File] app default icon
app.icons          # [Array] app icons
app.developer      # [Hash] app developer info
app.default_locale # [String] app default locale
app.locales        # [Hash] app locales
app.type           # [String] app type
app.permissions    # [Array] app permissions
app.version        # [String] app version
app.size           # [Fixnum] app zip file size

app.to_hash        # [Hash] app info to hash

Validation

Use app-validator tool.

License

MIT