Questions tagged [bundle]

Bundles are a group of resources.

A bundle is a directory that has a well-defined structure and can host anything from classes to controllers and web resources. Even if bundles are very flexible, you should follow some best practices if you want to distribute them.

In ASP Net MVC, bundles are used to combine multiple javascript and CSS files into one, improving the download speed of a website.

In Android bundles are, "A mapping from String values to various Parcelable types." --http://developer.android.com/reference/android/os/Bundle.html Bundles are used to save the state of activities and/or fragments as well as passing data between classes.

5438 questions
2
votes
1 answer

rake task to perform bundle install in another project

How can I write a rake task to run a bundle install in a different project? I have create a project with just rake, and written tasks like this task :bundle do projects.each do |name, repo| if Dir.exists?("../#{name}") exec("cd…
John Cleary
  • 957
  • 8
  • 9
2
votes
1 answer

Browserify: using external libraries from within bundle

Our team develops browser side javascript app. We use angularjs as framework and some helper libraries in global namespace. For example: underscore. We carried out a large piece of code (input/output data tranformation) into a standalone library for…
user3414982
  • 357
  • 1
  • 4
  • 15
2
votes
2 answers

An error occurred while installing json (1.7.6), and Bundler cannot continue.

An error occurred while installing json (1.7.6), and Bundler cannot continue. Make sure that gem install json -v '1.7.6' succeeds before bundling.
cccvandermeer
  • 317
  • 2
  • 14
2
votes
1 answer

Location of CFBundleDisplayName in xCode

I'm trying to find out where the CFBundleDisplayName is located so I can change the title of my Application in xCode when installed on a device. It's my understanding the CFBundleDisplayName holds the string value for the Title that is displayed…
Reanimation
  • 3,151
  • 10
  • 50
  • 88
2
votes
1 answer

How to include more search items in iOS spotlight search

I created a project, settings its name, say: ABCXYZ. When I use iOS Search app (swipe down in the main menu), type XYZ, my app doesn't appear. What do I have to include in my XCode project in order to get more option in search? Like, type A, type…
Eddie
  • 1,903
  • 2
  • 21
  • 46
2
votes
0 answers
2
votes
1 answer

.Net MVC adding async to bundles

I am coming to the end of a project which entails speeding up pages. to do this I have been using page speed insights by google (developers.google.com/speed/pagespeed/insights/). To appease the google gods, my last task is to: "Eliminate…
2
votes
1 answer

Change Magento bundle product price type via database

Is it possible to change an existing bundle product from dynamic to fixed price via the database rather than having to create a new product?
Hugh
  • 31
  • 6
2
votes
1 answer

BundleTransformer: CSS not bundled through @import directive

We are using the BundleTransformer in our ASP.NET MVC project to bundle our style files. This works great, but we noticed that some CSS files are not bundled with our LESS files when we important them in LESS with the @import CSS at-rule. Sample in…
André Haupt
  • 3,294
  • 5
  • 32
  • 57
2
votes
2 answers

storyboard file main~iphone.storyboardc was not found error when trying to submit binary to itunes connect

When I try to submit to the app store from xcode, I get this error for both Main~ipad.storyboardc and Main~iphone.storyboardc: "ERROR ITMS-90029: "Storyboard file 'Main~iphone.storyboardc' was not found. Please ensure the specified file is included…
Tom Keegan
  • 111
  • 4
2
votes
1 answer

java.lang.ClassNotFoundException: javax.faces.webapp.FacesServlet error using osgi framework

I'm new in osgi framework. I add the necessery bundle to develop a osgi-jsf project. My bundle's list; ss Framework is launched. id State Bundle 0 ACTIVE org.eclipse.osgi_3.7.2.v20120110-1415 1 ACTIVE …
2
votes
1 answer

Android onSaveInstanceState Bundle

When android kills your process due to system constraints it gives you the ability to persist data across processes by storing the data in a bundle. Where is this bundle saved if your process is killed? Which process does it live in? Where in…
Ryhan
  • 1,815
  • 1
  • 18
  • 22
2
votes
1 answer

HockeyApp error bundle version does not match

I have a Jenkins job that uploads my iOS app to HockeyApp. I can see this error in my logs Error uploading to HockeyApp: {"status"=>"error", "message"=>"Bundle Version does not match. Expected value: 228 Actual value: 15"} But the app seems to be…
m.y
  • 691
  • 9
  • 21
2
votes
2 answers

Setup webpack hot dev-server with a Node backend for production

I have a front-end application bundled with webpack, which is served by and talks to a Node backend server. Webpack hot dev server is running on 8080. Node backend is running on 1985. I want to serve index.html from Node, but want assets served from…
duncanhall
  • 11,035
  • 5
  • 54
  • 86
2
votes
0 answers

Symfony 2.5 - IvoryCKEditorBundle fatal error (class not found)

I was trying to get installed the bundle egeloen/IvoryCKEditorBundle in my Symfony 2.5 but it's my first time installing a bundle and I need specific steps to make it, I don't understand in which files I have to put the code lines to get it…
Tamara
  • 21
  • 3
1 2 3
99
100