Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

51
votes
5answers
14k views

Bundle / Rake error

This is kinda weird - i do not think i changed any code in this particular application (but i was working on another app and performing some gem updates there) When i started running the rake cron on ...
51
votes
13answers
16k views

Invalid gemspec because of the date format in specification

When I include a gem that I made, thanks to Bundler (version 1.0.12), in a Gemfile and then I try to bundle or to rake just like that: $ rake I've got this error message: Invalid gemspec in ...
30
votes
3answers
5k views

bundle install and rbx-require-relative

After following railstutorial.orgI am trying to run bundle install. It list use of gem like : Using railties (3.0.7) Using rails (3.0.7) Using sass (3.1.3) And this error : Installing ...
26
votes
2answers
9k views

Subdirectories within an iOS application

Is there a way to have directories within an .app? At the moment if I add a file into Xcode, regardless of what Group hierarchy it is in, the file always lands in a flat filesystem within my ...
19
votes
2answers
3k views

Restoring Rails 3's Bundle Install Path… It's now install in my root

I did something while trying to install the vestal_versions plug-in that ended up creating a vestal_versions directory in my app's root with the following: - Application - APP - DB - ...
18
votes
1answer
11k views

How do I create a bundle of reusable code in Xcode?

I am developing an iPhone app and have to parse xml files in order to put them into a database. I will also be using those same xml parsers in my app so users can import their own data. I was ...
18
votes
30answers
5k views

What are some useful TextMate shortcuts?

Macs are renowned (or bemoaned) for having an extensive number of shortcuts. However, OS X itself pales in comparison to the shortcut lists in TextMate and its bundles. What are some useful keyboard ...
17
votes
4answers
2k views

Benefit of using Parcelable instead of serializing object

As I understand, Bundle and Parcelable belongs to the way android performs serialization in. It is used for example in passing data between activities. But I wonder, if there are any benefits in using ...
10
votes
2answers
2k views

What does bundle exec rake db:migrate mean?

I'm learning Ruby on Rails: What does bundle exec rake db:migrate mean? I understand that bundle takes care of maintaining things in the Gemfile. I know what the word "exec" means. I understand ...
8
votes
3answers
3k views

therubyracer gem on windows

I've been peacefully developing on Windows without adding any gems for a few weeks now and today I decided to to a bundle update, but I cannot get through this gem called therubyracer. I have the ...
8
votes
3answers
5k views

getExtra from Intent launched from a pendingIntent

I am trying to make some alarms after the user selects something with a time from a list and create a notification for it at the given time. My problem is that the "showname" that a putExtra on my ...
7
votes
2answers
149 views

Importing resources from OSGi bundle

With the import mechanism in OSGi, it is straightforward to import packages from another bundle. However, I have been unsuccessful in importing resources that exist in the "root" of the bundle. Is it ...
7
votes
2answers
237 views

How to share a Symfony2 model with several projects

We are creating a SaaS that monitors certain assets. This means it takes in data, saves it, and displays it in a webinterface. For this, we have a few components that we created with/are moving to ...
7
votes
4answers
492 views

RecognizerIntent: how to add a bundle to a pending intent

I am implementing an activity that responds to the RecognizerIntent. Among others this activity must handle two incoming extras that specify a pending intent and its extras-bundle: ...
7
votes
2answers
1k views

How to exclude image files in Xcode project bundle, conditionally for Release version?

I added .png images to the Xcode project for conditional use like making screenshots of a view However, since this is not needed for the Release version of the app, I would like to find a way to ...
7
votes
3answers
359 views

What location do OSX/Cocoa applications generally use to store data files?

Do they write/store them within the app bundle/package itself? Or some other canonical location? Or does there not seem to be any standard?
6
votes
4answers
855 views

Android ListFragment doesn't save the bundle in onSaveInstanceState()/doesn't retrieve bundle in onActivityCreated()

I'm new to android and I'm facing the following problem. I'm developing for both, Android 2 and 3, and this is why I use fragments. However to make the app working on Android 2 devices I import ...
6
votes
1answer
968 views

Bundle Update stuck at “Fetching source index for http://rubygems.org/”

