xpcomcore-rubygem 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/extension/README.txt +1 -0
- data/extension/components/bootstrapper.js +3 -0
- data/xpcomcore-rubygem.gemspec +3 -1
- metadata +3 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.2.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
This extension was installed by xpcomcore-rubygem. See http://github.com/gabrielg/xpcomcore-rubygem or http://conflagrationjs.org for details.
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var env = Components.classes["@mozilla.org/process/environment;1"].getService(Components.interfaces.nsIEnvironment);
|
|
2
|
+
var xpcomcoreBootstrapper = env.exists('XPCOMCORE_BOOTSTRAP') && env.get('XPCOMCORE_BOOTSTRAP');
|
|
3
|
+
if (xpcomcoreBootstrapper) { Components.utils.import("file://" + xpcomcoreBootstrapper); }
|
data/xpcomcore-rubygem.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{xpcomcore-rubygem}
|
|
8
|
-
s.version = "0.
|
|
8
|
+
s.version = "0.2.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["ggironda"]
|
|
@@ -26,6 +26,8 @@ Gem::Specification.new do |s|
|
|
|
26
26
|
"VERSION",
|
|
27
27
|
"bin/xpcomcore-firefox",
|
|
28
28
|
"bin/xpcomcore-rubygem-install",
|
|
29
|
+
"extension/README.txt",
|
|
30
|
+
"extension/components/bootstrapper.js",
|
|
29
31
|
"extension/install.rdf",
|
|
30
32
|
"lib/xpcomcore-rubygem.rb",
|
|
31
33
|
"test/test_helper.rb",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xpcomcore-rubygem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ggironda
|
|
@@ -51,6 +51,8 @@ files:
|
|
|
51
51
|
- VERSION
|
|
52
52
|
- bin/xpcomcore-firefox
|
|
53
53
|
- bin/xpcomcore-rubygem-install
|
|
54
|
+
- extension/README.txt
|
|
55
|
+
- extension/components/bootstrapper.js
|
|
54
56
|
- extension/install.rdf
|
|
55
57
|
- lib/xpcomcore-rubygem.rb
|
|
56
58
|
- test/test_helper.rb
|