socialcalc-rails 0.1.0 → 0.1.1

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: 38b9da7e9582c22cb89bcef9adf0144906748892
4
- data.tar.gz: da736763d6f364f72e2714e190876efaaaa7510c
3
+ metadata.gz: fd1575d426d19a203b42be9baa4563ec6519c822
4
+ data.tar.gz: b03a4670fcccb5cef8dd704b4cb7f24aecf96632
5
5
  SHA512:
6
- metadata.gz: 4a8968f7072d369d9ec34850457c6d959abbdea0fedc37030acd2d42e74f9fca4cdec6857a9252179d0a2ef150edeb1db0641bbd39add9ef3ca30c4bf6f8b555
7
- data.tar.gz: c2c3f630b65003e286523046b8040a22f755fedf0bed299cec38c8400f63cb7e7a5daa9af3ee55501caf0739e598561500fac27f5f8262c7bd12666e84bb4ea4
6
+ metadata.gz: c776332e81e821fc3a8f1f14f39f00168fec07d4e7163245e82339fe1097ab5ab0b74aa576af10501eafca3f030255cee6f9289cbb7ff4e1c0c7a54ec2faddf8
7
+ data.tar.gz: 66ecefbd110e38339301582f08c5ddf8a508c5a96ae31a60678d460b88a9d933bd5a5d4a18edab4a4b18847b427322321c385cb7bae686cf12daa09fb9779609
data/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # Socialcalc::Rails
2
- Short description and motivation.
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
4
 
4
5
  ## Usage
5
- How to use my plugin.
6
+ See a sample Rails application at https://github.com/elm200/socialcalc-rails-sample.
6
7
 
7
8
  ## Installation
8
- Add this line to your application's Gemfile:
9
9
 
10
10
  ```ruby
11
11
  gem 'socialcalc-rails'
@@ -22,7 +22,8 @@ $ gem install socialcalc-rails
22
22
  ```
23
23
 
24
24
  ## Contributing
25
- Contribution directions go here.
25
+ Thanks for Socialcalc maintenance team's help.
26
26
 
27
27
  ## License
28
28
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
29
+ Note that Socialcalc software itself is not under the terms of MIT License.
@@ -1,5 +1,5 @@
1
1
  module Socialcalc
2
2
  module Rails
3
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eiji Sakai