jsus 0.1.10.1 → 0.1.10.2

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.
Files changed (4) hide show
  1. data/Rakefile +1 -1
  2. data/bin/jsus +1 -1
  3. data/jsus.gemspec +1 -1
  4. metadata +2 -2
data/Rakefile CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
- Echoe.new('jsus', '0.1.10.1') do |g|
4
+ Echoe.new('jsus', '0.1.10.2') do |g|
5
5
  g.description = "Packager/compiler for js-files that resolves dependencies and can compile everything into one file, providing all the neccessary meta-info."
6
6
  g.url = "http://github.com/markiz/jsus"
7
7
  g.author = "Markiz, idea by Inviz (http://github.com/Inviz)"
data/bin/jsus CHANGED
@@ -76,7 +76,7 @@ if Choice.choices[:generate_includes]
76
76
  c = Jsus::Container.new(*(package.source_files.to_a + package.linked_external_dependencies.to_a))
77
77
  script = %{(function(prefix) {
78
78
  var sources = %sources%;
79
- for (var i = 0, j = sources.length; i < j; i++) document.write('<scr' + 'ipt src="' + (prefix || '') + sources[i] + "></script>');
79
+ for (var i = 0, j = sources.length; i < j; i++) document.write('<scr' + 'ipt src="' + (prefix || '') + sources[i] + '"></script>');
80
80
  })(window.prefix);}.sub("%sources%", JSON.pretty_generate(c.required_files(root)))
81
81
  f.puts script
82
82
  end
data/jsus.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{jsus}
5
- s.version = "0.1.10.1"
5
+ s.version = "0.1.10.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Markiz, idea by Inviz (http://github.com/Inviz)"]
metadata CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 0
7
7
  - 1
8
8
  - 10
9
- - 1
10
- version: 0.1.10.1
9
+ - 2
10
+ version: 0.1.10.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Markiz, idea by Inviz (http://github.com/Inviz)