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 +4 -4
- data/README.md +5 -4
- data/lib/socialcalc/rails/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd1575d426d19a203b42be9baa4563ec6519c822
|
4
|
+
data.tar.gz: b03a4670fcccb5cef8dd704b4cb7f24aecf96632
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c776332e81e821fc3a8f1f14f39f00168fec07d4e7163245e82339fe1097ab5ab0b74aa576af10501eafca3f030255cee6f9289cbb7ff4e1c0c7a54ec2faddf8
|
7
|
+
data.tar.gz: 66ecefbd110e38339301582f08c5ddf8a508c5a96ae31a60678d460b88a9d933bd5a5d4a18edab4a4b18847b427322321c385cb7bae686cf12daa09fb9779609
|
data/README.md
CHANGED
@@ -1,11 +1,11 @@
|
|
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
4
|
|
4
5
|
## Usage
|
5
|
-
|
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
|
-
|
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.
|