fabric-rails 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.0.5 (24 August 2012)
2
+
3
+ - fabric.js version 0.9.2
4
+
1
5
  ## 0.0.4 (22 August 2012)
2
6
 
3
7
  - fabric.js version 0.9.1
data/Gemfile.lock CHANGED
@@ -1,36 +1,36 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fabric-rails (0.0.3)
4
+ fabric-rails (0.0.5)
5
5
  railties (>= 3.2.0, < 5.0)
6
6
  thor (~> 0.14)
7
7
 
8
8
  GEM
9
9
  remote: http://rubygems.org/
10
10
  specs:
11
- actionpack (3.2.1)
12
- activemodel (= 3.2.1)
13
- activesupport (= 3.2.1)
11
+ actionpack (3.2.8)
12
+ activemodel (= 3.2.8)
13
+ activesupport (= 3.2.8)
14
14
  builder (~> 3.0.0)
15
15
  erubis (~> 2.7.0)
16
- journey (~> 1.0.1)
16
+ journey (~> 1.0.4)
17
17
  rack (~> 1.4.0)
18
- rack-cache (~> 1.1)
18
+ rack-cache (~> 1.2)
19
19
  rack-test (~> 0.6.1)
20
- sprockets (~> 2.1.2)
21
- activemodel (3.2.1)
22
- activesupport (= 3.2.1)
20
+ sprockets (~> 2.1.3)
21
+ activemodel (3.2.8)
22
+ activesupport (= 3.2.8)
23
23
  builder (~> 3.0.0)
24
- activesupport (3.2.1)
24
+ activesupport (3.2.8)
25
25
  i18n (~> 0.6)
26
26
  multi_json (~> 1.0)
27
27
  builder (3.0.0)
28
28
  erubis (2.7.0)
29
29
  hike (1.2.1)
30
30
  i18n (0.6.0)
31
- journey (1.0.3)
32
- json (1.6.5)
33
- multi_json (1.1.0)
31
+ journey (1.0.4)
32
+ json (1.7.5)
33
+ multi_json (1.3.6)
34
34
  rack (1.4.1)
35
35
  rack-cache (1.2)
36
36
  rack (>= 0.4)
@@ -38,21 +38,21 @@ GEM
38
38
  rack
39
39
  rack-test (0.6.1)
40
40
  rack (>= 1.0)
41
- railties (3.2.1)
42
- actionpack (= 3.2.1)
43
- activesupport (= 3.2.1)
41
+ railties (3.2.8)
42
+ actionpack (= 3.2.8)
43
+ activesupport (= 3.2.8)
44
44
  rack-ssl (~> 1.3.2)
45
45
  rake (>= 0.8.7)
46
46
  rdoc (~> 3.4)
47
- thor (~> 0.14.6)
47
+ thor (>= 0.14.6, < 2.0)
48
48
  rake (0.9.2.2)
49
49
  rdoc (3.12)
50
50
  json (~> 1.4)
51
- sprockets (2.1.2)
51
+ sprockets (2.1.3)
52
52
  hike (~> 1.2)
53
53
  rack (~> 1.0)
54
54
  tilt (~> 1.1, != 1.3.0)
55
- thor (0.14.6)
55
+ thor (0.16.0)
56
56
  tilt (1.3.3)
57
57
 
58
58
  PLATFORMS
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  This gem provides:
6
6
 
7
- * fabric.js 0.9.1
7
+ * fabric.js 0.9.2
8
8
 
9
9
  ## Installation
10
10
 
@@ -1,6 +1,6 @@
1
1
  module Fabric
2
2
  module Rails
3
- VERSION = "0.0.4"
4
- FABRIC_VERSION = "0.9.1"
3
+ VERSION = "0.0.5"
4
+ FABRIC_VERSION = "0.9.2"
5
5
  end
6
6
  end
@@ -1,7 +1,7 @@
1
1
  /* build: `node build.js modules=ALL` */
2
2
  /*! Fabric.js Copyright 2008-2012, Printio (Juriy Zaytsev, Maxim Chernyak) */
3
3
 
4
- var fabric = fabric || { version: "0.9.1" };
4
+ var fabric = fabric || { version: "0.9.2" };
5
5
 
6
6
  if (typeof exports != 'undefined') {
7
7
  exports.fabric = fabric;
@@ -6630,6 +6630,7 @@ fabric.util.string = {
6630
6630
  if (path === "M 0 0 L 0 0 ") {
6631
6631
  // do not create 0 width/height paths, as they are rendered inconsistently across browsers
6632
6632
  // Firefox 4, for example, renders a dot, whereas Chrome 10 renders nothing
6633
+ this.renderAll();
6633
6634
  return;
6634
6635
  }
6635
6636
 
@@ -13604,4 +13605,4 @@ fabric.Image.filters.Tint.fromObject = function(object) {
13604
13605
  fabric.Canvas.prototype.setHeight = fabric.StaticCanvas.prototype.setHeight;
13605
13606
  }
13606
13607
 
13607
- })();
13608
+ })();
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fabric-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-22 00:00:00.000000000 Z
12
+ date: 2012-08-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railties
16
- requirement: &70324941035400 !ruby/object:Gem::Requirement
16
+ requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -24,10 +24,18 @@ dependencies:
24
24
  version: '5.0'
25
25
  type: :runtime
26
26
  prerelease: false
27
- version_requirements: *70324941035400
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: 3.2.0
33
+ - - <
34
+ - !ruby/object:Gem::Version
35
+ version: '5.0'
28
36
  - !ruby/object:Gem::Dependency
29
37
  name: thor
30
- requirement: &70324941068700 !ruby/object:Gem::Requirement
38
+ requirement: !ruby/object:Gem::Requirement
31
39
  none: false
32
40
  requirements:
33
41
  - - ~>
@@ -35,7 +43,12 @@ dependencies:
35
43
  version: '0.14'
36
44
  type: :runtime
37
45
  prerelease: false
38
- version_requirements: *70324941068700
46
+ version_requirements: !ruby/object:Gem::Requirement
47
+ none: false
48
+ requirements:
49
+ - - ~>
50
+ - !ruby/object:Gem::Version
51
+ version: '0.14'
39
52
  description: This gem provides fabric.js for your Rails 3 application via the asset
40
53
  pipeline.
41
54
  email:
@@ -69,6 +82,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
69
82
  - - ! '>='
70
83
  - !ruby/object:Gem::Version
71
84
  version: '0'
85
+ segments:
86
+ - 0
87
+ hash: 2353685692121536274
72
88
  required_rubygems_version: !ruby/object:Gem::Requirement
73
89
  none: false
74
90
  requirements:
@@ -77,9 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
93
  version: 1.3.6
78
94
  requirements: []
79
95
  rubyforge_project: fabric-rails
80
- rubygems_version: 1.8.15
96
+ rubygems_version: 1.8.24
81
97
  signing_key:
82
98
  specification_version: 3
83
99
  summary: Easily use fabric.js with Rails 3
84
100
  test_files: []
85
- has_rdoc: