packager

Ruby Shoes packager including Shoes in the app

烂漫一生 提交于 2020-01-13 20:21:26
问题 I can't seem to get the Ruby Shoes packager to correctly create an exe with Shoes included. I'm using the Raisins release (0.r1134), with the pack.rb replaced from github. The exe's the packager makes are all 70-80K files (they obviously don't include shoes or ruby). These exe's will run on my XP machine that already has Shoes on it. but when I copy them to another laptop they start a "Shoes is downloading" dialog that does nothing and then goes away. I need to make standalone Windows exe's,

Ruby Shoes packager including Shoes in the app

橙三吉。 提交于 2020-01-13 20:19:28
问题 I can't seem to get the Ruby Shoes packager to correctly create an exe with Shoes included. I'm using the Raisins release (0.r1134), with the pack.rb replaced from github. The exe's the packager makes are all 70-80K files (they obviously don't include shoes or ruby). These exe's will run on my XP machine that already has Shoes on it. but when I copy them to another laptop they start a "Shoes is downloading" dialog that does nothing and then goes away. I need to make standalone Windows exe's,

How to blacklist specific node_modules of my package's dependencies in react-native's packager?

陌路散爱 提交于 2019-12-29 00:39:25
问题 I'm putting together a streamlined development process with react and react-native that: encourages packages, uses babel to transform es6 to js (it compiles before publishing/installing), has a playground that let's you play with both native and web components. The web part of it is perfectly fine. It's the native one that's causing issues and it has to do with react-native's packager. The bottom line is: if the package is either linked through npm link or required directly from the

Shoes packager problem

不打扰是莪最后的温柔 提交于 2019-12-24 00:52:27
问题 I used packager to make an executable file for the following code: Shoes.app do stack :margin => 10 do @edit = edit_box :width => 1.0 do @para.text = @edit.text end @para = para "" end end then I got error message: Error in C:/Program Files/Common Files/Shoes/0.r1134/lib/shoes.rb line 394utf.rb: 10: compiler error utf.rb: 10: Invalid char '\377' in expression utf.rb: 10: Invalid char '\337' in expression utf.rb: 10: Invalid char '\337' in expression utf.rb: 10: Invalid char '\331' in

Linux executable fails using javafx-maven-plugin

天涯浪子 提交于 2019-12-13 06:17:06
问题 I have a multimodule maven project with JavaFX up and running. I can create an jar file containing all classes that is executable through a maven assembly, so I know the packaged bundle works. For conveniance I want to create a native bundle/executable using the javafx-maven-plugin <profile> <id>build-installer</id> <properties> <native.output.dir>${project.build.directory}/jfx/native/${project.build.finalName}</native.output.dir> <native.output.dir.app>${native.output.dir}/app</native.output

How do I get TFS 2015 to parse 3 digit versioning for NuGet packaging

主宰稳场 提交于 2019-12-12 04:24:02
问题 When I set my TFS 2015 build definition, that is creating a NuGet package, I set the Build Number format with: $(BuildDefinitionName)_$(Major).$(Minor)$(rev:.r) Where Major and Minor or just variables that I defined. When I use the step "NuGet Packager", I get the error: Could not find version number data in BUILD_BUILDNUMBER. When I use 4 digits, I don't get the error. How do I get it to work with semantic versioning? 回答1: I found the solution: 1) You need to get access to your Build Agent

Accessing native API/system from Sencha Touch

故事扮演 提交于 2019-12-08 23:14:30
Sencha Touch is quite perfect for my project. But in order to call a driver for an hardware barcode scanner on iOS and Android, it would be necessary to have access to the underlying system. Is that somehow possible with Sencha Touch itself when "transforming" it into a native app (the Sencha SDK allows this)? I know that it is possible with PhoneGap. But I'm afraid using all these technologies together (PhoneGap + Sencha touch) could make the UI less responsive, but that is a decisive factor in this project. Edit: in this thread, a user says the following: "you cannot access the native iOS

Accessing native API/system from Sencha Touch

拟墨画扇 提交于 2019-12-08 03:12:25
问题 Sencha Touch is quite perfect for my project. But in order to call a driver for an hardware barcode scanner on iOS and Android, it would be necessary to have access to the underlying system. Is that somehow possible with Sencha Touch itself when "transforming" it into a native app (the Sencha SDK allows this)? I know that it is possible with PhoneGap. But I'm afraid using all these technologies together (PhoneGap + Sencha touch) could make the UI less responsive, but that is a decisive factor

Ruby Shoes packager including Shoes in the app

那年仲夏 提交于 2019-12-06 04:40:14
I can't seem to get the Ruby Shoes packager to correctly create an exe with Shoes included. I'm using the Raisins release (0.r1134), with the pack.rb replaced from github. The exe's the packager makes are all 70-80K files (they obviously don't include shoes or ruby). These exe's will run on my XP machine that already has Shoes on it. but when I copy them to another laptop they start a "Shoes is downloading" dialog that does nothing and then goes away. I need to make standalone Windows exe's, and my understanding was that the "Yes, I want Shoes included" option in the packager would do that.

从Asset Packager升级到Assets Pipeline

给你一囗甜甜゛ 提交于 2019-12-06 02:06:53
最近做的一个项目是把一个原来 Rails 2 的网站升级到 Rails 3.2。 这个 project 里面用到了Asset Packager 来管理 Javascript 文件。Rails 3.1 开始采用 Assets Pipeline 来管理 Javascript,stylesheet,和 images 等资源。在研究了一下 Asset Packager 以后,发现它做的事情和 Assets Pipeline 接近。升级的策略比较直接,如下: 1. 把 public/javascripts 下的文件拷贝到 app/assests/javascripts下。 2. 对应文件 config/asset_packages.yml 里面的每个javascript package 名字,在 app/assets/javascripts 下创建一个文件。这个文件的名字格式如下: #{package_name}_package.js 。这个文件里面列出原来 package 包含的文件。 例如文件asset_packages.yml 里面包含如下内容 javascripts: - base: - jquery/jquery-1.3.2 - jquery/jquery.livequery - jquery/jquery.validate-1.5.1 - jquery/jquery