socialcalc-rails 0.1.1 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fd1575d426d19a203b42be9baa4563ec6519c822
4
- data.tar.gz: b03a4670fcccb5cef8dd704b4cb7f24aecf96632
3
+ metadata.gz: 89e1d4e1a686bf9bd7064233c38e8f3b124dc2dc
4
+ data.tar.gz: d633b549ccdb593ef84468e76f6c591df7470d72
5
5
  SHA512:
6
- metadata.gz: c776332e81e821fc3a8f1f14f39f00168fec07d4e7163245e82339fe1097ab5ab0b74aa576af10501eafca3f030255cee6f9289cbb7ff4e1c0c7a54ec2faddf8
7
- data.tar.gz: 66ecefbd110e38339301582f08c5ddf8a508c5a96ae31a60678d460b88a9d933bd5a5d4a18edab4a4b18847b427322321c385cb7bae686cf12daa09fb9779609
6
+ metadata.gz: 5fa716ae0f7f3cd26f56e378117f68b5209b48dfdfb6c4dc9a1ced4d5cc73352146aaf59f72d46e25e47d6c56416f0b0cd0aac86e7c04d32e840628515f62802
7
+ data.tar.gz: 09da1e3339dbdda8b5480e355a443a17710f4e97e9e44e582946578f1a0bb805bcd853cea1b81af0d4c38f8ee4bf355b4ce9e2a9ea69bfb28613ca3f3622f966
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Socialcalc::Rails
2
2
 
3
- SocialCalc is a great JavaScript-based spreadsheet working on web browsers. However, it was a bit difficult to use it with Ruby on Rails applications because there is little information on it. Therefore, I created a gem that allows you to use SocialCalc spreadsheets on Ruby on Rails application with ease.
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
 
5
5
  ## Usage
6
6
  See a sample Rails application at https://github.com/elm200/socialcalc-rails-sample.
@@ -20,6 +20,12 @@ Or install it yourself as:
20
20
  ```bash
21
21
  $ gem install socialcalc-rails
22
22
  ```
23
+ ## Generators
24
+
25
+ ```bash
26
+ $ rails g socialcalc:images
27
+ ```
28
+ This command lets you to have SocialCalc related images installed under public/sc\_images/.
23
29
 
24
30
  ## Contributing
25
31
  Thanks for Socialcalc maintenance team's help.
@@ -1,5 +1,5 @@
1
1
  module Socialcalc
2
2
  module Rails
3
- VERSION = '0.1.1'
3
+ VERSION = '0.1.2'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: socialcalc-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eiji Sakai