As of yesterday, I'm unable to update my bundle. It gets stuck at "Fetching source index for http://rubygems.org/". I know this usually takes a while, but I've waited for hours and tried several times ...
6
votes
3answers
530 views

Why does saving a Hashtable of non-Parcelable objects in onSaveInstanceState() sometimes work?

After going through an introductory Android programming book, I wanted to alter the example application in order to solidify my understanding of some topics that weren't really covered. In making the ...
6
votes
2answers
3k views

How can I remove a gem from my Rails 3 project without getting this really strange Bundle error?

The error is: You have modified your Gemfile in development but did not check the resulting snapshot (Gemfile.lock) into version control WHAT VERSION CONTROL? Why/how does Bundle know anything about ...
5
votes
1answer
39 views

Is there a way to modify the entity mapping configuration for doctrine outside the config file?

In my standard Symfony2-app I'm having a bunch of bundles with some entities. Some of these entities are not located in the standard folder the automapping of doctrine finds out (e.g. ...
5
votes
1answer
556 views

Fragments onCreateView() bundle. Where does it come from?

I'm starting an Activity through the usual means: Intent startIntent = new Intent(this, DualPaneActivity.class); startIntent.putExtras(((SearchPageFragment) currentFragment).getPageState()); ...
5
votes
2answers
535 views

In Ruby on Rails, why is “bundle install” so slow to create Gemfile.lock and “rails g foo name:string” creates it so quickly?

I already have all the gems, and each time I do rails trytry02 cd trytry02 bundle install to create the Gemfile.lock, it takes a long time to fetch data from rubygems.org. But I noticed that if I ...
5
votes
2answers
362 views

Copy files to bundle depending on active configuration

is it possible to control which files are copied to the bundle depending on the active configuration? I don't want to add another targer for this, so this not an option. The real life example is a ...
5
votes
1answer
1k views

Bundle Install passes with no errors, but on visiting the site, I see an Error

If I run bundle install, the application passes, everything is properly installed. But if I reboot nginx, and visit the site, I see the Passenger Error message. Ruby (Rack) application could not be ...
5
votes
3answers
786 views

Java - How to allow internationalization to my Java swing application?

I want to allow internationalization to my Java swing application. I use a bundle file to keep all labels inside it. As a test i tried to set a Swedish title to a JButton. So in the bundle file i ...
5
votes
4answers
237 views

Good Coding: modularized js files or one big js file?

Just want to ask the gurus out there about this. I know that CSS files are better merged instead of separated into a zillion files. Does js work the same way? Here's a few points I currently know(or ...
5
votes
2answers
426 views

Trouble using xib files in libraries

I'm having some trouble working with libraries and included xib files. Let me explain my situation first. I've got a project that's running pretty good. Now I need a part of my project as a library ...
5
votes
2answers
2k views

How to serialize a Bundle?

I'd like to serialize a Bundle object, but can't seem to find a simple way of doing it. Using Parcel doesn't seem like an option, since I want to store the serialized data to file. Any ideas on ways ...
5
votes
6answers
553 views

How to distribute native perl scripts without custom module overhead?

How can someone distribute native (non-"compiled/perl2exe/...") Perl scripts without forcing users to be aware of the custom (non-CPAN) modules that the scripts needs in order to run? The problem is ...
5
votes
4answers
12k views

How to send parameters from a notification-click to an activity?

I can find a way to send parameters to my activity from my notification. I have a service that creates a notification. When the user clicks on the notification i want to open my main activity with ...
5
votes
2answers
2k views

How to make eclipse aware of OSGI bundles within a maven repository (local &| remote)

