cash-rails 0.0.1 → 1.3.4
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 -4
- data/cash-rails.gemspec +2 -2
- data/lib/cash-rails.rb +1 -0
- data/lib/cash/rails.rb +2 -0
- data/lib/cash/rails/engine.rb +6 -0
- data/lib/cash/rails/version.rb +1 -1
- metadata +7 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 23bed224de3bcc6682fae58f9ac4fa1124648a37
|
|
4
|
+
data.tar.gz: 12632e515381025e748539db49eedaaa7361b8f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 63c45c51110a2150000f769502674b22f1d791a8734899a2896276c1b2c9ce45cb88b504eb3713d5cc102fc848beceeef4bebb47e1741b9767d74fa600337eff
|
|
7
|
+
data.tar.gz: f885025566767eb45fa2ca42a6bb2a994a03d5b6eb216caab7fc97895a2b3ca87febd3080da447bd954e91b359a58886915ca0b1c5d4f17938338a185be5b9d3
|
data/README.md
CHANGED
|
@@ -2,13 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
Provides [cash](https://github.com/kenwheeler/cash), an absurdly small jQuery alternative for modern browsers, for your Rails application.
|
|
4
4
|
|
|
5
|
+
### Installation
|
|
5
6
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
Add the following line to your Gemfile.
|
|
7
|
+
Inside your Gemfile add the following line:
|
|
9
8
|
|
|
10
9
|
gem 'cash-rails'
|
|
11
10
|
|
|
12
|
-
|
|
11
|
+
Then run `bundle install` to install the gem.
|
|
12
|
+
|
|
13
|
+
Now add the following line to `app/assets/javascripts/application.js` or any other JavaScript or CoffeScript file in your Rails application.
|
|
13
14
|
|
|
14
15
|
//= require cash
|
|
16
|
+
|
|
17
|
+
The cash JavaScript file will be added to the asset pipeline and available for you to use.
|
data/cash-rails.gemspec
CHANGED
|
@@ -5,8 +5,8 @@ Gem::Specification.new do |spec|
|
|
|
5
5
|
spec.version = Cash::Rails::VERSION
|
|
6
6
|
spec.authors = ['Martin Jagusch']
|
|
7
7
|
spec.email = ['_@mj.io']
|
|
8
|
-
spec.
|
|
9
|
-
spec.
|
|
8
|
+
spec.description = 'Provides cash, an absurdly small jQuery alternative for modern browsers, for your Rails application.'
|
|
9
|
+
spec.summary = 'cash a jQuery alternative'
|
|
10
10
|
spec.homepage = 'https://github.com/mjio/cash-rails'
|
|
11
11
|
spec.license = 'MIT'
|
|
12
12
|
|
data/lib/cash-rails.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'cash/rails'
|
data/lib/cash/rails.rb
ADDED
data/lib/cash/rails/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cash-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Martin Jagusch
|
|
@@ -38,8 +38,8 @@ dependencies:
|
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '10.0'
|
|
41
|
-
description:
|
|
42
|
-
|
|
41
|
+
description: Provides cash, an absurdly small jQuery alternative for modern browsers,
|
|
42
|
+
for your Rails application.
|
|
43
43
|
email:
|
|
44
44
|
- _@mj.io
|
|
45
45
|
executables: []
|
|
@@ -52,6 +52,9 @@ files:
|
|
|
52
52
|
- README.md
|
|
53
53
|
- Rakefile
|
|
54
54
|
- cash-rails.gemspec
|
|
55
|
+
- lib/cash-rails.rb
|
|
56
|
+
- lib/cash/rails.rb
|
|
57
|
+
- lib/cash/rails/engine.rb
|
|
55
58
|
- lib/cash/rails/version.rb
|
|
56
59
|
- vendor/assets/javascripts/cash.js
|
|
57
60
|
- vendor/assets/javascripts/cash.min.js
|
|
@@ -78,6 +81,5 @@ rubyforge_project:
|
|
|
78
81
|
rubygems_version: 2.6.4
|
|
79
82
|
signing_key:
|
|
80
83
|
specification_version: 4
|
|
81
|
-
summary:
|
|
82
|
-
for your Rails application.
|
|
84
|
+
summary: cash a jQuery alternative
|
|
83
85
|
test_files: []
|