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 +4 -4
- data/README.md +7 -1
- 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: 89e1d4e1a686bf9bd7064233c38e8f3b124dc2dc
|
4
|
+
data.tar.gz: d633b549ccdb593ef84468e76f6c591df7470d72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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.
|