├── .gitignore ├── .travis.yml ├── .yardopts ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── torba ├── lib ├── torba.rb └── torba │ ├── cli.rb │ ├── css_url_to_erb_asset_path.rb │ ├── import_list.rb │ ├── manifest.rb │ ├── package.rb │ ├── rake_task.rb │ ├── remote_sources │ ├── common.rb │ ├── get_file.rb │ ├── github_release.rb │ ├── npm.rb │ ├── targz.rb │ └── zip.rb │ ├── ui.rb │ └── verify.rb ├── test ├── acceptance-cli │ ├── open_test.rb │ ├── pack_test.rb │ ├── show_test.rb │ └── verify_test.rb ├── css_url_to_erb_asset_path_test.rb ├── fixtures │ ├── home_path │ │ ├── 01 │ │ │ └── trumbowyg │ │ │ │ ├── icons-2x.png │ │ │ │ ├── icons.png │ │ │ │ ├── trumbowyg.css.erb │ │ │ │ └── trumbowyg.js │ │ ├── 02 │ │ │ └── lo_dash │ │ │ │ └── lodash.js │ │ └── 03 │ │ │ └── bourbon │ │ │ ├── _border-image.scss │ │ │ ├── _font-source-declaration.scss │ │ │ └── _retina-image.scss │ └── torbafiles │ │ ├── 01_gh_release.rb │ │ ├── 01_image_asset_not_specified.rb │ │ ├── 01_targz.rb │ │ ├── 01_zip.rb │ │ ├── 02_npm.rb │ │ ├── 03_not_existed_assets.rb │ │ └── 04_similar_names.rb ├── import_list_test.rb ├── manifest_test.rb ├── package │ ├── import_list_test.rb │ └── logical_paths_test.rb ├── package_test.rb ├── rake_task_test.rb ├── remote_sources │ ├── common_test.rb │ ├── get_file_test.rb │ ├── github_release_test.rb │ ├── npm_test.rb │ ├── targz_test.rb │ └── zip_test.rb ├── test_helper.rb └── torba_test.rb └── torba.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- 1 | --no-private 2 | - 3 | CHANGELOG.md 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/torba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/bin/torba -------------------------------------------------------------------------------- /lib/torba.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba.rb -------------------------------------------------------------------------------- /lib/torba/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba/cli.rb -------------------------------------------------------------------------------- /lib/torba/css_url_to_erb_asset_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba/css_url_to_erb_asset_path.rb -------------------------------------------------------------------------------- /lib/torba/import_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba/import_list.rb -------------------------------------------------------------------------------- /lib/torba/manifest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba/manifest.rb -------------------------------------------------------------------------------- /lib/torba/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba/package.rb -------------------------------------------------------------------------------- /lib/torba/rake_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba/rake_task.rb -------------------------------------------------------------------------------- /lib/torba/remote_sources/common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba/remote_sources/common.rb -------------------------------------------------------------------------------- /lib/torba/remote_sources/get_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba/remote_sources/get_file.rb -------------------------------------------------------------------------------- /lib/torba/remote_sources/github_release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba/remote_sources/github_release.rb -------------------------------------------------------------------------------- /lib/torba/remote_sources/npm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba/remote_sources/npm.rb -------------------------------------------------------------------------------- /lib/torba/remote_sources/targz.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba/remote_sources/targz.rb -------------------------------------------------------------------------------- /lib/torba/remote_sources/zip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba/remote_sources/zip.rb -------------------------------------------------------------------------------- /lib/torba/ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba/ui.rb -------------------------------------------------------------------------------- /lib/torba/verify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/lib/torba/verify.rb -------------------------------------------------------------------------------- /test/acceptance-cli/open_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/acceptance-cli/open_test.rb -------------------------------------------------------------------------------- /test/acceptance-cli/pack_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/acceptance-cli/pack_test.rb -------------------------------------------------------------------------------- /test/acceptance-cli/show_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/acceptance-cli/show_test.rb -------------------------------------------------------------------------------- /test/acceptance-cli/verify_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/acceptance-cli/verify_test.rb -------------------------------------------------------------------------------- /test/css_url_to_erb_asset_path_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/css_url_to_erb_asset_path_test.rb -------------------------------------------------------------------------------- /test/fixtures/home_path/01/trumbowyg/icons-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/home_path/01/trumbowyg/icons-2x.png -------------------------------------------------------------------------------- /test/fixtures/home_path/01/trumbowyg/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/home_path/01/trumbowyg/icons.png -------------------------------------------------------------------------------- /test/fixtures/home_path/01/trumbowyg/trumbowyg.css.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/home_path/01/trumbowyg/trumbowyg.css.erb -------------------------------------------------------------------------------- /test/fixtures/home_path/01/trumbowyg/trumbowyg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/home_path/01/trumbowyg/trumbowyg.js -------------------------------------------------------------------------------- /test/fixtures/home_path/02/lo_dash/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/home_path/02/lo_dash/lodash.js -------------------------------------------------------------------------------- /test/fixtures/home_path/03/bourbon/_border-image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/home_path/03/bourbon/_border-image.scss -------------------------------------------------------------------------------- /test/fixtures/home_path/03/bourbon/_font-source-declaration.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/home_path/03/bourbon/_font-source-declaration.scss -------------------------------------------------------------------------------- /test/fixtures/home_path/03/bourbon/_retina-image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/home_path/03/bourbon/_retina-image.scss -------------------------------------------------------------------------------- /test/fixtures/torbafiles/01_gh_release.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/torbafiles/01_gh_release.rb -------------------------------------------------------------------------------- /test/fixtures/torbafiles/01_image_asset_not_specified.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/torbafiles/01_image_asset_not_specified.rb -------------------------------------------------------------------------------- /test/fixtures/torbafiles/01_targz.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/torbafiles/01_targz.rb -------------------------------------------------------------------------------- /test/fixtures/torbafiles/01_zip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/torbafiles/01_zip.rb -------------------------------------------------------------------------------- /test/fixtures/torbafiles/02_npm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/torbafiles/02_npm.rb -------------------------------------------------------------------------------- /test/fixtures/torbafiles/03_not_existed_assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/torbafiles/03_not_existed_assets.rb -------------------------------------------------------------------------------- /test/fixtures/torbafiles/04_similar_names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/fixtures/torbafiles/04_similar_names.rb -------------------------------------------------------------------------------- /test/import_list_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/import_list_test.rb -------------------------------------------------------------------------------- /test/manifest_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/manifest_test.rb -------------------------------------------------------------------------------- /test/package/import_list_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/package/import_list_test.rb -------------------------------------------------------------------------------- /test/package/logical_paths_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/package/logical_paths_test.rb -------------------------------------------------------------------------------- /test/package_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/package_test.rb -------------------------------------------------------------------------------- /test/rake_task_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/rake_task_test.rb -------------------------------------------------------------------------------- /test/remote_sources/common_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/remote_sources/common_test.rb -------------------------------------------------------------------------------- /test/remote_sources/get_file_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/remote_sources/get_file_test.rb -------------------------------------------------------------------------------- /test/remote_sources/github_release_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/remote_sources/github_release_test.rb -------------------------------------------------------------------------------- /test/remote_sources/npm_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/remote_sources/npm_test.rb -------------------------------------------------------------------------------- /test/remote_sources/targz_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/remote_sources/targz_test.rb -------------------------------------------------------------------------------- /test/remote_sources/zip_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/remote_sources/zip_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/torba_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/test/torba_test.rb -------------------------------------------------------------------------------- /torba.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torba-rb/torba/HEAD/torba.gemspec --------------------------------------------------------------------------------