parsejs-rails 1.2.0.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.
- data/LICENSE +22 -0
- data/README.md +19 -0
- data/lib/parsejs-rails/version.rb +5 -0
- data/lib/parsejs-rails.rb +8 -0
- data/vendor/assets/javascripts/parse.js +7438 -0
- metadata +73 -0
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Nik Macintosh
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# parsejs-rails
|
2
|
+
|
3
|
+
The Parse Javascript SDK as an asset for Rails 3.
|
4
|
+
|
5
|
+
This gem provides:
|
6
|
+
|
7
|
+
- Parse Javascript SDK 1.2.0
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
gem "parsejs-rails"
|
12
|
+
|
13
|
+
And run `bundle install`. The rest of the installation depends on whether the asset pipeline is being used.
|
14
|
+
|
15
|
+
## Rails 3.1 or greater (with asset pipeline enabled)
|
16
|
+
|
17
|
+
The parsejs-rails file will be added to the asset pipeline and available for you to use. If it's not already in `app/assets/javascripts/application.js` by default, add these lines:
|
18
|
+
|
19
|
+
//= require parse
|