├── .gitignore ├── .goxc.json ├── .goxc.ok ├── .travis.yml ├── Godeps ├── Godeps.json ├── Readme └── _workspace │ ├── .gitignore │ └── src │ ├── github.com │ ├── Sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── entry.go │ │ │ ├── entry_test.go │ │ │ ├── examples │ │ │ ├── basic │ │ │ │ └── basic.go │ │ │ └── hook │ │ │ │ └── hook.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── formatter_bench_test.go │ │ │ ├── formatters │ │ │ └── logstash │ │ │ │ ├── logstash.go │ │ │ │ └── logstash_test.go │ │ │ ├── hook_test.go │ │ │ ├── hooks.go │ │ │ ├── hooks │ │ │ ├── airbrake │ │ │ │ ├── airbrake.go │ │ │ │ └── airbrake_test.go │ │ │ ├── bugsnag │ │ │ │ ├── bugsnag.go │ │ │ │ └── bugsnag_test.go │ │ │ ├── papertrail │ │ │ │ ├── README.md │ │ │ │ ├── papertrail.go │ │ │ │ └── papertrail_test.go │ │ │ ├── sentry │ │ │ │ ├── README.md │ │ │ │ ├── sentry.go │ │ │ │ └── sentry_test.go │ │ │ └── syslog │ │ │ │ ├── README.md │ │ │ │ ├── syslog.go │ │ │ │ └── syslog_test.go │ │ │ ├── json_formatter.go │ │ │ ├── json_formatter_test.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── logrus_test.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ ├── text_formatter_test.go │ │ │ └── writer.go │ ├── alecthomas │ │ ├── template │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── examplefiles_test.go │ │ │ ├── examplefunc_test.go │ │ │ ├── exec.go │ │ │ ├── exec_test.go │ │ │ ├── funcs.go │ │ │ ├── helper.go │ │ │ ├── multi_test.go │ │ │ ├── parse │ │ │ │ ├── lex.go │ │ │ │ ├── node.go │ │ │ │ └── parse.go │ │ │ ├── template.go │ │ │ └── testdata │ │ │ │ ├── file1.tmpl │ │ │ │ ├── file2.tmpl │ │ │ │ ├── tmpl1.tmpl │ │ │ │ └── tmpl2.tmpl │ │ └── units │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── bytes.go │ │ │ ├── bytes_test.go │ │ │ ├── doc.go │ │ │ ├── si.go │ │ │ └── util.go │ ├── nfnt │ │ └── resize │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── converter.go │ │ │ ├── converter_test.go │ │ │ ├── filters.go │ │ │ ├── nearest.go │ │ │ ├── nearest_test.go │ │ │ ├── resize.go │ │ │ ├── resize_test.go │ │ │ ├── thumbnail.go │ │ │ ├── thumbnail_test.go │ │ │ ├── ycc.go │ │ │ └── ycc_test.go │ └── stretchr │ │ ├── objx │ │ ├── .gitignore │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── accessors.go │ │ ├── accessors_test.go │ │ ├── codegen │ │ │ ├── array-access.txt │ │ │ ├── index.html │ │ │ ├── template.txt │ │ │ └── types_list.txt │ │ ├── constants.go │ │ ├── conversions.go │ │ ├── conversions_test.go │ │ ├── doc.go │ │ ├── fixture_test.go │ │ ├── map.go │ │ ├── map_for_test.go │ │ ├── map_test.go │ │ ├── mutations.go │ │ ├── mutations_test.go │ │ ├── security.go │ │ ├── security_test.go │ │ ├── simple_example_test.go │ │ ├── tests.go │ │ ├── tests_test.go │ │ ├── type_specific_codegen.go │ │ ├── type_specific_codegen_test.go │ │ ├── value.go │ │ └── value_test.go │ │ └── testify │ │ ├── assert │ │ ├── assertions.go │ │ ├── assertions_test.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── forward_assertions.go │ │ ├── forward_assertions_test.go │ │ ├── http_assertions.go │ │ └── http_assertions_test.go │ │ └── mock │ │ ├── doc.go │ │ ├── mock.go │ │ └── mock_test.go │ └── gopkg.in │ ├── alecthomas │ └── kingpin.v2 │ │ ├── .travis.yml │ │ ├── COPYING │ │ ├── README.md │ │ ├── app.go │ │ ├── app_test.go │ │ ├── args.go │ │ ├── args_test.go │ │ ├── cmd.go │ │ ├── cmd_test.go │ │ ├── doc.go │ │ ├── examples │ │ ├── chat1 │ │ │ └── main.go │ │ ├── chat2 │ │ │ └── main.go │ │ ├── curl │ │ │ └── main.go │ │ ├── modular │ │ │ └── main.go │ │ └── ping │ │ │ └── main.go │ │ ├── examples_test.go │ │ ├── flags.go │ │ ├── flags_test.go │ │ ├── genrepeated │ │ └── main.go │ │ ├── global.go │ │ ├── guesswidth.go │ │ ├── guesswidth_unix.go │ │ ├── model.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── parsers.go │ │ ├── parsers_test.go │ │ ├── repeated.go │ │ ├── repeated.json │ │ ├── templates.go │ │ ├── usage.go │ │ ├── usage_test.go │ │ └── values.go │ ├── check.v1 │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── TODO │ ├── benchmark.go │ ├── benchmark_test.go │ ├── bootstrap_test.go │ ├── check.go │ ├── check_test.go │ ├── checkers.go │ ├── checkers_test.go │ ├── export_test.go │ ├── fixture_test.go │ ├── foundation_test.go │ ├── helpers.go │ ├── helpers_test.go │ ├── printer.go │ ├── printer_test.go │ ├── run.go │ └── run_test.go │ └── yaml.v2 │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── decode_test.go │ ├── emitterc.go │ ├── encode.go │ ├── encode_test.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── suite_test.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── Makefile ├── README.md ├── blade.go ├── bladefile.go ├── contents.go ├── contents_test.go ├── converter.go ├── dimensions.go ├── dimensions_test.go ├── docs ├── blade-s.png ├── blade-walkthrough.gif └── blade.gif ├── dryrun_converter.go ├── fixtures ├── contents-appicon.json ├── contents-no-sizes-no-files.json ├── contents-no-sizes.json ├── full_integration │ └── interpolation │ │ ├── Bladefile │ │ ├── after │ │ └── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── source-iphone-29@2x.png │ │ │ ├── source-iphone-29@3x.png │ │ │ ├── source-iphone-40@2x.png │ │ │ ├── source-iphone-40@3x.png │ │ │ ├── source-iphone-60@2x.png │ │ │ └── source-iphone-60@3x.png │ │ │ ├── Image.imageset │ │ │ ├── Contents.json │ │ │ ├── source-universal-333@1x.png │ │ │ ├── source-universal-333@2x.png │ │ │ └── source-universal-333@3x.png │ │ │ └── Watch.imageset │ │ │ ├── Contents.json │ │ │ ├── source-universal-333@1x.png │ │ │ ├── source-universal-333@2x.png │ │ │ ├── source-universal-333@3x.png │ │ │ └── source-watch-500@2x.png │ │ ├── before │ │ └── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ │ ├── Image.imageset │ │ │ └── Contents.json │ │ │ └── Watch.imageset │ │ │ └── Contents.json │ │ └── source.png ├── single-file.json └── with-files.json ├── integration.rb ├── main.go ├── resize_converter.go ├── runner.go ├── runner_test.go ├── templates ├── iphone-appicon.json ├── universal.json └── watch.json └── test_helper_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/.gitignore -------------------------------------------------------------------------------- /.goxc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/.goxc.json -------------------------------------------------------------------------------- /.goxc.ok: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/.travis.yml -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_bsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/example_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/examplefiles_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/examplefiles_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/examplefunc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/examplefunc_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/exec.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/exec_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/funcs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/helper.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/multi_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/parse/lex.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/parse/node.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/parse/parse.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/template.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/testdata/file1.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/testdata/file1.tmpl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/testdata/file2.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/testdata/file2.tmpl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/testdata/tmpl1.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/testdata/tmpl1.tmpl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/template/testdata/tmpl2.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/template/testdata/tmpl2.tmpl -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/units/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/units/COPYING -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/units/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/units/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/units/bytes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/units/bytes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/units/bytes_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/units/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/units/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/units/si.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/units/si.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/alecthomas/units/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/alecthomas/units/util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nfnt/resize/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/nfnt/resize/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nfnt/resize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/nfnt/resize/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nfnt/resize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/nfnt/resize/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nfnt/resize/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/nfnt/resize/converter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nfnt/resize/converter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/nfnt/resize/converter_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nfnt/resize/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/nfnt/resize/filters.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nfnt/resize/nearest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/nfnt/resize/nearest.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nfnt/resize/nearest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/nfnt/resize/nearest_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nfnt/resize/resize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/nfnt/resize/resize.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nfnt/resize/resize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/nfnt/resize/resize_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nfnt/resize/thumbnail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/nfnt/resize/thumbnail.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nfnt/resize/thumbnail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/nfnt/resize/thumbnail_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nfnt/resize/ycc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/nfnt/resize/ycc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/nfnt/resize/ycc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/nfnt/resize/ycc_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/LICENSE.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/accessors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/accessors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/accessors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/accessors_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/codegen/array-access.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/codegen/array-access.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/codegen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/codegen/index.html -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/codegen/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/codegen/template.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/codegen/types_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/codegen/types_list.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/constants.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/conversions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/conversions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/conversions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/conversions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/fixture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/fixture_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/map.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/map_for_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/map_for_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/map_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/mutations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/mutations.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/mutations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/mutations_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/security.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/security_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/security_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/simple_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/simple_example_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/tests.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/tests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/tests_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/value.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/value_test.go: -------------------------------------------------------------------------------- 1 | package objx 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/mock/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/mock/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/mock/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/mock/mock.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/mock/mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/mock/mock_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/COPYING -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/app_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/args_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/cmd_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/chat1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/chat1/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/chat2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/chat2/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/curl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/curl/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/modular/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/modular/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/ping/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples/ping/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/examples_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/flags_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/genrepeated/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/genrepeated/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/global.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/guesswidth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/guesswidth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/guesswidth_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/guesswidth_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/model.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parser_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/parsers_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/repeated.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/templates.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/usage.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/usage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/usage_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/alecthomas/kingpin.v2/values.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/TODO: -------------------------------------------------------------------------------- 1 | - Assert(slice, Contains, item) 2 | - Parallel test support 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/benchmark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/benchmark.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/benchmark_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/bootstrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/bootstrap_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/check.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/check_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/checkers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/checkers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/checkers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/checkers_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/export_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/fixture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/fixture_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/foundation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/foundation_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/helpers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/helpers_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/printer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/printer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/printer_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/run.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/check.v1/run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/check.v1/run_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/README.md -------------------------------------------------------------------------------- /blade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/blade.go -------------------------------------------------------------------------------- /bladefile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/bladefile.go -------------------------------------------------------------------------------- /contents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/contents.go -------------------------------------------------------------------------------- /contents_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/contents_test.go -------------------------------------------------------------------------------- /converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/converter.go -------------------------------------------------------------------------------- /dimensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/dimensions.go -------------------------------------------------------------------------------- /dimensions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/dimensions_test.go -------------------------------------------------------------------------------- /docs/blade-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/docs/blade-s.png -------------------------------------------------------------------------------- /docs/blade-walkthrough.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/docs/blade-walkthrough.gif -------------------------------------------------------------------------------- /docs/blade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/docs/blade.gif -------------------------------------------------------------------------------- /dryrun_converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/dryrun_converter.go -------------------------------------------------------------------------------- /fixtures/contents-appicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/contents-appicon.json -------------------------------------------------------------------------------- /fixtures/contents-no-sizes-no-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/contents-no-sizes-no-files.json -------------------------------------------------------------------------------- /fixtures/contents-no-sizes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/contents-no-sizes.json -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/Bladefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/Bladefile -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/AppIcon.appiconset/source-iphone-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/AppIcon.appiconset/source-iphone-29@2x.png -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/AppIcon.appiconset/source-iphone-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/AppIcon.appiconset/source-iphone-29@3x.png -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/AppIcon.appiconset/source-iphone-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/AppIcon.appiconset/source-iphone-40@2x.png -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/AppIcon.appiconset/source-iphone-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/AppIcon.appiconset/source-iphone-40@3x.png -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/AppIcon.appiconset/source-iphone-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/AppIcon.appiconset/source-iphone-60@2x.png -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/AppIcon.appiconset/source-iphone-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/AppIcon.appiconset/source-iphone-60@3x.png -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/Image.imageset/Contents.json -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/Image.imageset/source-universal-333@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/Image.imageset/source-universal-333@1x.png -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/Image.imageset/source-universal-333@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/Image.imageset/source-universal-333@2x.png -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/Image.imageset/source-universal-333@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/Image.imageset/source-universal-333@3x.png -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/Watch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/Watch.imageset/Contents.json -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/Watch.imageset/source-universal-333@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/Watch.imageset/source-universal-333@1x.png -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/Watch.imageset/source-universal-333@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/Watch.imageset/source-universal-333@2x.png -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/Watch.imageset/source-universal-333@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/Watch.imageset/source-universal-333@3x.png -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/after/Assets.xcassets/Watch.imageset/source-watch-500@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/after/Assets.xcassets/Watch.imageset/source-watch-500@2x.png -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/before/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/before/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/before/Assets.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/before/Assets.xcassets/Image.imageset/Contents.json -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/before/Assets.xcassets/Watch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/before/Assets.xcassets/Watch.imageset/Contents.json -------------------------------------------------------------------------------- /fixtures/full_integration/interpolation/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/full_integration/interpolation/source.png -------------------------------------------------------------------------------- /fixtures/single-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/single-file.json -------------------------------------------------------------------------------- /fixtures/with-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/fixtures/with-files.json -------------------------------------------------------------------------------- /integration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/integration.rb -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/main.go -------------------------------------------------------------------------------- /resize_converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/resize_converter.go -------------------------------------------------------------------------------- /runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/runner.go -------------------------------------------------------------------------------- /runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/runner_test.go -------------------------------------------------------------------------------- /templates/iphone-appicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/templates/iphone-appicon.json -------------------------------------------------------------------------------- /templates/universal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/templates/universal.json -------------------------------------------------------------------------------- /templates/watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/templates/watch.json -------------------------------------------------------------------------------- /test_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jondot/blade/HEAD/test_helper_test.go --------------------------------------------------------------------------------