sottolio 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a0e8e9b431ebb6197a73e4d052427a842d3f5733
4
- data.tar.gz: 71f481befa4e8fc43f3506989e4c350b924c1b3e
3
+ metadata.gz: 2b0a7bf516f5dc3a9080c8e9782d5f7280de0327
4
+ data.tar.gz: 838755440b44c47f732e20b05863743ae2fd2d78
5
5
  SHA512:
6
- metadata.gz: ba652252e5450b749dbd6da8f544dc9acdb6e66d312b78e8e4de89375d45b3335fda0fbb0a9207148ec592bc6adccba038a5cb4a4053f6bb6ab04d0269542f8a
7
- data.tar.gz: 0ae9b9a2d3a857504eec775a06c7c7380dd0f668f80dcc9723265952cf2478d4c93978cb7b8cb28b24d74b8c397684c76cfada9d3e18de5675c4c44420dbe0ff
6
+ metadata.gz: ea2765fb00721d179dfd2c273d758a69cd748c9f2bcf9c1d6b5e4b9ac8fc3e24166efe207c8e7a412e5b9dc7a10fd35692d11083737561aaa61b17215c7658e0
7
+ data.tar.gz: 531177786817a21ff57ee0a17be3e19d27d9e02ef277f4d330604ca086c49e8557e7a1d1447add328e092f4f157802e4efca41a3be76bb32814debb685bd243d
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sottolio (0.1.2)
4
+ sottolio (0.1.3)
5
5
  opal (~> 0.8)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -27,8 +27,5 @@ The [demo](http://www.giovannicapuano.net/sottolio/) is also available in the we
27
27
 
28
28
  FAQ
29
29
  ===
30
- **Q**: I can't see one or more assets (girls, images, sounds or whatever)
31
- *R*: This is a well known bug. Please refresh the page.
32
-
33
- **Q**: I have problems with $browser (with $browser != Firefox)
34
- *R*: Currently Fiefox is the only stable browser where sottolio runs correctly. This definitely is considered a well known bug.
30
+ **Q**: I can't see one or more assets (girls, images, sounds or whatever) on Chrome
31
+ *R*: This is a well known bug. Please refresh the page thrice.
@@ -17,7 +17,7 @@
17
17
  # You should have received a copy of the GNU General Public License
18
18
  # along with sottolio. If not, see <http://www.gnu.org/licenses/>.
19
19
  #++
20
- require 'sottolio'
20
+ require_relative '../lib/sottolio/sottolio'
21
21
 
22
22
  abort 'Usage: sottolio <scripts> <output>' if ARGV.length != 2
23
23
 
@@ -15,7 +15,7 @@
15
15
  Your browser is not accepted here. Pick another one.
16
16
  </canvas> <img id="next" src="resources/right_arrow.png">
17
17
 
18
- <script src="sottolio.min.js"></script>
18
+ <script src="sottolio.js"></script>
19
19
  <script src="include/canvasinput.js"></script>
20
20
  </body>
21
21
  </html>
@@ -17,5 +17,5 @@
17
17
  # along with sottolio. If not, see <http://www.gnu.org/licenses/>.
18
18
  #++
19
19
  module Sottolio
20
- VERSION = '0.1.2'
20
+ VERSION = '0.1.3'
21
21
  end
@@ -31,8 +31,8 @@ module Sottolio
31
31
  @y = y
32
32
  end
33
33
 
34
- def on_load(callbac)
35
- `#@image.onload = callbac`
34
+ def on_load(callback)
35
+ `#@image.onload = callback`
36
36
  end
37
37
 
38
38
  def draw_image(*args)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sottolio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Giovanni Capuano