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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e381bfb258ac25363624cb983ed93886f81f3fb7
4
- data.tar.gz: 7484d53ec3937aff052206ec4f2f40c945eedd15
3
+ metadata.gz: 23bed224de3bcc6682fae58f9ac4fa1124648a37
4
+ data.tar.gz: 12632e515381025e748539db49eedaaa7361b8f0
5
5
  SHA512:
6
- metadata.gz: e88e454e90ae4e1e3009cbfe95b5ddfa08bb626a39ec966899337cedd70d87bf5b1defa37d0a3e5f1c3f5d9d4ac40d43d44d83ca50e6d8c7e8724184148f6607
7
- data.tar.gz: b1a70849ff54528f81ed300c2fcdf26a1279191a664acf64b0826cd7008051b860ee625d97f8b814c5c9a4fd61b151b273234e26d7a3eb66143e7b992f3ddee8
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
- ## Installation
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
- The cash JavaScript files will be added to the asset pipeline and available for you to use. If they're not already in `app/assets/javascripts/application.js` by default, add these lines:
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.
@@ -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.summary = 'Provides cash, an absurdly small jQuery alternative for modern browsers, for your Rails application.'
9
- spec.description = 'Cash is a small library for modern browsers that provides jQuery style syntax for manipulating the DOM'
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
 
@@ -0,0 +1 @@
1
+ require 'cash/rails'
@@ -0,0 +1,2 @@
1
+ require 'cash/rails/engine'
2
+ require 'cash/rails/version'
@@ -0,0 +1,6 @@
1
+ module Cash
2
+ module Rails
3
+ class Engine < ::Rails::Engine
4
+ end
5
+ end
6
+ end
@@ -1,5 +1,5 @@
1
1
  module Cash
2
2
  module Rails
3
- VERSION = '0.0.1'
3
+ VERSION = '1.3.4'
4
4
  end
5
5
  end
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: 0.0.1
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: Cash is a small library for modern browsers that provides jQuery style
42
- syntax for manipulating the DOM
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: Provides cash, an absurdly small jQuery alternative for modern browsers,
82
- for your Rails application.
84
+ summary: cash a jQuery alternative
83
85
  test_files: []