imba-source 0.14.1 → 0.14.3.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cdce33a70c317ed18284b89fe445e64fff045dbf
4
- data.tar.gz: c1caf38da7aa0b3b8ccc01ac4e3a8aa04f2ca600
3
+ metadata.gz: b9e550be6743dc476afa2260aac3368a2a6f42bc
4
+ data.tar.gz: 1479bd5c8746a7cd080a5be8e29bafe611e0ba17
5
5
  SHA512:
6
- metadata.gz: 07a0055962f92db3273a26a92e10fc9843eed05e153eba3d20c5f55fd708f1dcc76fccb4522d5e0f844e481ec7d7f31408ed42d1c41b0b891999649f6b633ecb
7
- data.tar.gz: 860757a19feee2765ce6f7a88a6e82187ad6f62bd7b93b2be2e42756d030225e1255b34f8496e3a7c02ee6380a9fca7a5554e7edfa9f8ff22878d3b3ffa6321e
6
+ metadata.gz: 842072cfda5d45f9331f6c3321985bb25df1d7275258f9c5a1a77b885f884bbf31f6323a5531a87410af84ab7064b0ae79a7551276711ba159a7a7f48795616f
7
+ data.tar.gz: cf007ab862cb0506e5d4647769d79aa1a704e6c98961a1e1e432404c1676901de9707d0d2117e431112fe11b077ddf3019af704ae5d3e67191501f85a69d5b63
data/README.md CHANGED
@@ -8,12 +8,12 @@ JavaScript source code for the [Imba](https://github.com/somebee/imba) compiler
8
8
  require 'imba/source'
9
9
 
10
10
  # The Imba runtime:
11
+ Imba::Source.path_for("imba.dev.js")
11
12
  Imba::Source.path_for("imba.js")
12
- Imba::Source.path_for("imba.min.js")
13
13
 
14
14
  # The Imba compiler:
15
+ Imba::Source.path_for("imbac.dev.js")
15
16
  Imba::Source.path_for("imbac.js")
16
- Imba::Source.path_for("imbac.min.js")
17
17
 
18
18
  # Path to the directory which contains the files above
19
19
  Imba::Source::BROWSER_PATH # => Pathname instance
@@ -1,5 +1,5 @@
1
1
  module Imba
2
2
  module Source
3
- VERSION = "0.14.1"
3
+ VERSION = "0.14.3.1"
4
4
  end
5
5
  end
data/lib/imba/source.rb CHANGED
@@ -4,7 +4,7 @@ require "pathname"
4
4
  module Imba
5
5
  module Source
6
6
  VENDOR_PATH = Pathname.new(__FILE__).expand_path + "../../../vendor/imba"
7
- BROWSER_PATH = VENDOR_PATH + "lib/browser"
7
+ BROWSER_PATH = VENDOR_PATH + "dist"
8
8
 
9
9
  def self.path_for(name)
10
10
  (BROWSER_PATH + name).to_s