I have a project which is build through maven. Each module is built as an osgi bundle. Within Eclipse the modules have also the plugin nature. Some modules require external dependencies (log4j, ...
5
votes
5answers
2k views

OSX: Environment variables pointing to application bundles?

I want cscope to open files in MacVim instead of vim, so I'm trying to have the path to MacVim as the Value of the EDITOR environment variable which is used by cscope: $ export ...
4
votes
2answers
137 views

What does it mean BUNDLE_DISABLE_SHARED_GEMS: '1'?

I found this BUNDLE_DISABLE_SHARED_GEMS: '1', in my .bundle/config. Does anyone know what this means?
4
votes
1answer
467 views

invalid code signing app submission

Im trying to submit an app to the app store and Im getting the following error. Ive seen similar problems posted & 2 different solutions suggested but neither of them have solved the issue. ...
4
votes
1answer
171 views

Make two versions - lite and pro - of the same app

We have an AdWhirl-sponsored version of an app (Moonrise) and would like to offer an ad-free $.99 version. For maintenance reasons, I'd like to have a single app in which I just change a couple ...
4
votes
1answer
368 views

Ruby Gemspec Dependency: Is possible have a git branch dependency?

Is possible have a git branch dependency, inside mygem.gemspec ? I'm thinking something similar to the following: gem.add_runtime_dependency 'oauth2', :git => 'git@github.com:lgs/oauth2.git' ...
4
votes
2answers
627 views

iOS - loading xib from bundle in Documents directory

I've been working on getting "custom skinnable" interfaces working for my iOS app by bundling up xibs and downloading bundles, and loading the xibs in those bundles. I have followed the very useful ...
4
votes
2answers
149 views

Bundle install mess

I have using RVM on a mac for a rails 3 development. I wanted to run bundle update newrelic_rpm to upgrade to the new version of the gem. This was a bad idea: it creates a new folder call ...
4
votes
4answers
4k views

What is the importance of bundle in a Android Program

I am new to android.I want to know whats the importance of bundle in a android Program Thanks in advance Tushar
4
votes
1answer
1k views

Trouble sending Bundle with PendingIntent to a Broadcast Receiver, data lost

I am adding some basic alarm functionality to my program via the use of AlarmManager and a BroadcastReceiver class (named AReceiver.java). My problem is that the data I add to the bundle attached to ...
4
votes
2answers
646 views

Does a serializable object always get serialized when put in a bundle?

We were wondering if when using Bundle with serializable or parcelable objects, when does the marshalling actually happen? As soon as you put it in the bundle? Since bundles are mostly used to simply ...
4
votes
2answers
273 views

Return code from Mac app

I'm trying to create a Mac app, which should return an error code in some cases. This is an Intel bundle. (It's a Carbon C++ project, but this is probably irrelevant.) The standard way to do it in C++ ...
4
votes
5answers
188 views

Java binary licensing

Can we include java JRE binaries (binaries itself, not installer) into our software distribution package? Can we do it for free? This software is proprietary closed-source secure client for russian ...
4
votes
6answers
1k views

Is it possible to create a Mono bundle that includes WPF libraries?

I know WPF libraries aren´t implemented by mono class library, however(as far as I know) the mono 2.6 runtime is fully compatible with the .NET 2.0/3.5 runtime, so if the WPF libraries only make ...
4
votes
4answers
7k views

How do I pass data from a BroadcastReceiver through to an Activity being started?

I've got an Android application which needs to be woken up sporadically throughout the day. To do this, I'm using the AlarmManager to set up a PendingIntent and have this trigger a BroadcastReceiver. ...
4
votes
1answer
3k views

Creating my own bundle in xCode, for iPhone application

I am having some difficulty creating a bundle for my application, and placing files in the bundle. For example, Facebook has developed a bundle for iPhone applications using their framework. In the ...
4
votes
2answers
4k views

iPhone - Change app icon pointed to by info.plist within the application?

Is there any way to change the 47x47 PNG, pointed to within info.plist, for the iPhone springboard icon from within code? I understand I can add a translation and change the springboard icon per ...
4
votes
4answers
2k views

Use Bundle-NativeCode on Linux does not work

i creat a plugin wich includes the folder structure src native/so/libsystemcommand.so META-INF/MANIFEST.MF The manifest include the command Manifest-Version: 1.0 Bundle-ManifestVersion: 2 ...
4
votes
2answers
573 views

Best approaches to versioning Mac “bundle” files

So you know a lot of Mac apps use "bundles": It looks like a single file to your application, but it's actually a folder with many files inside. For a version control system to handle this, it needs ...

1 2 3 4 5 14