8000 sproutcore/Buildfile at master · DonHahn/sproutcore · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
{"payload":{"allShortcutsEnabled":false,"fileTree":{"":{"items":[{"name":"apps","path":"apps","contentType":"directory"},{"name":"design","path":"design","contentType":"directory"},{"name":"frameworks","path":"frameworks","contentType":"directory"},{"name":"lib","path":"lib","contentType":"directory"},{"name":"themes","path":"themes","contentType":"directory"},{"name":".gitignore","path":".gitignore","contentType":"file"},{"name":".mailmap","path":".mailmap","contentType":"file"},{"name":"Buildfile","path":"Buildfile","contentType":"file"},{"name":"CHANGELOG.md","path":"CHANGELOG.md","contentType":"file"},{"name":"README.md","path":"README.md","contentType":"file"},{"name":"license.js","path":"license.js","contentType":"file"}],"totalCount":11}},"fileTreeProcessingTime":9.929636,"foldersToFetch":[],"incompleteFileTree":false,"repo":{"id":3925704,"defaultBranch":"master","name":"sproutcore","ownerLogin":"DonHahn","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2012-04-04T05:22:06.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/1198753?v=4","public":true,"private":false,"isOrgOwned":false},"codeLineWrapEnabled":false,"symbolsExpanded":false,"treeExpanded":true,"refInfo":{"name":"master","listCacheKey":"v0:1619271016.54685","canEdit":false,"refType":"branch","currentOid":"4a4fe5db2194ea639814a5f3b250f47f49957c5c"},"path":"Buildfile","currentUser":null,"blob":{"rawLines":["# ==========================================================================","# SproutCore JavaScript Framework - Buildfile","# copyright (c) 2009 - Apple Inc.","# portions copyright Strobe Inc. and contributors","# ==========================================================================","","# This buildfile defines the configurations needed to link together the","# various frameworks that make up SproutCore. If you want to override some","# of these settings, you should make changes to your project Buildfile","# instead.","","config :all,"," :layout =\u003e 'sproutcore:lib/index.rhtml',"," :test_layout =\u003e 'sproutcore:lib/index.rhtml',"," :test_required =\u003e ['sproutcore/testing'],"," :debug_required =\u003e ['sproutcore/debug', 'sproutcore/testing']","","# in debug mode, combine the JS for SC by default. This will improve perf","# while working with apps. If you are hacking SC itself, you can turn this","# off in your project buildfile by referencing sproutcore specifically","mode :debug do"," config :all,"," :combine_javascript =\u003e true,"," :combine_stylesheet =\u003e true","end","","# CORE FRAMEWORKS","config :bootstrap, :required =\u003e [], :use_modules =\u003e false","","config :jquery, :required =\u003e [], :test_required =\u003e [], :debug_required =\u003e []","config :yuireset, :required =\u003e [], :test_required =\u003e [], :debug_required =\u003e []","config :template_view, :required =\u003e [:core_foundation], :test_required =\u003e [:core_foundation]","config :runtime, :required =\u003e [:jquery]","config :'datetime/core', :required =\u003e [:runtime]","config :datetime, :required =\u003e [:'datetime/core']","config :core_foundation, :required =\u003e [:runtime, :yuireset]","config :'datetime/localized', :required =\u003e [:core_foundation]","config :routing, :required =\u003e [:core_foundation]","config :foundation, :required =\u003e [:routing, :core_foundation, :datetime, :'datetime/localized', :ajax]","config :datastore, :required =\u003e [:runtime, :datetime]","config :formatters, :required =\u003e [:runtime, :foundation]","config :desktop, :required =\u003e [:foundation]","config :media, :required =\u003e [:desktop]","config :statechart, :required =\u003e [:core_foundation], :test_required =\u003e [:core_foundation, :desktop, :routing]","config :ajax, :required =\u003e [:runtime, :core_foundation]","","config :\"experimental/split_view\", :test_required =\u003e [:desktop]","","# WRAPPER FRAMEWORKS","config :sproutcore, :required =\u003e [:desktop, :datastore, :statechart, :template_view]","config :animation, :required =\u003e :foundation","","config :qunit, :required =\u003e []","config :testing, :required =\u003e [:jquery], :test_required =\u003e [], :debug_required =\u003e []","","# SPECIAL FRAMEWORKS AND THEMES","# These do not require any of the built-in SproutCore frameworks","%w(debug legacy_theme empty_theme).each do |target_name|"," config target_name,"," :required =\u003e [], :test_required =\u003e [], :debug_required =\u003e []","end","","# CONFIGURE THEMES","config :empty_theme,"," :theme_name =\u003e 'empty-theme',"," :test_required =\u003e ['sproutcore/testing'],"," :debug_required =\u003e ['sproutcore/debug']","","config :iphone_theme,"," :theme_name =\u003e 'iphone-theme',"," :required =\u003e [],"," :test_required =\u003e ['sproutcore/testing'],"," :debug_required =\u003e ['sproutcore/debug']","","config :legacy_theme,"," :required =\u003e :empty_theme,"," :theme_name =\u003e 'sc-theme',"," :test_required =\u003e ['sproutcore/testing'],"," :debug_required =\u003e ['sproutcore/debug']","","config :ace,"," :required =\u003e :empty_theme,"," :theme_name =\u003e nil,"," :test_required =\u003e ['sproutcore/testing'],"," :debug_required =\u003e ['sproutcore/debug'],"," :css_theme =\u003e 'ace'","","# CONFIGURE APPS","config :core_tools, :required =\u003e ["," :desktop, :datastore, :animation, \"sproutcore/experimental/forms\","," \"sproutcore/ace\",",""," # The SC apps will use the experimental version of these controls:"," \"sproutcore/experimental/select_view\","," \"sproutcore/experimental/split_view\"","]","","# mode :debug do","# config :core_tools, :combine_javascript =\u003e false","# end","","%w(tests test_controls welcome).each do |app_target|"," config app_target,"," :required =\u003e [:desktop, :datastore, :core_tools],"," :theme =\u003e :ace",""," # mode :debug do"," # config app_target, :combine_javascript =\u003e false"," # end","","end"],"stylingDirectives":null,"colorizedLines":null,"csv":null,"csvError":null,"dependabotInfo":{"showConfigurationBanner":false,"configFilePath":null,"networkDependabotPath":"/DonHahn/sproutcore/network/updates","dismissConfigurationNoticePath":"/settings/dismiss-notice/dependabot_configuration_notice","configurationNoticeDismissed":null},"displayName":"Buildfile","displayUrl":"https://github.com/DonHahn/sproutcore/blob/master/Buildfile?raw=true","headerInfo":{"blobSize":"4.03 KB","deleteTooltip":"You must be signed in to make or propose changes","editTooltip":"You must be signed in to make or propose changes","ghDesktopPath":"https://desktop.github.com","isGitLfs":false,"onBranch":true,"shortPath":"55aaf65","siteNavLoginPath":"/login?return_to=https%3A%2F%2Fgithub.com%2FDonHahn%2Fsproutcore%2Fblob%2Fmaster%2FBuildfile","isCSV":false,"isRichtext":false,"toc":null,"lineInfo":{"truncatedLoc":"111","truncatedSloc":"92"},"mode":"file"},"image":false,"isCodeownersFile":null,"isPlain":false,"isValidLegacyIssueTemplate":false,"issueTemplate":null,"discussionTemplate":null,"language":"Ruby","languageID":326,"large":false,"planSupportInfo":{"repoIsFork":null,"repoOwnedByCurrentUser":null,"requestFullPath":"/DonHahn/sproutcore/blob/master/Buildfile","showFreeOrgGatedFeatureMessage":null,"showPlanSupportBanner":null,"upgradeDataAttributes":null,"upgradePath":null},"publishBannersInfo":{"dismissActionNoticePath":"/settings/dismiss-notice/publish_action_from_dockerfile","releasePath":"/DonHahn/sproutcore/releases/new?marketplace=true","showPublishActionBanner":false},"rawBlobUrl":"https://github.com/DonHahn/sproutcore/raw/refs/heads/master/Buildfile","renderImageOrRaw":false,"richText":null,"renderedFileInfo":null,"shortPath":null,"symbolsEnabled":true,"tabSize":8,"topBannersInfo":{"overridingGlobalFundingFile":false,"globalPreferredFundingPath":null,"showInvalidCitationWarning":false,"citationHelpUrl":"https://docs.github.com/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-citation-files","actionsOnboardingTip":null},"truncated":false,"viewable":true,"workflowRedirectUrl":null,"symbols":{"timed_out":false,"not_analyzed":false,"symbols":[]}},"copilotInfo":null,"copilotAccessAllowed":false,"modelsAccessAllowed":false,"modelsRepoIntegrationEnabled":false,"csrf_tokens":{"/DonHahn/sproutcore/branches":{"post":"Br99OylqWOTEU1ifS013P3t9J93t9YcfwiIFkxazPk_FhnZVeVO1yN_1hP5kXyZd2fCHoZ2oEQ2MVZC6nNPxtg"},"/repos/preferences":{"post":"pEa_GXhnL5FV8fFSwC-DgOrirYs0Ir_NIrO06bEX2Jq8f8d78xI4MRM8GQFZGBOmQUsW-1wt9x3WvUNB3GIc5g"}}},"title":"sproutcore/Buildfile at master · DonHahn/sproutcore","appPayload":{"helpUrl":"https://docs.github.com","findFileWorkerPath":"/assets-cdn/worker/find-file-worker-7d7eb7c71814.js","findInFileWorkerPath":"/assets-cdn/worker/find-in-file-worker-1ae9fa256942.js","githubDevUrl":null,"enabled_features":{"code_nav_ui_events":false,"react_blob_overlay":false,"accessible_code_button":true,"github_models_repo_integration":false}}}
0