rails-assets-jquery 2.2.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0208eb962233ad31960d03c48f395ddd4352c362
4
+ data.tar.gz: 5a019cf68d0273f7c97026aa02a8aab16e0b81bf
5
+ SHA512:
6
+ metadata.gz: 01ed6938466c28d5e68867592a3f678c244d231615dddc8a50f9367323690cc249de79fd2f73e2e9f2cb08655871685e4a70aaca8a9f1b6d84ba99c06b9ab470
7
+ data.tar.gz: 12e1f4aa699ab0c5e0216fea24e3506037436b50e620897d37a7ed6966a297b58b9e49d936a6fc1f62e384bc0829f7fba72888820da247a4a9179b81f524b5bd
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+ source 'https://rails-assets.org'
3
+
4
+ gemspec
data/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # rails-assets-jquery
2
+
3
+ > The Bower package inside a gem
4
+
5
+ This gem was automatically generated. You can visit [rails-assets.org](https://rails-assets.org) for more information.
6
+
7
+ ## Usage
8
+
9
+ Add rails-assets source block to your `Gemfile`:
10
+
11
+ ```ruby
12
+ source "https://rails-assets.org" do
13
+ gem "rails-assets-jquery"
14
+ end
15
+
16
+ ```
17
+
18
+ Then, import the asset using Sprockets’ `require` directive:
19
+
20
+ ```js
21
+ //= require "jquery"
22
+ ```
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'