socialcalc-rails 0.1.2 → 0.1.3

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: 89e1d4e1a686bf9bd7064233c38e8f3b124dc2dc
4
- data.tar.gz: d633b549ccdb593ef84468e76f6c591df7470d72
3
+ metadata.gz: d12cadcda5856eb4069d7eb3dd3de9ad51dd8d2d
4
+ data.tar.gz: f5a6a9720bd5cdd45761bbfca7d762519a8b984c
5
5
  SHA512:
6
- metadata.gz: 5fa716ae0f7f3cd26f56e378117f68b5209b48dfdfb6c4dc9a1ced4d5cc73352146aaf59f72d46e25e47d6c56416f0b0cd0aac86e7c04d32e840628515f62802
7
- data.tar.gz: 09da1e3339dbdda8b5480e355a443a17710f4e97e9e44e582946578f1a0bb805bcd853cea1b81af0d4c38f8ee4bf355b4ce9e2a9ea69bfb28613ca3f3622f966
6
+ metadata.gz: aaadd4a4cbfd2995d2eca26c0c7b2994a292bae32b7c6cb1321266067366dc52933da994a1bc377df6618be8e495354f2dfa53fed928e5d82425261996ccf9d9
7
+ data.tar.gz: 7ce208c34961858fe2fd01f9861e8f55b5f5b6402f20d4134bb2fe5408fda081c744785c3a3500884f0b4051ab62eb6feacbbf8ae324e9c06904e4dd8a386217
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Socialcalc::Rails
1
+ # Socialcalc-rails gem
2
2
 
3
3
  [SocialCalc](https://github.com/marcelklehr/socialcalc) is a great JavaScript-based spreadsheet working on web browsers. However, it is a bit difficult to use it with Ruby on Rails applications because there is little information on it. Therefore, I have created a gem that allows you to use SocialCalc spreadsheets on Ruby on Rails application with ease.
4
4
 
@@ -1,5 +1,5 @@
1
1
  module Socialcalc
2
2
  module Rails
3
- VERSION = '0.1.2'
3
+ VERSION = '0.1.3'
4
4
  end
5
5
  end
@@ -16,7 +16,7 @@
16
16
  control.sheet.ParseSheetSave(content);
17
17
  control.sheet.ScheduleSheetCommands('recalc', false, false);
18
18
 
19
- key_event_handler = function(event_type, e) {
19
+ var key_event_handler = function(event_type, e) {
20
20
  if (!$.contains(_spreadsheet_element, e.target)) {
21
21
  e.stopPropagation();
22
22
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: socialcalc-rails
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
  - Eiji Sakai
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-21 00:00:00.000000000 Z
11
+ date: 2016-12-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Allows you to use Socialcalc, a JavaScript-based spreadsheet, on Ruby
14
14
  on Rails web applications.