bpm 0.1.4 → 1.0.0.beta.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +20 -0
- data/README.md +1 -1
- data/TODO.md +90 -2
- data/bpm.gemspec +3 -3
- data/lib/bpm/cli/base.rb +103 -52
- data/lib/bpm/errors.rb +51 -0
- data/lib/bpm/init_generator.rb +1 -8
- data/lib/bpm/libgems_ext/libgems.rb +9 -0
- data/lib/bpm/local.rb +6 -11
- data/lib/bpm/package.rb +272 -178
- data/lib/bpm/pipeline/generated_asset.rb +88 -28
- data/lib/bpm/pipeline/plugin_asset.rb +8 -2
- data/lib/bpm/pipeline/source_url_processor.rb +16 -0
- data/lib/bpm/pipeline/transport_processor.rb +5 -3
- data/lib/bpm/pipeline.rb +33 -23
- data/lib/bpm/project.rb +492 -167
- data/lib/bpm/project_generator.rb +14 -1
- data/lib/bpm/remote.rb +6 -4
- data/lib/bpm/server.rb +4 -15
- data/lib/bpm/version.rb +2 -1
- data/lib/bpm.rb +2 -0
- data/man/bpm-add.1.ronn +22 -0
- data/man/bpm-build.1.ronn +22 -0
- data/man/bpm-compile.1.ronn +23 -0
- data/man/bpm-config.7.ronn +21 -0
- data/man/bpm-fetch.1.ronn +22 -0
- data/man/bpm-fetched.1.ronn +22 -0
- data/man/bpm-init.1.ronn +22 -0
- data/man/bpm-list.1.ronn +22 -0
- data/man/bpm-login.1.ronn +22 -0
- data/man/bpm-new.1.ronn +22 -0
- data/man/bpm-owner.1.ronn +22 -0
- data/man/bpm-preview.1.ronn +22 -0
- data/man/bpm-push.1.ronn +22 -0
- data/man/bpm-remove.1.ronn +22 -0
- data/man/bpm-unpack.1.ronn +22 -0
- data/man/bpm-yank.1.ronn +22 -0
- data/man/bpm.1.ronn +31 -0
- data/spec/cli/add_spec.rb +26 -7
- data/spec/cli/fetch_spec.rb +15 -6
- data/spec/cli/init_spec.rb +165 -25
- data/spec/cli/{build_spec.rb → pack_spec.rb} +9 -10
- data/spec/cli/push_spec.rb +4 -4
- data/spec/cli/rebuild_spec.rb +181 -0
- data/spec/cli/remove_spec.rb +3 -4
- data/spec/cli/unpack_spec.rb +6 -6
- data/spec/fixtures/gems/core-test-0.4.9.bpkg +0 -0
- data/spec/fixtures/{core-test-0.4.9.bpkg → gems/uglify-js-1.0.4.bpkg} +0 -0
- data/spec/fixtures/packages/core-test/extras/extra_file.html +3 -0
- data/spec/fixtures/packages/core-test/index.html +3 -0
- data/spec/fixtures/{core-test → packages/core-test}/package.json +9 -3
- data/spec/fixtures/packages/invalid_json/package.json +3 -0
- data/spec/fixtures/packages/uglify-js/README.html +825 -0
- data/spec/fixtures/packages/uglify-js/README.org +431 -0
- data/spec/fixtures/packages/uglify-js/bin/uglifyjs +305 -0
- data/spec/fixtures/packages/uglify-js/docstyle.css +75 -0
- data/spec/fixtures/packages/uglify-js/lib/parse-js.js +1 -0
- data/spec/fixtures/packages/uglify-js/lib/process.js +1 -0
- data/spec/fixtures/packages/uglify-js/lib/squeeze-more.js +1 -0
- data/spec/fixtures/packages/uglify-js/package.json +27 -0
- data/spec/fixtures/packages/uglify-js/plugins/minifier.js +6 -0
- data/spec/fixtures/packages/uglify-js/uglify-js.js +17 -0
- data/spec/fixtures/projects/hello2/README.md +21 -0
- data/{templates/init → spec/fixtures/projects/hello2}/assets/bpm_packages.js +6 -1
- data/{templates/init → spec/fixtures/projects/hello2}/assets/bpm_styles.css +1 -1
- data/spec/fixtures/projects/hello2/hello2.json +16 -0
- data/spec/fixtures/projects/hello2/index.html +13 -0
- data/spec/fixtures/projects/hello2/packages/a/lib/main.js +2 -0
- data/spec/fixtures/projects/hello2/packages/a/package.json +17 -0
- data/spec/fixtures/projects/hello2/packages/b/lib/main.js +2 -0
- data/spec/fixtures/projects/hello2/packages/b/package.json +17 -0
- data/spec/fixtures/projects/hello2/packages/c/lib/main.js +2 -0
- data/spec/fixtures/projects/hello2/packages/c/package.json +16 -0
- data/spec/fixtures/projects/hello_dev/LICENSE +19 -0
- data/spec/fixtures/projects/hello_dev/README.md +21 -0
- data/spec/fixtures/projects/hello_dev/app/main.js +6 -0
- data/spec/fixtures/projects/hello_dev/assets/bpm_libs.js +5 -0
- data/spec/fixtures/projects/hello_dev/assets/bpm_styles.css +6 -0
- data/spec/fixtures/projects/hello_dev/css/main.css +1 -0
- data/spec/fixtures/projects/hello_dev/hello_dev.json +25 -0
- data/spec/fixtures/projects/hello_dev/index.html +14 -0
- data/spec/fixtures/projects/hello_dev/packages/style_package/css/some_style.css +3 -0
- data/spec/fixtures/{minitest/minitest.json → projects/hello_dev/packages/style_package/package.json} +5 -9
- data/spec/fixtures/projects/hello_world/LICENSE +19 -0
- data/spec/fixtures/projects/hello_world/assets/bpm_packages.js +1 -0
- data/spec/fixtures/projects/hello_world/assets/bpm_styles.css +1 -0
- data/spec/fixtures/projects/hello_world/custom_dir/custom.js +1 -0
- data/spec/fixtures/projects/hello_world/hello_world.json +41 -0
- data/spec/fixtures/projects/hello_world/lib/another.js +1 -0
- data/spec/fixtures/{hello_world → projects/hello_world}/packages/custom_package/package.json +5 -2
- data/spec/fixtures/projects/hello_world/vendor/lib/something.js +1 -0
- data/spec/fixtures/projects/init_app/assets/bpm_libs.js +6 -0
- data/spec/fixtures/projects/init_app/assets/bpm_styles.css +5 -0
- data/spec/fixtures/projects/init_app/assets/new_project/bpm_libs.js +6 -0
- data/spec/fixtures/projects/init_app/assets/new_project/bpm_styles.css +5 -0
- data/spec/fixtures/projects/init_app/new_project.json +27 -0
- data/spec/fixtures/projects/init_default/assets/bpm_libs.js +6 -0
- data/spec/fixtures/projects/init_default/assets/bpm_styles.css +5 -0
- data/spec/fixtures/projects/init_default/new_project.json +15 -0
- data/spec/fixtures/projects/minitest/minitest.json +26 -0
- data/spec/fixtures/{minitest → projects/minitest}/packages/uglyduck/package.json +1 -1
- data/spec/fixtures/projects/needs_rake/needs_rake.json +7 -0
- data/spec/fixtures/{transporter → projects/transporter}/packages/transport/package.json +1 -1
- data/spec/package_spec.rb +343 -315
- data/spec/pipeline_spec.rb +89 -71
- data/spec/plugins/minifier_spec.rb +25 -16
- data/spec/plugins/transport_spec.rb +1 -1
- data/spec/project_spec.rb +97 -34
- data/spec/spec_helper.rb +41 -0
- data/spec/support/fake_gem_server.rb +8 -4
- data/spec/support/path.rb +8 -0
- data/spec/support/project.rb +50 -17
- data/templates/init/project.json +12 -14
- data/templates/project/LICENSE +1 -1
- data/templates/project/app/main.js +6 -0
- data/templates/project/css/main.css +1 -0
- data/templates/project/index.html +4 -3
- data/vendor/sprockets/.travis.yml +3 -2
- data/vendor/sprockets/Gemfile +0 -6
- data/vendor/sprockets/lib/sprockets/asset.rb +7 -12
- data/vendor/sprockets/lib/sprockets/asset_attributes.rb +70 -53
- data/vendor/sprockets/lib/sprockets/base.rb +1 -14
- data/vendor/sprockets/lib/sprockets/bundled_asset.rb +72 -45
- data/vendor/sprockets/lib/sprockets/caching.rb +28 -23
- data/vendor/sprockets/lib/sprockets/context.rb +56 -26
- data/vendor/sprockets/lib/sprockets/directive_processor.rb +21 -4
- data/vendor/sprockets/lib/sprockets/eco_template.rb +3 -4
- data/vendor/sprockets/lib/sprockets/ejs_template.rb +3 -4
- data/vendor/sprockets/lib/sprockets/engines.rb +26 -1
- data/vendor/sprockets/lib/sprockets/environment.rb +2 -1
- data/vendor/sprockets/lib/sprockets/index.rb +1 -0
- data/vendor/sprockets/lib/sprockets/mime.rb +38 -0
- data/vendor/sprockets/lib/sprockets/processing.rb +4 -45
- data/vendor/sprockets/lib/sprockets/static_asset.rb +5 -6
- data/vendor/sprockets/lib/sprockets/static_compilation.rb +4 -12
- data/vendor/sprockets/lib/sprockets/trail.rb +2 -1
- data/vendor/sprockets/test/fixtures/default/blank.gif +0 -0
- data/vendor/sprockets/test/fixtures/default/with_data_uri.css.erb +3 -0
- data/vendor/sprockets/test/test_asset.rb +121 -15
- data/vendor/sprockets/test/test_asset_attributes.rb +85 -21
- data/vendor/sprockets/test/test_environment.rb +13 -36
- metadata +564 -444
- data/spec/cli/new_spec.rb +0 -118
- data/spec/fixtures/hello_world/assets/bpm_packages.js +0 -13
- data/spec/fixtures/hello_world/assets/bpm_styles.css +0 -14
- data/spec/fixtures/hello_world/hello_world.json +0 -20
- /data/spec/fixtures/{badrake-0.8.7.bpkg → gems/badrake-0.8.7.bpkg} +0 -0
- /data/spec/fixtures/{builder-3.0.0.bpkg → gems/builder-3.0.0.bpkg} +0 -0
- /data/spec/fixtures/{bundler-1.1.pre.bpkg → gems/bundler-1.1.pre.bpkg} +0 -0
- /data/spec/fixtures/{coffee-1.0.1.pre.bpkg → gems/coffee-1.0.1.pre.bpkg} +0 -0
- /data/spec/fixtures/{custom_generator-1.0.bpkg → gems/custom_generator-1.0.bpkg} +0 -0
- /data/spec/fixtures/{highline-1.6.1.bpkg → gems/highline-1.6.1.bpkg} +0 -0
- /data/spec/fixtures/{ivory-0.0.1.bpkg → gems/ivory-0.0.1.bpkg} +0 -0
- /data/spec/fixtures/{jquery-1.4.3.bpkg → gems/jquery-1.4.3.bpkg} +0 -0
- /data/spec/fixtures/{optparse-1.0.1.bpkg → gems/optparse-1.0.1.bpkg} +0 -0
- /data/spec/fixtures/{rake-0.8.6.bpkg → gems/rake-0.8.6.bpkg} +0 -0
- /data/spec/fixtures/{rake-0.8.7.bpkg → gems/rake-0.8.7.bpkg} +0 -0
- /data/spec/fixtures/{spade-0.5.0.bpkg → gems/spade-0.5.0.bpkg} +0 -0
- /data/spec/fixtures/{src → packages}/README.txt +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/.gitignore +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/CHANGELOG.md +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/ISSUES.md +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/LICENSE +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/README.md +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/UPGRADING.md +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/bin/bundle +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/lib/bundler/definition.js +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/lib/bundler/dependency.js +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/lib/bundler/dsl.js +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/lib/bundler/ui.js +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/lib/bundler.js +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/man/bundle-config.ronn +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/man/bundle-exec.ronn +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/man/bundle-install.ronn +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/man/bundle-package.ronn +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/man/bundle-update.ronn +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/man/bundle.ronn +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/man/gemfile.5.ronn +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/man/index.txt +0 -0
- /data/spec/fixtures/{src → packages}/bundler-1.1.pre/package.json +0 -0
- /data/spec/fixtures/{src → packages}/coffee-1.0.1.pre/bin/cake +0 -0
- /data/spec/fixtures/{src → packages}/coffee-1.0.1.pre/bin/coffee +0 -0
- /data/spec/fixtures/{src → packages}/coffee-1.0.1.pre/lib/coffee/base.js +0 -0
- /data/spec/fixtures/{src → packages}/coffee-1.0.1.pre/lib/coffee/mocha/chai.js +0 -0
- /data/spec/fixtures/{src → packages}/coffee-1.0.1.pre/lib/coffee.js +0 -0
- /data/spec/fixtures/{src → packages}/coffee-1.0.1.pre/package.json +0 -0
- /data/spec/fixtures/{src → packages}/coffee-1.0.1.pre/qunit/coffee/test.js +0 -0
- /data/spec/fixtures/{src → packages}/coffee-1.0.1.pre/qunit/test.js +0 -0
- /data/spec/fixtures/{core-test → packages/core-test}/bin/cot +0 -0
- /data/spec/fixtures/{core-test → packages/core-test}/lib/main.js +0 -0
- /data/spec/fixtures/{core-test → packages/core-test}/resources/runner.css +0 -0
- /data/spec/fixtures/{core-test → packages/core-test}/tests/test.js +0 -0
- /data/spec/fixtures/{custom_generator → packages/custom_generator}/lib/main.js +0 -0
- /data/spec/fixtures/{custom_generator → packages/custom_generator}/package.json +0 -0
- /data/spec/fixtures/{custom_generator → packages/custom_generator}/templates/init/project.json +0 -0
- /data/spec/fixtures/{custom_generator → packages/custom_generator}/templates/project/app.js +0 -0
- /data/spec/fixtures/{custom_generator → packages/custom_generator}/templates/project/lib/main.js +0 -0
- /data/spec/fixtures/{custom_generator → packages/custom_generator}/templates/project_generator.rb +0 -0
- /data/spec/fixtures/{src → packages}/jquery/lib/main.js +0 -0
- /data/spec/fixtures/{src → packages}/jquery/package.json +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/CHANGES +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/MIT-LICENSE +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/README +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/Rakefile +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/TODO +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/bin/rake +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/command_line_usage.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/example/Rakefile1 +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/example/Rakefile2 +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/example/a.c +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/example/b.c +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/example/main.c +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/glossary.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/jamis.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/proto_rake.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/rake.1.gz +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/rakefile.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/rational.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.4.14.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.4.15.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.5.0.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.5.3.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.5.4.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.6.0.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.7.0.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.7.1.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.7.2.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.7.3.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.8.0.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.8.2.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.8.3.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.8.4.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.8.5.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/doc/release_notes/rake-0.8.6.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/install.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/alt_system.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/classic_namespace.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/clean.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/contrib/compositepublisher.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/contrib/ftptools.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/contrib/publisher.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/contrib/rubyforgepublisher.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/contrib/sshpublisher.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/contrib/sys.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/gempackagetask.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/loaders/makefile.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/packagetask.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/rake_test_loader.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/rdoctask.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/ruby182_test_unit_fix.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/runtest.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/tasklib.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/testtask.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake/win32.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/lib/rake.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/package.json +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.6/test/capture_stdout.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/CHANGES +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/MIT-LICENSE +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/README +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/Rakefile +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/TODO +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/bin/rake +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/command_line_usage.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/example/Rakefile1 +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/example/Rakefile2 +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/example/a.c +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/example/b.c +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/example/main.c +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/glossary.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/jamis.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/proto_rake.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/rake.1.gz +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/rakefile.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/rational.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.4.14.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.4.15.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.5.0.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.5.3.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.5.4.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.6.0.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.7.0.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.7.1.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.7.2.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.7.3.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.8.0.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.8.2.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.8.3.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.8.4.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.8.5.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.8.6.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/doc/release_notes/rake-0.8.7.rdoc +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/install.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/alt_system.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/classic_namespace.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/clean.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/contrib/compositepublisher.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/contrib/ftptools.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/contrib/publisher.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/contrib/rubyforgepublisher.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/contrib/sshpublisher.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/contrib/sys.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/gempackagetask.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/loaders/makefile.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/packagetask.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/rake_test_loader.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/rdoctask.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/ruby182_test_unit_fix.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/runtest.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/tasklib.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/testtask.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake/win32.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/lib/rake.rb +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/package.json +0 -0
- /data/spec/fixtures/{src → packages}/rake-0.8.7/test/capture_stdout.rb +0 -0
- /data/spec/fixtures/{src → packages}/spade/lib/main.js +0 -0
- /data/spec/fixtures/{src → packages}/spade/package.json +0 -0
- /data/spec/fixtures/{custom_name → projects/custom_name}/MyProject.json +0 -0
- /data/spec/fixtures/{hello_world → projects/hello2}/LICENSE +0 -0
- /data/{templates/project → spec/fixtures/projects/hello2}/app.js +0 -0
- /data/spec/fixtures/{hello_world → projects/hello_world}/README.md +0 -0
- /data/spec/fixtures/{hello_world → projects/hello_world}/assets/papa-smurf.jpg +0 -0
- /data/spec/fixtures/{hello_world → projects/hello_world}/css/dummy.css +0 -0
- /data/spec/fixtures/{hello_world → projects/hello_world}/lib/main.js +0 -0
- /data/spec/fixtures/{hello_world → projects/hello_world}/packages/custom_package/assets/dummy.txt +0 -0
- /data/spec/fixtures/{hello_world → projects/hello_world}/packages/custom_package/css/sample_styles.css +0 -0
- /data/spec/fixtures/{hello_world → projects/hello_world}/packages/custom_package/custom_dir/basic-module.js +0 -0
- /data/spec/fixtures/{hello_world → projects/hello_world}/packages/custom_package/lib/main.js +0 -0
- /data/spec/fixtures/{hello_world → projects/hello_world}/tests/main-test.js +0 -0
- /data/spec/fixtures/{minitest → projects/minitest}/assets/bpm_packages.js +0 -0
- /data/spec/fixtures/{minitest → projects/minitest}/assets/bpm_styles.css +0 -0
- /data/spec/fixtures/{minitest → projects/minitest}/assets/minitest/app_package.js +0 -0
- /data/spec/fixtures/{minitest → projects/minitest}/lib/main.js +0 -0
- /data/spec/fixtures/{minitest → projects/minitest}/packages/uglyduck/lib/main.js +0 -0
- /data/spec/fixtures/{minitest → projects/minitest}/packages/uglyduck/minifier/main.js +0 -0
- /data/spec/fixtures/{simple_hello/assets/bpm_packages.js → projects/simple_hello/assets/bpm_libs.js} +0 -0
- /data/spec/fixtures/{simple_hello → projects/simple_hello}/lib/main.js +0 -0
- /data/spec/fixtures/{transporter → projects/transporter}/lib/main.js +0 -0
- /data/spec/fixtures/{transporter → projects/transporter}/packages/transport/lib/main.js +0 -0
- /data/spec/fixtures/{transporter → projects/transporter}/packages/transport/transports/wrapper.js +0 -0
- /data/spec/fixtures/{transporter → projects/transporter}/transporter.json +0 -0
metadata
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bpm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
5
|
-
prerelease:
|
4
|
+
version: 1.0.0.beta.4
|
5
|
+
prerelease: 6
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Charles Jolley
|
@@ -10,22 +10,22 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2011-07-
|
13
|
+
date: 2011-07-18 00:00:00.000000000Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: libgems
|
17
|
-
requirement: &
|
17
|
+
requirement: &70286813966120 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ~>
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 0.0.
|
22
|
+
version: 0.0.5
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *70286813966120
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: gemcutter
|
28
|
-
requirement: &
|
28
|
+
requirement: &70286813965620 !ruby/object:Gem::Requirement
|
29
29
|
none: false
|
30
30
|
requirements:
|
31
31
|
- - ~>
|
@@ -33,10 +33,10 @@ dependencies:
|
|
33
33
|
version: 0.6.1
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
|
-
version_requirements: *
|
36
|
+
version_requirements: *70286813965620
|
37
37
|
- !ruby/object:Gem::Dependency
|
38
38
|
name: highline
|
39
|
-
requirement: &
|
39
|
+
requirement: &70286813965160 !ruby/object:Gem::Requirement
|
40
40
|
none: false
|
41
41
|
requirements:
|
42
42
|
- - ~>
|
@@ -44,10 +44,10 @@ dependencies:
|
|
44
44
|
version: 1.6.1
|
45
45
|
type: :runtime
|
46
46
|
prerelease: false
|
47
|
-
version_requirements: *
|
47
|
+
version_requirements: *70286813965160
|
48
48
|
- !ruby/object:Gem::Dependency
|
49
49
|
name: json_pure
|
50
|
-
requirement: &
|
50
|
+
requirement: &70286813964700 !ruby/object:Gem::Requirement
|
51
51
|
none: false
|
52
52
|
requirements:
|
53
53
|
- - ~>
|
@@ -55,10 +55,10 @@ dependencies:
|
|
55
55
|
version: 1.4.6
|
56
56
|
type: :runtime
|
57
57
|
prerelease: false
|
58
|
-
version_requirements: *
|
58
|
+
version_requirements: *70286813964700
|
59
59
|
- !ruby/object:Gem::Dependency
|
60
60
|
name: thor
|
61
|
-
requirement: &
|
61
|
+
requirement: &70286813964240 !ruby/object:Gem::Requirement
|
62
62
|
none: false
|
63
63
|
requirements:
|
64
64
|
- - ~>
|
@@ -66,10 +66,10 @@ dependencies:
|
|
66
66
|
version: 0.14.3
|
67
67
|
type: :runtime
|
68
68
|
prerelease: false
|
69
|
-
version_requirements: *
|
69
|
+
version_requirements: *70286813964240
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: therubyracer
|
72
|
-
requirement: &
|
72
|
+
requirement: &70286813963780 !ruby/object:Gem::Requirement
|
73
73
|
none: false
|
74
74
|
requirements:
|
75
75
|
- - ~>
|
@@ -77,10 +77,10 @@ dependencies:
|
|
77
77
|
version: 0.9.2
|
78
78
|
type: :runtime
|
79
79
|
prerelease: false
|
80
|
-
version_requirements: *
|
80
|
+
version_requirements: *70286813963780
|
81
81
|
- !ruby/object:Gem::Dependency
|
82
82
|
name: hike
|
83
|
-
requirement: &
|
83
|
+
requirement: &70286813963320 !ruby/object:Gem::Requirement
|
84
84
|
none: false
|
85
85
|
requirements:
|
86
86
|
- - ~>
|
@@ -88,10 +88,10 @@ dependencies:
|
|
88
88
|
version: '1.1'
|
89
89
|
type: :runtime
|
90
90
|
prerelease: false
|
91
|
-
version_requirements: *
|
91
|
+
version_requirements: *70286813963320
|
92
92
|
- !ruby/object:Gem::Dependency
|
93
93
|
name: rack
|
94
|
-
requirement: &
|
94
|
+
requirement: &70286813962860 !ruby/object:Gem::Requirement
|
95
95
|
none: false
|
96
96
|
requirements:
|
97
97
|
- - ~>
|
@@ -99,10 +99,10 @@ dependencies:
|
|
99
99
|
version: '1.0'
|
100
100
|
type: :runtime
|
101
101
|
prerelease: false
|
102
|
-
version_requirements: *
|
102
|
+
version_requirements: *70286813962860
|
103
103
|
- !ruby/object:Gem::Dependency
|
104
104
|
name: tilt
|
105
|
-
requirement: &
|
105
|
+
requirement: &70286813962360 !ruby/object:Gem::Requirement
|
106
106
|
none: false
|
107
107
|
requirements:
|
108
108
|
- - ~>
|
@@ -113,10 +113,10 @@ dependencies:
|
|
113
113
|
version: 1.3.0
|
114
114
|
type: :runtime
|
115
115
|
prerelease: false
|
116
|
-
version_requirements: *
|
116
|
+
version_requirements: *70286813962360
|
117
117
|
- !ruby/object:Gem::Dependency
|
118
118
|
name: rspec
|
119
|
-
requirement: &
|
119
|
+
requirement: &70286809038580 !ruby/object:Gem::Requirement
|
120
120
|
none: false
|
121
121
|
requirements:
|
122
122
|
- - ! '>='
|
@@ -124,10 +124,10 @@ dependencies:
|
|
124
124
|
version: '0'
|
125
125
|
type: :development
|
126
126
|
prerelease: false
|
127
|
-
version_requirements: *
|
127
|
+
version_requirements: *70286809038580
|
128
128
|
- !ruby/object:Gem::Dependency
|
129
129
|
name: rack
|
130
|
-
requirement: &
|
130
|
+
requirement: &70286809038040 !ruby/object:Gem::Requirement
|
131
131
|
none: false
|
132
132
|
requirements:
|
133
133
|
- - ~>
|
@@ -135,8 +135,8 @@ dependencies:
|
|
135
135
|
version: 1.2.1
|
136
136
|
type: :development
|
137
137
|
prerelease: false
|
138
|
-
version_requirements: *
|
139
|
-
description: Package Manager
|
138
|
+
version_requirements: *70286809038040
|
139
|
+
description: Browser Package Manager
|
140
140
|
email:
|
141
141
|
- charles@sproutcore.com
|
142
142
|
- peterw@strobecorp.com
|
@@ -169,6 +169,7 @@ files:
|
|
169
169
|
- vendor/sprockets/lib/sprockets/errors.rb
|
170
170
|
- vendor/sprockets/lib/sprockets/index.rb
|
171
171
|
- vendor/sprockets/lib/sprockets/jst_processor.rb
|
172
|
+
- vendor/sprockets/lib/sprockets/mime.rb
|
172
173
|
- vendor/sprockets/lib/sprockets/processing.rb
|
173
174
|
- vendor/sprockets/lib/sprockets/processor.rb
|
174
175
|
- vendor/sprockets/lib/sprockets/safety_colons.rb
|
@@ -246,6 +247,7 @@ files:
|
|
246
247
|
- vendor/sprockets/test/fixtures/context/resolve_content_type.js.erb
|
247
248
|
- vendor/sprockets/test/fixtures/context/sprite.css.embed
|
248
249
|
- vendor/sprockets/test/fixtures/default/application.js.coffee
|
250
|
+
- vendor/sprockets/test/fixtures/default/blank.gif
|
249
251
|
- vendor/sprockets/test/fixtures/default/coffee/foo.coffee
|
250
252
|
- vendor/sprockets/test/fixtures/default/coffee/index.js
|
251
253
|
- vendor/sprockets/test/fixtures/default/empty
|
@@ -264,6 +266,7 @@ files:
|
|
264
266
|
- vendor/sprockets/test/fixtures/default/mobile/index.js
|
265
267
|
- vendor/sprockets/test/fixtures/default/noreturn.js
|
266
268
|
- vendor/sprockets/test/fixtures/default/project.js.coffee.erb
|
269
|
+
- vendor/sprockets/test/fixtures/default/with_data_uri.css.erb
|
267
270
|
- vendor/sprockets/test/fixtures/directives/code_before_comment
|
268
271
|
- vendor/sprockets/test/fixtures/directives/comment_without_directives
|
269
272
|
- vendor/sprockets/test/fixtures/directives/directive_word_splitting
|
@@ -303,6 +306,7 @@ files:
|
|
303
306
|
- vendor/sprockets/test/test_server.rb
|
304
307
|
- .gitignore
|
305
308
|
- .gitmodules
|
309
|
+
- CHANGELOG.md
|
306
310
|
- Gemfile
|
307
311
|
- README.md
|
308
312
|
- TODO.md
|
@@ -314,6 +318,7 @@ files:
|
|
314
318
|
- lib/bpm/cli/owner.rb
|
315
319
|
- lib/bpm/credentials.rb
|
316
320
|
- lib/bpm/default.json
|
321
|
+
- lib/bpm/errors.rb
|
317
322
|
- lib/bpm/generator.rb
|
318
323
|
- lib/bpm/init_generator.rb
|
319
324
|
- lib/bpm/libgems_ext.rb
|
@@ -328,6 +333,7 @@ files:
|
|
328
333
|
- lib/bpm/pipeline/directive_processor.rb
|
329
334
|
- lib/bpm/pipeline/generated_asset.rb
|
330
335
|
- lib/bpm/pipeline/plugin_asset.rb
|
336
|
+
- lib/bpm/pipeline/source_url_processor.rb
|
331
337
|
- lib/bpm/pipeline/transport_processor.rb
|
332
338
|
- lib/bpm/project.rb
|
333
339
|
- lib/bpm/project_generator.rb
|
@@ -335,224 +341,290 @@ files:
|
|
335
341
|
- lib/bpm/repository.rb
|
336
342
|
- lib/bpm/server.rb
|
337
343
|
- lib/bpm/version.rb
|
344
|
+
- man/bpm-add.1.ronn
|
345
|
+
- man/bpm-build.1.ronn
|
346
|
+
- man/bpm-compile.1.ronn
|
347
|
+
- man/bpm-config.7.ronn
|
348
|
+
- man/bpm-fetch.1.ronn
|
349
|
+
- man/bpm-fetched.1.ronn
|
350
|
+
- man/bpm-init.1.ronn
|
351
|
+
- man/bpm-list.1.ronn
|
352
|
+
- man/bpm-login.1.ronn
|
353
|
+
- man/bpm-new.1.ronn
|
354
|
+
- man/bpm-owner.1.ronn
|
355
|
+
- man/bpm-preview.1.ronn
|
356
|
+
- man/bpm-push.1.ronn
|
357
|
+
- man/bpm-remove.1.ronn
|
358
|
+
- man/bpm-unpack.1.ronn
|
359
|
+
- man/bpm-yank.1.ronn
|
360
|
+
- man/bpm.1.ronn
|
338
361
|
- spec/cli/add_spec.rb
|
339
|
-
- spec/cli/build_spec.rb
|
340
362
|
- spec/cli/fetch_spec.rb
|
341
363
|
- spec/cli/fetched_spec.rb
|
342
364
|
- spec/cli/init_spec.rb
|
343
365
|
- spec/cli/list_spec.rb
|
344
366
|
- spec/cli/login_spec.rb
|
345
|
-
- spec/cli/new_spec.rb
|
346
367
|
- spec/cli/owner_spec.rb
|
368
|
+
- spec/cli/pack_spec.rb
|
347
369
|
- spec/cli/push_spec.rb
|
370
|
+
- spec/cli/rebuild_spec.rb
|
348
371
|
- spec/cli/remove_spec.rb
|
349
372
|
- spec/cli/unpack_spec.rb
|
350
373
|
- spec/cli/unyank_spec.rb
|
351
374
|
- spec/cli/yank_spec.rb
|
352
375
|
- spec/credentials_spec.rb
|
353
|
-
- spec/fixtures/badrake-0.8.7.bpkg
|
354
|
-
- spec/fixtures/builder-3.0.0.bpkg
|
355
|
-
- spec/fixtures/bundler-1.1.pre.bpkg
|
356
|
-
- spec/fixtures/coffee-1.0.1.pre.bpkg
|
357
|
-
- spec/fixtures/core-test-0.4.9.bpkg
|
358
|
-
- spec/fixtures/
|
359
|
-
- spec/fixtures/
|
360
|
-
- spec/fixtures/
|
361
|
-
- spec/fixtures/
|
362
|
-
- spec/fixtures/
|
363
|
-
- spec/fixtures/
|
364
|
-
- spec/fixtures/
|
365
|
-
- spec/fixtures/
|
366
|
-
- spec/fixtures/
|
367
|
-
- spec/fixtures/
|
368
|
-
- spec/fixtures/
|
369
|
-
- spec/fixtures/
|
370
|
-
- spec/fixtures/
|
371
|
-
- spec/fixtures/
|
372
|
-
- spec/fixtures/
|
373
|
-
- spec/fixtures/
|
374
|
-
- spec/fixtures/
|
375
|
-
- spec/fixtures/
|
376
|
-
- spec/fixtures/
|
377
|
-
- spec/fixtures/
|
378
|
-
- spec/fixtures/
|
379
|
-
- spec/fixtures/
|
380
|
-
- spec/fixtures/
|
381
|
-
- spec/fixtures/
|
382
|
-
- spec/fixtures/
|
383
|
-
- spec/fixtures/
|
384
|
-
- spec/fixtures/
|
385
|
-
- spec/fixtures/
|
386
|
-
- spec/fixtures/
|
387
|
-
- spec/fixtures/
|
388
|
-
- spec/fixtures/
|
389
|
-
- spec/fixtures/
|
390
|
-
- spec/fixtures/
|
391
|
-
- spec/fixtures/
|
392
|
-
- spec/fixtures/
|
393
|
-
- spec/fixtures/
|
394
|
-
- spec/fixtures/
|
395
|
-
- spec/fixtures/
|
396
|
-
- spec/fixtures/
|
397
|
-
- spec/fixtures/
|
398
|
-
- spec/fixtures/
|
399
|
-
- spec/fixtures/
|
400
|
-
- spec/fixtures/
|
401
|
-
- spec/fixtures/
|
402
|
-
- spec/fixtures/
|
403
|
-
- spec/fixtures/
|
404
|
-
- spec/fixtures/
|
405
|
-
- spec/fixtures/
|
406
|
-
- spec/fixtures/
|
407
|
-
- spec/fixtures/
|
408
|
-
- spec/fixtures/
|
409
|
-
- spec/fixtures/
|
410
|
-
- spec/fixtures/
|
411
|
-
- spec/fixtures/
|
412
|
-
- spec/fixtures/
|
413
|
-
- spec/fixtures/
|
414
|
-
- spec/fixtures/
|
415
|
-
- spec/fixtures/
|
416
|
-
- spec/fixtures/
|
417
|
-
- spec/fixtures/
|
418
|
-
- spec/fixtures/
|
419
|
-
- spec/fixtures/
|
420
|
-
- spec/fixtures/
|
421
|
-
- spec/fixtures/
|
422
|
-
- spec/fixtures/
|
423
|
-
- spec/fixtures/
|
424
|
-
- spec/fixtures/
|
425
|
-
- spec/fixtures/
|
426
|
-
- spec/fixtures/
|
427
|
-
- spec/fixtures/
|
428
|
-
- spec/fixtures/
|
429
|
-
- spec/fixtures/
|
430
|
-
- spec/fixtures/
|
431
|
-
- spec/fixtures/
|
432
|
-
- spec/fixtures/
|
433
|
-
- spec/fixtures/
|
434
|
-
- spec/fixtures/
|
435
|
-
- spec/fixtures/
|
436
|
-
- spec/fixtures/
|
437
|
-
- spec/fixtures/
|
438
|
-
- spec/fixtures/
|
439
|
-
- spec/fixtures/
|
440
|
-
- spec/fixtures/
|
441
|
-
- spec/fixtures/
|
442
|
-
- spec/fixtures/
|
443
|
-
- spec/fixtures/
|
444
|
-
- spec/fixtures/
|
445
|
-
- spec/fixtures/
|
446
|
-
- spec/fixtures/
|
447
|
-
- spec/fixtures/
|
448
|
-
- spec/fixtures/
|
449
|
-
- spec/fixtures/
|
450
|
-
- spec/fixtures/
|
451
|
-
- spec/fixtures/
|
452
|
-
- spec/fixtures/
|
453
|
-
- spec/fixtures/
|
454
|
-
- spec/fixtures/
|
455
|
-
- spec/fixtures/
|
456
|
-
- spec/fixtures/
|
457
|
-
- spec/fixtures/
|
458
|
-
- spec/fixtures/
|
459
|
-
- spec/fixtures/
|
460
|
-
- spec/fixtures/
|
461
|
-
- spec/fixtures/
|
462
|
-
- spec/fixtures/
|
463
|
-
- spec/fixtures/
|
464
|
-
- spec/fixtures/
|
465
|
-
- spec/fixtures/
|
466
|
-
- spec/fixtures/
|
467
|
-
- spec/fixtures/
|
468
|
-
- spec/fixtures/
|
469
|
-
- spec/fixtures/
|
470
|
-
- spec/fixtures/
|
471
|
-
- spec/fixtures/
|
472
|
-
- spec/fixtures/
|
473
|
-
- spec/fixtures/
|
474
|
-
- spec/fixtures/
|
475
|
-
- spec/fixtures/
|
476
|
-
- spec/fixtures/
|
477
|
-
- spec/fixtures/
|
478
|
-
- spec/fixtures/
|
479
|
-
- spec/fixtures/
|
480
|
-
- spec/fixtures/
|
481
|
-
- spec/fixtures/
|
482
|
-
- spec/fixtures/
|
483
|
-
- spec/fixtures/
|
484
|
-
- spec/fixtures/
|
485
|
-
- spec/fixtures/
|
486
|
-
- spec/fixtures/
|
487
|
-
- spec/fixtures/
|
488
|
-
- spec/fixtures/
|
489
|
-
- spec/fixtures/
|
490
|
-
- spec/fixtures/
|
491
|
-
- spec/fixtures/
|
492
|
-
- spec/fixtures/
|
493
|
-
- spec/fixtures/
|
494
|
-
- spec/fixtures/
|
495
|
-
- spec/fixtures/
|
496
|
-
- spec/fixtures/
|
497
|
-
- spec/fixtures/
|
498
|
-
- spec/fixtures/
|
499
|
-
- spec/fixtures/
|
500
|
-
- spec/fixtures/
|
501
|
-
- spec/fixtures/
|
502
|
-
- spec/fixtures/
|
503
|
-
- spec/fixtures/
|
504
|
-
- spec/fixtures/
|
505
|
-
- spec/fixtures/
|
506
|
-
- spec/fixtures/
|
507
|
-
- spec/fixtures/
|
508
|
-
- spec/fixtures/
|
509
|
-
- spec/fixtures/
|
510
|
-
- spec/fixtures/
|
511
|
-
- spec/fixtures/
|
512
|
-
- spec/fixtures/
|
513
|
-
- spec/fixtures/
|
514
|
-
- spec/fixtures/
|
515
|
-
- spec/fixtures/
|
516
|
-
- spec/fixtures/
|
517
|
-
- spec/fixtures/
|
518
|
-
- spec/fixtures/
|
519
|
-
- spec/fixtures/
|
520
|
-
- spec/fixtures/
|
521
|
-
- spec/fixtures/
|
522
|
-
- spec/fixtures/
|
523
|
-
- spec/fixtures/
|
524
|
-
- spec/fixtures/
|
525
|
-
- spec/fixtures/
|
526
|
-
- spec/fixtures/
|
527
|
-
- spec/fixtures/
|
528
|
-
- spec/fixtures/
|
529
|
-
- spec/fixtures/
|
530
|
-
- spec/fixtures/
|
531
|
-
- spec/fixtures/
|
532
|
-
- spec/fixtures/
|
533
|
-
- spec/fixtures/
|
534
|
-
- spec/fixtures/
|
535
|
-
- spec/fixtures/
|
536
|
-
- spec/fixtures/
|
537
|
-
- spec/fixtures/
|
538
|
-
- spec/fixtures/
|
539
|
-
- spec/fixtures/
|
540
|
-
- spec/fixtures/
|
541
|
-
- spec/fixtures/
|
542
|
-
- spec/fixtures/
|
543
|
-
- spec/fixtures/
|
544
|
-
- spec/fixtures/
|
545
|
-
- spec/fixtures/
|
546
|
-
- spec/fixtures/
|
547
|
-
- spec/fixtures/
|
548
|
-
- spec/fixtures/
|
549
|
-
- spec/fixtures/
|
550
|
-
- spec/fixtures/
|
551
|
-
- spec/fixtures/
|
552
|
-
- spec/fixtures/
|
553
|
-
- spec/fixtures/
|
554
|
-
- spec/fixtures/
|
555
|
-
- spec/fixtures/
|
376
|
+
- spec/fixtures/gems/badrake-0.8.7.bpkg
|
377
|
+
- spec/fixtures/gems/builder-3.0.0.bpkg
|
378
|
+
- spec/fixtures/gems/bundler-1.1.pre.bpkg
|
379
|
+
- spec/fixtures/gems/coffee-1.0.1.pre.bpkg
|
380
|
+
- spec/fixtures/gems/core-test-0.4.9.bpkg
|
381
|
+
- spec/fixtures/gems/custom_generator-1.0.bpkg
|
382
|
+
- spec/fixtures/gems/highline-1.6.1.bpkg
|
383
|
+
- spec/fixtures/gems/ivory-0.0.1.bpkg
|
384
|
+
- spec/fixtures/gems/jquery-1.4.3.bpkg
|
385
|
+
- spec/fixtures/gems/optparse-1.0.1.bpkg
|
386
|
+
- spec/fixtures/gems/rake-0.8.6.bpkg
|
387
|
+
- spec/fixtures/gems/rake-0.8.7.bpkg
|
388
|
+
- spec/fixtures/gems/spade-0.5.0.bpkg
|
389
|
+
- spec/fixtures/gems/uglify-js-1.0.4.bpkg
|
390
|
+
- spec/fixtures/packages/README.txt
|
391
|
+
- spec/fixtures/packages/bundler-1.1.pre/.gitignore
|
392
|
+
- spec/fixtures/packages/bundler-1.1.pre/CHANGELOG.md
|
393
|
+
- spec/fixtures/packages/bundler-1.1.pre/ISSUES.md
|
394
|
+
- spec/fixtures/packages/bundler-1.1.pre/LICENSE
|
395
|
+
- spec/fixtures/packages/bundler-1.1.pre/README.md
|
396
|
+
- spec/fixtures/packages/bundler-1.1.pre/UPGRADING.md
|
397
|
+
- spec/fixtures/packages/bundler-1.1.pre/bin/bundle
|
398
|
+
- spec/fixtures/packages/bundler-1.1.pre/lib/bundler.js
|
399
|
+
- spec/fixtures/packages/bundler-1.1.pre/lib/bundler/definition.js
|
400
|
+
- spec/fixtures/packages/bundler-1.1.pre/lib/bundler/dependency.js
|
401
|
+
- spec/fixtures/packages/bundler-1.1.pre/lib/bundler/dsl.js
|
402
|
+
- spec/fixtures/packages/bundler-1.1.pre/lib/bundler/ui.js
|
403
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/bundle-config.ronn
|
404
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/bundle-exec.ronn
|
405
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/bundle-install.ronn
|
406
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/bundle-package.ronn
|
407
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/bundle-update.ronn
|
408
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/bundle.ronn
|
409
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/gemfile.5.ronn
|
410
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/index.txt
|
411
|
+
- spec/fixtures/packages/bundler-1.1.pre/package.json
|
412
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/bin/cake
|
413
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/bin/coffee
|
414
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/lib/coffee.js
|
415
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/lib/coffee/base.js
|
416
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/lib/coffee/mocha/chai.js
|
417
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/package.json
|
418
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/qunit/coffee/test.js
|
419
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/qunit/test.js
|
420
|
+
- spec/fixtures/packages/core-test/bin/cot
|
421
|
+
- spec/fixtures/packages/core-test/extras/extra_file.html
|
422
|
+
- spec/fixtures/packages/core-test/index.html
|
423
|
+
- spec/fixtures/packages/core-test/lib/main.js
|
424
|
+
- spec/fixtures/packages/core-test/package.json
|
425
|
+
- spec/fixtures/packages/core-test/resources/runner.css
|
426
|
+
- spec/fixtures/packages/core-test/tests/test.js
|
427
|
+
- spec/fixtures/packages/custom_generator/lib/main.js
|
428
|
+
- spec/fixtures/packages/custom_generator/package.json
|
429
|
+
- spec/fixtures/packages/custom_generator/templates/init/project.json
|
430
|
+
- spec/fixtures/packages/custom_generator/templates/project/app.js
|
431
|
+
- spec/fixtures/packages/custom_generator/templates/project/lib/main.js
|
432
|
+
- spec/fixtures/packages/custom_generator/templates/project_generator.rb
|
433
|
+
- spec/fixtures/packages/invalid_json/package.json
|
434
|
+
- spec/fixtures/packages/jquery/lib/main.js
|
435
|
+
- spec/fixtures/packages/jquery/package.json
|
436
|
+
- spec/fixtures/packages/rake-0.8.6/CHANGES
|
437
|
+
- spec/fixtures/packages/rake-0.8.6/MIT-LICENSE
|
438
|
+
- spec/fixtures/packages/rake-0.8.6/README
|
439
|
+
- spec/fixtures/packages/rake-0.8.6/Rakefile
|
440
|
+
- spec/fixtures/packages/rake-0.8.6/TODO
|
441
|
+
- spec/fixtures/packages/rake-0.8.6/bin/rake
|
442
|
+
- spec/fixtures/packages/rake-0.8.6/doc/command_line_usage.rdoc
|
443
|
+
- spec/fixtures/packages/rake-0.8.6/doc/example/Rakefile1
|
444
|
+
- spec/fixtures/packages/rake-0.8.6/doc/example/Rakefile2
|
445
|
+
- spec/fixtures/packages/rake-0.8.6/doc/example/a.c
|
446
|
+
- spec/fixtures/packages/rake-0.8.6/doc/example/b.c
|
447
|
+
- spec/fixtures/packages/rake-0.8.6/doc/example/main.c
|
448
|
+
- spec/fixtures/packages/rake-0.8.6/doc/glossary.rdoc
|
449
|
+
- spec/fixtures/packages/rake-0.8.6/doc/jamis.rb
|
450
|
+
- spec/fixtures/packages/rake-0.8.6/doc/proto_rake.rdoc
|
451
|
+
- spec/fixtures/packages/rake-0.8.6/doc/rake.1.gz
|
452
|
+
- spec/fixtures/packages/rake-0.8.6/doc/rakefile.rdoc
|
453
|
+
- spec/fixtures/packages/rake-0.8.6/doc/rational.rdoc
|
454
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.4.14.rdoc
|
455
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.4.15.rdoc
|
456
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.5.0.rdoc
|
457
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.5.3.rdoc
|
458
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.5.4.rdoc
|
459
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.6.0.rdoc
|
460
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.7.0.rdoc
|
461
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.7.1.rdoc
|
462
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.7.2.rdoc
|
463
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.7.3.rdoc
|
464
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.8.0.rdoc
|
465
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.8.2.rdoc
|
466
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.8.3.rdoc
|
467
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.8.4.rdoc
|
468
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.8.5.rdoc
|
469
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.8.6.rdoc
|
470
|
+
- spec/fixtures/packages/rake-0.8.6/install.rb
|
471
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake.rb
|
472
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/alt_system.rb
|
473
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/classic_namespace.rb
|
474
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/clean.rb
|
475
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/contrib/compositepublisher.rb
|
476
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/contrib/ftptools.rb
|
477
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/contrib/publisher.rb
|
478
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/contrib/rubyforgepublisher.rb
|
479
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/contrib/sshpublisher.rb
|
480
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/contrib/sys.rb
|
481
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/gempackagetask.rb
|
482
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/loaders/makefile.rb
|
483
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/packagetask.rb
|
484
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/rake_test_loader.rb
|
485
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/rdoctask.rb
|
486
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/ruby182_test_unit_fix.rb
|
487
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/runtest.rb
|
488
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/tasklib.rb
|
489
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/testtask.rb
|
490
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/win32.rb
|
491
|
+
- spec/fixtures/packages/rake-0.8.6/package.json
|
492
|
+
- spec/fixtures/packages/rake-0.8.6/test/capture_stdout.rb
|
493
|
+
- spec/fixtures/packages/rake-0.8.7/CHANGES
|
494
|
+
- spec/fixtures/packages/rake-0.8.7/MIT-LICENSE
|
495
|
+
- spec/fixtures/packages/rake-0.8.7/README
|
496
|
+
- spec/fixtures/packages/rake-0.8.7/Rakefile
|
497
|
+
- spec/fixtures/packages/rake-0.8.7/TODO
|
498
|
+
- spec/fixtures/packages/rake-0.8.7/bin/rake
|
499
|
+
- spec/fixtures/packages/rake-0.8.7/doc/command_line_usage.rdoc
|
500
|
+
- spec/fixtures/packages/rake-0.8.7/doc/example/Rakefile1
|
501
|
+
- spec/fixtures/packages/rake-0.8.7/doc/example/Rakefile2
|
502
|
+
- spec/fixtures/packages/rake-0.8.7/doc/example/a.c
|
503
|
+
- spec/fixtures/packages/rake-0.8.7/doc/example/b.c
|
504
|
+
- spec/fixtures/packages/rake-0.8.7/doc/example/main.c
|
505
|
+
- spec/fixtures/packages/rake-0.8.7/doc/glossary.rdoc
|
506
|
+
- spec/fixtures/packages/rake-0.8.7/doc/jamis.rb
|
507
|
+
- spec/fixtures/packages/rake-0.8.7/doc/proto_rake.rdoc
|
508
|
+
- spec/fixtures/packages/rake-0.8.7/doc/rake.1.gz
|
509
|
+
- spec/fixtures/packages/rake-0.8.7/doc/rakefile.rdoc
|
510
|
+
- spec/fixtures/packages/rake-0.8.7/doc/rational.rdoc
|
511
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.4.14.rdoc
|
512
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.4.15.rdoc
|
513
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.5.0.rdoc
|
514
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.5.3.rdoc
|
515
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.5.4.rdoc
|
516
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.6.0.rdoc
|
517
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.7.0.rdoc
|
518
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.7.1.rdoc
|
519
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.7.2.rdoc
|
520
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.7.3.rdoc
|
521
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.8.0.rdoc
|
522
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.8.2.rdoc
|
523
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.8.3.rdoc
|
524
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.8.4.rdoc
|
525
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.8.5.rdoc
|
526
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.8.6.rdoc
|
527
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.8.7.rdoc
|
528
|
+
- spec/fixtures/packages/rake-0.8.7/install.rb
|
529
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake.rb
|
530
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/alt_system.rb
|
531
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/classic_namespace.rb
|
532
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/clean.rb
|
533
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/contrib/compositepublisher.rb
|
534
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/contrib/ftptools.rb
|
535
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/contrib/publisher.rb
|
536
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/contrib/rubyforgepublisher.rb
|
537
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/contrib/sshpublisher.rb
|
538
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/contrib/sys.rb
|
539
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/gempackagetask.rb
|
540
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/loaders/makefile.rb
|
541
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/packagetask.rb
|
542
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/rake_test_loader.rb
|
543
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/rdoctask.rb
|
544
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/ruby182_test_unit_fix.rb
|
545
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/runtest.rb
|
546
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/tasklib.rb
|
547
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/testtask.rb
|
548
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/win32.rb
|
549
|
+
- spec/fixtures/packages/rake-0.8.7/package.json
|
550
|
+
- spec/fixtures/packages/rake-0.8.7/test/capture_stdout.rb
|
551
|
+
- spec/fixtures/packages/spade/lib/main.js
|
552
|
+
- spec/fixtures/packages/spade/package.json
|
553
|
+
- spec/fixtures/packages/uglify-js/README.html
|
554
|
+
- spec/fixtures/packages/uglify-js/README.org
|
555
|
+
- spec/fixtures/packages/uglify-js/bin/uglifyjs
|
556
|
+
- spec/fixtures/packages/uglify-js/docstyle.css
|
557
|
+
- spec/fixtures/packages/uglify-js/lib/parse-js.js
|
558
|
+
- spec/fixtures/packages/uglify-js/lib/process.js
|
559
|
+
- spec/fixtures/packages/uglify-js/lib/squeeze-more.js
|
560
|
+
- spec/fixtures/packages/uglify-js/package.json
|
561
|
+
- spec/fixtures/packages/uglify-js/plugins/minifier.js
|
562
|
+
- spec/fixtures/packages/uglify-js/uglify-js.js
|
563
|
+
- spec/fixtures/projects/custom_name/MyProject.json
|
564
|
+
- spec/fixtures/projects/hello2/LICENSE
|
565
|
+
- spec/fixtures/projects/hello2/README.md
|
566
|
+
- spec/fixtures/projects/hello2/app.js
|
567
|
+
- spec/fixtures/projects/hello2/assets/bpm_packages.js
|
568
|
+
- spec/fixtures/projects/hello2/assets/bpm_styles.css
|
569
|
+
- spec/fixtures/projects/hello2/hello2.json
|
570
|
+
- spec/fixtures/projects/hello2/index.html
|
571
|
+
- spec/fixtures/projects/hello2/packages/a/lib/main.js
|
572
|
+
- spec/fixtures/projects/hello2/packages/a/package.json
|
573
|
+
- spec/fixtures/projects/hello2/packages/b/lib/main.js
|
574
|
+
- spec/fixtures/projects/hello2/packages/b/package.json
|
575
|
+
- spec/fixtures/projects/hello2/packages/c/lib/main.js
|
576
|
+
- spec/fixtures/projects/hello2/packages/c/package.json
|
577
|
+
- spec/fixtures/projects/hello_dev/LICENSE
|
578
|
+
- spec/fixtures/projects/hello_dev/README.md
|
579
|
+
- spec/fixtures/projects/hello_dev/app/main.js
|
580
|
+
- spec/fixtures/projects/hello_dev/assets/bpm_libs.js
|
581
|
+
- spec/fixtures/projects/hello_dev/assets/bpm_styles.css
|
582
|
+
- spec/fixtures/projects/hello_dev/css/main.css
|
583
|
+
- spec/fixtures/projects/hello_dev/hello_dev.json
|
584
|
+
- spec/fixtures/projects/hello_dev/index.html
|
585
|
+
- spec/fixtures/projects/hello_dev/packages/style_package/css/some_style.css
|
586
|
+
- spec/fixtures/projects/hello_dev/packages/style_package/package.json
|
587
|
+
- spec/fixtures/projects/hello_world/LICENSE
|
588
|
+
- spec/fixtures/projects/hello_world/README.md
|
589
|
+
- spec/fixtures/projects/hello_world/assets/bpm_packages.js
|
590
|
+
- spec/fixtures/projects/hello_world/assets/bpm_styles.css
|
591
|
+
- spec/fixtures/projects/hello_world/assets/papa-smurf.jpg
|
592
|
+
- spec/fixtures/projects/hello_world/css/dummy.css
|
593
|
+
- spec/fixtures/projects/hello_world/custom_dir/custom.js
|
594
|
+
- spec/fixtures/projects/hello_world/hello_world.json
|
595
|
+
- spec/fixtures/projects/hello_world/lib/another.js
|
596
|
+
- spec/fixtures/projects/hello_world/lib/main.js
|
597
|
+
- spec/fixtures/projects/hello_world/packages/custom_package/assets/dummy.txt
|
598
|
+
- spec/fixtures/projects/hello_world/packages/custom_package/css/sample_styles.css
|
599
|
+
- spec/fixtures/projects/hello_world/packages/custom_package/custom_dir/basic-module.js
|
600
|
+
- spec/fixtures/projects/hello_world/packages/custom_package/lib/main.js
|
601
|
+
- spec/fixtures/projects/hello_world/packages/custom_package/package.json
|
602
|
+
- spec/fixtures/projects/hello_world/tests/main-test.js
|
603
|
+
- spec/fixtures/projects/hello_world/vendor/lib/something.js
|
604
|
+
- spec/fixtures/projects/init_app/assets/bpm_libs.js
|
605
|
+
- spec/fixtures/projects/init_app/assets/bpm_styles.css
|
606
|
+
- spec/fixtures/projects/init_app/assets/new_project/bpm_libs.js
|
607
|
+
- spec/fixtures/projects/init_app/assets/new_project/bpm_styles.css
|
608
|
+
- spec/fixtures/projects/init_app/new_project.json
|
609
|
+
- spec/fixtures/projects/init_default/assets/bpm_libs.js
|
610
|
+
- spec/fixtures/projects/init_default/assets/bpm_styles.css
|
611
|
+
- spec/fixtures/projects/init_default/new_project.json
|
612
|
+
- spec/fixtures/projects/minitest/assets/bpm_packages.js
|
613
|
+
- spec/fixtures/projects/minitest/assets/bpm_styles.css
|
614
|
+
- spec/fixtures/projects/minitest/assets/minitest/app_package.js
|
615
|
+
- spec/fixtures/projects/minitest/lib/main.js
|
616
|
+
- spec/fixtures/projects/minitest/minitest.json
|
617
|
+
- spec/fixtures/projects/minitest/packages/uglyduck/lib/main.js
|
618
|
+
- spec/fixtures/projects/minitest/packages/uglyduck/minifier/main.js
|
619
|
+
- spec/fixtures/projects/minitest/packages/uglyduck/package.json
|
620
|
+
- spec/fixtures/projects/needs_rake/needs_rake.json
|
621
|
+
- spec/fixtures/projects/simple_hello/assets/bpm_libs.js
|
622
|
+
- spec/fixtures/projects/simple_hello/lib/main.js
|
623
|
+
- spec/fixtures/projects/transporter/lib/main.js
|
624
|
+
- spec/fixtures/projects/transporter/packages/transport/lib/main.js
|
625
|
+
- spec/fixtures/projects/transporter/packages/transport/package.json
|
626
|
+
- spec/fixtures/projects/transporter/packages/transport/transports/wrapper.js
|
627
|
+
- spec/fixtures/projects/transporter/transporter.json
|
556
628
|
- spec/gauntlet_spec.rb
|
557
629
|
- spec/package_spec.rb
|
558
630
|
- spec/pipeline_spec.rb
|
@@ -568,14 +640,13 @@ files:
|
|
568
640
|
- spec/support/matchers.rb
|
569
641
|
- spec/support/path.rb
|
570
642
|
- spec/support/project.rb
|
571
|
-
- templates/init/assets/bpm_packages.js
|
572
|
-
- templates/init/assets/bpm_styles.css
|
573
643
|
- templates/init/project.json
|
574
644
|
- templates/project/LICENSE
|
575
645
|
- templates/project/README.md
|
576
|
-
- templates/project/app.js
|
646
|
+
- templates/project/app/main.js
|
647
|
+
- templates/project/css/main.css
|
577
648
|
- templates/project/index.html
|
578
|
-
homepage: http://github.com/
|
649
|
+
homepage: http://github.com/getbpm/bpm
|
579
650
|
licenses: []
|
580
651
|
post_install_message:
|
581
652
|
rdoc_options: []
|
@@ -590,234 +661,283 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
590
661
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
591
662
|
none: false
|
592
663
|
requirements:
|
593
|
-
- - ! '
|
664
|
+
- - ! '>'
|
594
665
|
- !ruby/object:Gem::Version
|
595
|
-
version:
|
666
|
+
version: 1.3.1
|
596
667
|
requirements: []
|
597
668
|
rubyforge_project:
|
598
669
|
rubygems_version: 1.8.5
|
599
670
|
signing_key:
|
600
671
|
specification_version: 3
|
601
|
-
summary: Package Manager
|
672
|
+
summary: Browser Package Manager
|
602
673
|
test_files:
|
603
674
|
- spec/cli/add_spec.rb
|
604
|
-
- spec/cli/build_spec.rb
|
605
675
|
- spec/cli/fetch_spec.rb
|
606
676
|
- spec/cli/fetched_spec.rb
|
607
677
|
- spec/cli/init_spec.rb
|
608
678
|
- spec/cli/list_spec.rb
|
609
679
|
- spec/cli/login_spec.rb
|
610
|
-
- spec/cli/new_spec.rb
|
611
680
|
- spec/cli/owner_spec.rb
|
681
|
+
- spec/cli/pack_spec.rb
|
612
682
|
- spec/cli/push_spec.rb
|
683
|
+
- spec/cli/rebuild_spec.rb
|
613
684
|
- spec/cli/remove_spec.rb
|
614
685
|
- spec/cli/unpack_spec.rb
|
615
686
|
- spec/cli/unyank_spec.rb
|
616
687
|
- spec/cli/yank_spec.rb
|
617
688
|
- spec/credentials_spec.rb
|
618
|
-
- spec/fixtures/badrake-0.8.7.bpkg
|
619
|
-
- spec/fixtures/builder-3.0.0.bpkg
|
620
|
-
- spec/fixtures/bundler-1.1.pre.bpkg
|
621
|
-
- spec/fixtures/coffee-1.0.1.pre.bpkg
|
622
|
-
- spec/fixtures/core-test-0.4.9.bpkg
|
623
|
-
- spec/fixtures/
|
624
|
-
- spec/fixtures/
|
625
|
-
- spec/fixtures/
|
626
|
-
- spec/fixtures/
|
627
|
-
- spec/fixtures/
|
628
|
-
- spec/fixtures/
|
629
|
-
- spec/fixtures/
|
630
|
-
- spec/fixtures/
|
631
|
-
- spec/fixtures/
|
632
|
-
- spec/fixtures/
|
633
|
-
- spec/fixtures/
|
634
|
-
- spec/fixtures/
|
635
|
-
- spec/fixtures/
|
636
|
-
- spec/fixtures/
|
637
|
-
- spec/fixtures/
|
638
|
-
- spec/fixtures/
|
639
|
-
- spec/fixtures/
|
640
|
-
- spec/fixtures/
|
641
|
-
- spec/fixtures/
|
642
|
-
- spec/fixtures/
|
643
|
-
- spec/fixtures/
|
644
|
-
- spec/fixtures/
|
645
|
-
- spec/fixtures/
|
646
|
-
- spec/fixtures/
|
647
|
-
- spec/fixtures/
|
648
|
-
- spec/fixtures/
|
649
|
-
- spec/fixtures/
|
650
|
-
- spec/fixtures/
|
651
|
-
- spec/fixtures/
|
652
|
-
- spec/fixtures/
|
653
|
-
- spec/fixtures/
|
654
|
-
- spec/fixtures/
|
655
|
-
- spec/fixtures/
|
656
|
-
- spec/fixtures/
|
657
|
-
- spec/fixtures/
|
658
|
-
- spec/fixtures/
|
659
|
-
- spec/fixtures/
|
660
|
-
- spec/fixtures/
|
661
|
-
- spec/fixtures/
|
662
|
-
- spec/fixtures/
|
663
|
-
- spec/fixtures/
|
664
|
-
- spec/fixtures/
|
665
|
-
- spec/fixtures/
|
666
|
-
- spec/fixtures/
|
667
|
-
- spec/fixtures/
|
668
|
-
- spec/fixtures/
|
669
|
-
- spec/fixtures/
|
670
|
-
- spec/fixtures/
|
671
|
-
- spec/fixtures/
|
672
|
-
- spec/fixtures/
|
673
|
-
- spec/fixtures/
|
674
|
-
- spec/fixtures/
|
675
|
-
- spec/fixtures/
|
676
|
-
- spec/fixtures/
|
677
|
-
- spec/fixtures/
|
678
|
-
- spec/fixtures/
|
679
|
-
- spec/fixtures/
|
680
|
-
- spec/fixtures/
|
681
|
-
- spec/fixtures/
|
682
|
-
- spec/fixtures/
|
683
|
-
- spec/fixtures/
|
684
|
-
- spec/fixtures/
|
685
|
-
- spec/fixtures/
|
686
|
-
- spec/fixtures/
|
687
|
-
- spec/fixtures/
|
688
|
-
- spec/fixtures/
|
689
|
-
- spec/fixtures/
|
690
|
-
- spec/fixtures/
|
691
|
-
- spec/fixtures/
|
692
|
-
- spec/fixtures/
|
693
|
-
- spec/fixtures/
|
694
|
-
- spec/fixtures/
|
695
|
-
- spec/fixtures/
|
696
|
-
- spec/fixtures/
|
697
|
-
- spec/fixtures/
|
698
|
-
- spec/fixtures/
|
699
|
-
- spec/fixtures/
|
700
|
-
- spec/fixtures/
|
701
|
-
- spec/fixtures/
|
702
|
-
- spec/fixtures/
|
703
|
-
- spec/fixtures/
|
704
|
-
- spec/fixtures/
|
705
|
-
- spec/fixtures/
|
706
|
-
- spec/fixtures/
|
707
|
-
- spec/fixtures/
|
708
|
-
- spec/fixtures/
|
709
|
-
- spec/fixtures/
|
710
|
-
- spec/fixtures/
|
711
|
-
- spec/fixtures/
|
712
|
-
- spec/fixtures/
|
713
|
-
- spec/fixtures/
|
714
|
-
- spec/fixtures/
|
715
|
-
- spec/fixtures/
|
716
|
-
- spec/fixtures/
|
717
|
-
- spec/fixtures/
|
718
|
-
- spec/fixtures/
|
719
|
-
- spec/fixtures/
|
720
|
-
- spec/fixtures/
|
721
|
-
- spec/fixtures/
|
722
|
-
- spec/fixtures/
|
723
|
-
- spec/fixtures/
|
724
|
-
- spec/fixtures/
|
725
|
-
- spec/fixtures/
|
726
|
-
- spec/fixtures/
|
727
|
-
- spec/fixtures/
|
728
|
-
- spec/fixtures/
|
729
|
-
- spec/fixtures/
|
730
|
-
- spec/fixtures/
|
731
|
-
- spec/fixtures/
|
732
|
-
- spec/fixtures/
|
733
|
-
- spec/fixtures/
|
734
|
-
- spec/fixtures/
|
735
|
-
- spec/fixtures/
|
736
|
-
- spec/fixtures/
|
737
|
-
- spec/fixtures/
|
738
|
-
- spec/fixtures/
|
739
|
-
- spec/fixtures/
|
740
|
-
- spec/fixtures/
|
741
|
-
- spec/fixtures/
|
742
|
-
- spec/fixtures/
|
743
|
-
- spec/fixtures/
|
744
|
-
- spec/fixtures/
|
745
|
-
- spec/fixtures/
|
746
|
-
- spec/fixtures/
|
747
|
-
- spec/fixtures/
|
748
|
-
- spec/fixtures/
|
749
|
-
- spec/fixtures/
|
750
|
-
- spec/fixtures/
|
751
|
-
- spec/fixtures/
|
752
|
-
- spec/fixtures/
|
753
|
-
- spec/fixtures/
|
754
|
-
- spec/fixtures/
|
755
|
-
- spec/fixtures/
|
756
|
-
- spec/fixtures/
|
757
|
-
- spec/fixtures/
|
758
|
-
- spec/fixtures/
|
759
|
-
- spec/fixtures/
|
760
|
-
- spec/fixtures/
|
761
|
-
- spec/fixtures/
|
762
|
-
- spec/fixtures/
|
763
|
-
- spec/fixtures/
|
764
|
-
- spec/fixtures/
|
765
|
-
- spec/fixtures/
|
766
|
-
- spec/fixtures/
|
767
|
-
- spec/fixtures/
|
768
|
-
- spec/fixtures/
|
769
|
-
- spec/fixtures/
|
770
|
-
- spec/fixtures/
|
771
|
-
- spec/fixtures/
|
772
|
-
- spec/fixtures/
|
773
|
-
- spec/fixtures/
|
774
|
-
- spec/fixtures/
|
775
|
-
- spec/fixtures/
|
776
|
-
- spec/fixtures/
|
777
|
-
- spec/fixtures/
|
778
|
-
- spec/fixtures/
|
779
|
-
- spec/fixtures/
|
780
|
-
- spec/fixtures/
|
781
|
-
- spec/fixtures/
|
782
|
-
- spec/fixtures/
|
783
|
-
- spec/fixtures/
|
784
|
-
- spec/fixtures/
|
785
|
-
- spec/fixtures/
|
786
|
-
- spec/fixtures/
|
787
|
-
- spec/fixtures/
|
788
|
-
- spec/fixtures/
|
789
|
-
- spec/fixtures/
|
790
|
-
- spec/fixtures/
|
791
|
-
- spec/fixtures/
|
792
|
-
- spec/fixtures/
|
793
|
-
- spec/fixtures/
|
794
|
-
- spec/fixtures/
|
795
|
-
- spec/fixtures/
|
796
|
-
- spec/fixtures/
|
797
|
-
- spec/fixtures/
|
798
|
-
- spec/fixtures/
|
799
|
-
- spec/fixtures/
|
800
|
-
- spec/fixtures/
|
801
|
-
- spec/fixtures/
|
802
|
-
- spec/fixtures/
|
803
|
-
- spec/fixtures/
|
804
|
-
- spec/fixtures/
|
805
|
-
- spec/fixtures/
|
806
|
-
- spec/fixtures/
|
807
|
-
- spec/fixtures/
|
808
|
-
- spec/fixtures/
|
809
|
-
- spec/fixtures/
|
810
|
-
- spec/fixtures/
|
811
|
-
- spec/fixtures/
|
812
|
-
- spec/fixtures/
|
813
|
-
- spec/fixtures/
|
814
|
-
- spec/fixtures/
|
815
|
-
- spec/fixtures/
|
816
|
-
- spec/fixtures/
|
817
|
-
- spec/fixtures/
|
818
|
-
- spec/fixtures/
|
819
|
-
- spec/fixtures/
|
820
|
-
- spec/fixtures/
|
689
|
+
- spec/fixtures/gems/badrake-0.8.7.bpkg
|
690
|
+
- spec/fixtures/gems/builder-3.0.0.bpkg
|
691
|
+
- spec/fixtures/gems/bundler-1.1.pre.bpkg
|
692
|
+
- spec/fixtures/gems/coffee-1.0.1.pre.bpkg
|
693
|
+
- spec/fixtures/gems/core-test-0.4.9.bpkg
|
694
|
+
- spec/fixtures/gems/custom_generator-1.0.bpkg
|
695
|
+
- spec/fixtures/gems/highline-1.6.1.bpkg
|
696
|
+
- spec/fixtures/gems/ivory-0.0.1.bpkg
|
697
|
+
- spec/fixtures/gems/jquery-1.4.3.bpkg
|
698
|
+
- spec/fixtures/gems/optparse-1.0.1.bpkg
|
699
|
+
- spec/fixtures/gems/rake-0.8.6.bpkg
|
700
|
+
- spec/fixtures/gems/rake-0.8.7.bpkg
|
701
|
+
- spec/fixtures/gems/spade-0.5.0.bpkg
|
702
|
+
- spec/fixtures/gems/uglify-js-1.0.4.bpkg
|
703
|
+
- spec/fixtures/packages/README.txt
|
704
|
+
- spec/fixtures/packages/bundler-1.1.pre/.gitignore
|
705
|
+
- spec/fixtures/packages/bundler-1.1.pre/CHANGELOG.md
|
706
|
+
- spec/fixtures/packages/bundler-1.1.pre/ISSUES.md
|
707
|
+
- spec/fixtures/packages/bundler-1.1.pre/LICENSE
|
708
|
+
- spec/fixtures/packages/bundler-1.1.pre/README.md
|
709
|
+
- spec/fixtures/packages/bundler-1.1.pre/UPGRADING.md
|
710
|
+
- spec/fixtures/packages/bundler-1.1.pre/bin/bundle
|
711
|
+
- spec/fixtures/packages/bundler-1.1.pre/lib/bundler.js
|
712
|
+
- spec/fixtures/packages/bundler-1.1.pre/lib/bundler/definition.js
|
713
|
+
- spec/fixtures/packages/bundler-1.1.pre/lib/bundler/dependency.js
|
714
|
+
- spec/fixtures/packages/bundler-1.1.pre/lib/bundler/dsl.js
|
715
|
+
- spec/fixtures/packages/bundler-1.1.pre/lib/bundler/ui.js
|
716
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/bundle-config.ronn
|
717
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/bundle-exec.ronn
|
718
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/bundle-install.ronn
|
719
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/bundle-package.ronn
|
720
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/bundle-update.ronn
|
721
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/bundle.ronn
|
722
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/gemfile.5.ronn
|
723
|
+
- spec/fixtures/packages/bundler-1.1.pre/man/index.txt
|
724
|
+
- spec/fixtures/packages/bundler-1.1.pre/package.json
|
725
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/bin/cake
|
726
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/bin/coffee
|
727
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/lib/coffee.js
|
728
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/lib/coffee/base.js
|
729
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/lib/coffee/mocha/chai.js
|
730
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/package.json
|
731
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/qunit/coffee/test.js
|
732
|
+
- spec/fixtures/packages/coffee-1.0.1.pre/qunit/test.js
|
733
|
+
- spec/fixtures/packages/core-test/bin/cot
|
734
|
+
- spec/fixtures/packages/core-test/extras/extra_file.html
|
735
|
+
- spec/fixtures/packages/core-test/index.html
|
736
|
+
- spec/fixtures/packages/core-test/lib/main.js
|
737
|
+
- spec/fixtures/packages/core-test/package.json
|
738
|
+
- spec/fixtures/packages/core-test/resources/runner.css
|
739
|
+
- spec/fixtures/packages/core-test/tests/test.js
|
740
|
+
- spec/fixtures/packages/custom_generator/lib/main.js
|
741
|
+
- spec/fixtures/packages/custom_generator/package.json
|
742
|
+
- spec/fixtures/packages/custom_generator/templates/init/project.json
|
743
|
+
- spec/fixtures/packages/custom_generator/templates/project/app.js
|
744
|
+
- spec/fixtures/packages/custom_generator/templates/project/lib/main.js
|
745
|
+
- spec/fixtures/packages/custom_generator/templates/project_generator.rb
|
746
|
+
- spec/fixtures/packages/invalid_json/package.json
|
747
|
+
- spec/fixtures/packages/jquery/lib/main.js
|
748
|
+
- spec/fixtures/packages/jquery/package.json
|
749
|
+
- spec/fixtures/packages/rake-0.8.6/CHANGES
|
750
|
+
- spec/fixtures/packages/rake-0.8.6/MIT-LICENSE
|
751
|
+
- spec/fixtures/packages/rake-0.8.6/README
|
752
|
+
- spec/fixtures/packages/rake-0.8.6/Rakefile
|
753
|
+
- spec/fixtures/packages/rake-0.8.6/TODO
|
754
|
+
- spec/fixtures/packages/rake-0.8.6/bin/rake
|
755
|
+
- spec/fixtures/packages/rake-0.8.6/doc/command_line_usage.rdoc
|
756
|
+
- spec/fixtures/packages/rake-0.8.6/doc/example/Rakefile1
|
757
|
+
- spec/fixtures/packages/rake-0.8.6/doc/example/Rakefile2
|
758
|
+
- spec/fixtures/packages/rake-0.8.6/doc/example/a.c
|
759
|
+
- spec/fixtures/packages/rake-0.8.6/doc/example/b.c
|
760
|
+
- spec/fixtures/packages/rake-0.8.6/doc/example/main.c
|
761
|
+
- spec/fixtures/packages/rake-0.8.6/doc/glossary.rdoc
|
762
|
+
- spec/fixtures/packages/rake-0.8.6/doc/jamis.rb
|
763
|
+
- spec/fixtures/packages/rake-0.8.6/doc/proto_rake.rdoc
|
764
|
+
- spec/fixtures/packages/rake-0.8.6/doc/rake.1.gz
|
765
|
+
- spec/fixtures/packages/rake-0.8.6/doc/rakefile.rdoc
|
766
|
+
- spec/fixtures/packages/rake-0.8.6/doc/rational.rdoc
|
767
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.4.14.rdoc
|
768
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.4.15.rdoc
|
769
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.5.0.rdoc
|
770
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.5.3.rdoc
|
771
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.5.4.rdoc
|
772
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.6.0.rdoc
|
773
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.7.0.rdoc
|
774
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.7.1.rdoc
|
775
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.7.2.rdoc
|
776
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.7.3.rdoc
|
777
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.8.0.rdoc
|
778
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.8.2.rdoc
|
779
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.8.3.rdoc
|
780
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.8.4.rdoc
|
781
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.8.5.rdoc
|
782
|
+
- spec/fixtures/packages/rake-0.8.6/doc/release_notes/rake-0.8.6.rdoc
|
783
|
+
- spec/fixtures/packages/rake-0.8.6/install.rb
|
784
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake.rb
|
785
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/alt_system.rb
|
786
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/classic_namespace.rb
|
787
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/clean.rb
|
788
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/contrib/compositepublisher.rb
|
789
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/contrib/ftptools.rb
|
790
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/contrib/publisher.rb
|
791
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/contrib/rubyforgepublisher.rb
|
792
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/contrib/sshpublisher.rb
|
793
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/contrib/sys.rb
|
794
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/gempackagetask.rb
|
795
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/loaders/makefile.rb
|
796
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/packagetask.rb
|
797
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/rake_test_loader.rb
|
798
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/rdoctask.rb
|
799
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/ruby182_test_unit_fix.rb
|
800
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/runtest.rb
|
801
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/tasklib.rb
|
802
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/testtask.rb
|
803
|
+
- spec/fixtures/packages/rake-0.8.6/lib/rake/win32.rb
|
804
|
+
- spec/fixtures/packages/rake-0.8.6/package.json
|
805
|
+
- spec/fixtures/packages/rake-0.8.6/test/capture_stdout.rb
|
806
|
+
- spec/fixtures/packages/rake-0.8.7/CHANGES
|
807
|
+
- spec/fixtures/packages/rake-0.8.7/MIT-LICENSE
|
808
|
+
- spec/fixtures/packages/rake-0.8.7/README
|
809
|
+
- spec/fixtures/packages/rake-0.8.7/Rakefile
|
810
|
+
- spec/fixtures/packages/rake-0.8.7/TODO
|
811
|
+
- spec/fixtures/packages/rake-0.8.7/bin/rake
|
812
|
+
- spec/fixtures/packages/rake-0.8.7/doc/command_line_usage.rdoc
|
813
|
+
- spec/fixtures/packages/rake-0.8.7/doc/example/Rakefile1
|
814
|
+
- spec/fixtures/packages/rake-0.8.7/doc/example/Rakefile2
|
815
|
+
- spec/fixtures/packages/rake-0.8.7/doc/example/a.c
|
816
|
+
- spec/fixtures/packages/rake-0.8.7/doc/example/b.c
|
817
|
+
- spec/fixtures/packages/rake-0.8.7/doc/example/main.c
|
818
|
+
- spec/fixtures/packages/rake-0.8.7/doc/glossary.rdoc
|
819
|
+
- spec/fixtures/packages/rake-0.8.7/doc/jamis.rb
|
820
|
+
- spec/fixtures/packages/rake-0.8.7/doc/proto_rake.rdoc
|
821
|
+
- spec/fixtures/packages/rake-0.8.7/doc/rake.1.gz
|
822
|
+
- spec/fixtures/packages/rake-0.8.7/doc/rakefile.rdoc
|
823
|
+
- spec/fixtures/packages/rake-0.8.7/doc/rational.rdoc
|
824
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.4.14.rdoc
|
825
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.4.15.rdoc
|
826
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.5.0.rdoc
|
827
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.5.3.rdoc
|
828
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.5.4.rdoc
|
829
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.6.0.rdoc
|
830
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.7.0.rdoc
|
831
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.7.1.rdoc
|
832
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.7.2.rdoc
|
833
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.7.3.rdoc
|
834
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.8.0.rdoc
|
835
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.8.2.rdoc
|
836
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.8.3.rdoc
|
837
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.8.4.rdoc
|
838
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.8.5.rdoc
|
839
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.8.6.rdoc
|
840
|
+
- spec/fixtures/packages/rake-0.8.7/doc/release_notes/rake-0.8.7.rdoc
|
841
|
+
- spec/fixtures/packages/rake-0.8.7/install.rb
|
842
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake.rb
|
843
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/alt_system.rb
|
844
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/classic_namespace.rb
|
845
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/clean.rb
|
846
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/contrib/compositepublisher.rb
|
847
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/contrib/ftptools.rb
|
848
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/contrib/publisher.rb
|
849
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/contrib/rubyforgepublisher.rb
|
850
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/contrib/sshpublisher.rb
|
851
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/contrib/sys.rb
|
852
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/gempackagetask.rb
|
853
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/loaders/makefile.rb
|
854
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/packagetask.rb
|
855
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/rake_test_loader.rb
|
856
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/rdoctask.rb
|
857
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/ruby182_test_unit_fix.rb
|
858
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/runtest.rb
|
859
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/tasklib.rb
|
860
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/testtask.rb
|
861
|
+
- spec/fixtures/packages/rake-0.8.7/lib/rake/win32.rb
|
862
|
+
- spec/fixtures/packages/rake-0.8.7/package.json
|
863
|
+
- spec/fixtures/packages/rake-0.8.7/test/capture_stdout.rb
|
864
|
+
- spec/fixtures/packages/spade/lib/main.js
|
865
|
+
- spec/fixtures/packages/spade/package.json
|
866
|
+
- spec/fixtures/packages/uglify-js/README.html
|
867
|
+
- spec/fixtures/packages/uglify-js/README.org
|
868
|
+
- spec/fixtures/packages/uglify-js/bin/uglifyjs
|
869
|
+
- spec/fixtures/packages/uglify-js/docstyle.css
|
870
|
+
- spec/fixtures/packages/uglify-js/lib/parse-js.js
|
871
|
+
- spec/fixtures/packages/uglify-js/lib/process.js
|
872
|
+
- spec/fixtures/packages/uglify-js/lib/squeeze-more.js
|
873
|
+
- spec/fixtures/packages/uglify-js/package.json
|
874
|
+
- spec/fixtures/packages/uglify-js/plugins/minifier.js
|
875
|
+
- spec/fixtures/packages/uglify-js/uglify-js.js
|
876
|
+
- spec/fixtures/projects/custom_name/MyProject.json
|
877
|
+
- spec/fixtures/projects/hello2/LICENSE
|
878
|
+
- spec/fixtures/projects/hello2/README.md
|
879
|
+
- spec/fixtures/projects/hello2/app.js
|
880
|
+
- spec/fixtures/projects/hello2/assets/bpm_packages.js
|
881
|
+
- spec/fixtures/projects/hello2/assets/bpm_styles.css
|
882
|
+
- spec/fixtures/projects/hello2/hello2.json
|
883
|
+
- spec/fixtures/projects/hello2/index.html
|
884
|
+
- spec/fixtures/projects/hello2/packages/a/lib/main.js
|
885
|
+
- spec/fixtures/projects/hello2/packages/a/package.json
|
886
|
+
- spec/fixtures/projects/hello2/packages/b/lib/main.js
|
887
|
+
- spec/fixtures/projects/hello2/packages/b/package.json
|
888
|
+
- spec/fixtures/projects/hello2/packages/c/lib/main.js
|
889
|
+
- spec/fixtures/projects/hello2/packages/c/package.json
|
890
|
+
- spec/fixtures/projects/hello_dev/LICENSE
|
891
|
+
- spec/fixtures/projects/hello_dev/README.md
|
892
|
+
- spec/fixtures/projects/hello_dev/app/main.js
|
893
|
+
- spec/fixtures/projects/hello_dev/assets/bpm_libs.js
|
894
|
+
- spec/fixtures/projects/hello_dev/assets/bpm_styles.css
|
895
|
+
- spec/fixtures/projects/hello_dev/css/main.css
|
896
|
+
- spec/fixtures/projects/hello_dev/hello_dev.json
|
897
|
+
- spec/fixtures/projects/hello_dev/index.html
|
898
|
+
- spec/fixtures/projects/hello_dev/packages/style_package/css/some_style.css
|
899
|
+
- spec/fixtures/projects/hello_dev/packages/style_package/package.json
|
900
|
+
- spec/fixtures/projects/hello_world/LICENSE
|
901
|
+
- spec/fixtures/projects/hello_world/README.md
|
902
|
+
- spec/fixtures/projects/hello_world/assets/bpm_packages.js
|
903
|
+
- spec/fixtures/projects/hello_world/assets/bpm_styles.css
|
904
|
+
- spec/fixtures/projects/hello_world/assets/papa-smurf.jpg
|
905
|
+
- spec/fixtures/projects/hello_world/css/dummy.css
|
906
|
+
- spec/fixtures/projects/hello_world/custom_dir/custom.js
|
907
|
+
- spec/fixtures/projects/hello_world/hello_world.json
|
908
|
+
- spec/fixtures/projects/hello_world/lib/another.js
|
909
|
+
- spec/fixtures/projects/hello_world/lib/main.js
|
910
|
+
- spec/fixtures/projects/hello_world/packages/custom_package/assets/dummy.txt
|
911
|
+
- spec/fixtures/projects/hello_world/packages/custom_package/css/sample_styles.css
|
912
|
+
- spec/fixtures/projects/hello_world/packages/custom_package/custom_dir/basic-module.js
|
913
|
+
- spec/fixtures/projects/hello_world/packages/custom_package/lib/main.js
|
914
|
+
- spec/fixtures/projects/hello_world/packages/custom_package/package.json
|
915
|
+
- spec/fixtures/projects/hello_world/tests/main-test.js
|
916
|
+
- spec/fixtures/projects/hello_world/vendor/lib/something.js
|
917
|
+
- spec/fixtures/projects/init_app/assets/bpm_libs.js
|
918
|
+
- spec/fixtures/projects/init_app/assets/bpm_styles.css
|
919
|
+
- spec/fixtures/projects/init_app/assets/new_project/bpm_libs.js
|
920
|
+
- spec/fixtures/projects/init_app/assets/new_project/bpm_styles.css
|
921
|
+
- spec/fixtures/projects/init_app/new_project.json
|
922
|
+
- spec/fixtures/projects/init_default/assets/bpm_libs.js
|
923
|
+
- spec/fixtures/projects/init_default/assets/bpm_styles.css
|
924
|
+
- spec/fixtures/projects/init_default/new_project.json
|
925
|
+
- spec/fixtures/projects/minitest/assets/bpm_packages.js
|
926
|
+
- spec/fixtures/projects/minitest/assets/bpm_styles.css
|
927
|
+
- spec/fixtures/projects/minitest/assets/minitest/app_package.js
|
928
|
+
- spec/fixtures/projects/minitest/lib/main.js
|
929
|
+
- spec/fixtures/projects/minitest/minitest.json
|
930
|
+
- spec/fixtures/projects/minitest/packages/uglyduck/lib/main.js
|
931
|
+
- spec/fixtures/projects/minitest/packages/uglyduck/minifier/main.js
|
932
|
+
- spec/fixtures/projects/minitest/packages/uglyduck/package.json
|
933
|
+
- spec/fixtures/projects/needs_rake/needs_rake.json
|
934
|
+
- spec/fixtures/projects/simple_hello/assets/bpm_libs.js
|
935
|
+
- spec/fixtures/projects/simple_hello/lib/main.js
|
936
|
+
- spec/fixtures/projects/transporter/lib/main.js
|
937
|
+
- spec/fixtures/projects/transporter/packages/transport/lib/main.js
|
938
|
+
- spec/fixtures/projects/transporter/packages/transport/package.json
|
939
|
+
- spec/fixtures/projects/transporter/packages/transport/transports/wrapper.js
|
940
|
+
- spec/fixtures/projects/transporter/transporter.json
|
821
941
|
- spec/gauntlet_spec.rb
|
822
942
|
- spec/package_spec.rb
|
823
943
|
- spec/pipeline_spec.rb
|