asset_finder 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +21 -0
- data/README.md +5 -6
- data/Rakefile +8 -0
- data/asset_finder.gemspec +1 -0
- data/lib/asset_finder/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ebeb3db884b8722416fb6e2ba769af2e9e4253df
|
4
|
+
data.tar.gz: 9b8905f4dad83ad8b7e1935be409019d0eae3ea8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51374fbf68cf625e8b125807a3bb87a7fb367ea37742edcc5de0f44ca19df33ef6558a834ad9e61d24d94c995e1204387352c582473cd9e003274c4c7f82081b
|
7
|
+
data.tar.gz: 064a69c4f5d7f23cbe875c51fdf445b435ece8f18eb1b0103480b2699840b462849e060fa4d8906cf2aaf80fa7ab57db1069f5cfa09b3f75c76699e007326441
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Takahiro Ooishi
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
@@ -1,8 +1,11 @@
|
|
1
1
|
# AssetFinder
|
2
2
|
|
3
|
-
|
3
|
+
Find javascripts and stylesheets for `rake asset:precompile`.
|
4
4
|
|
5
|
-
|
5
|
+
## Build Status
|
6
|
+
|
7
|
+
### master
|
8
|
+
[![Build Status](https://travis-ci.org/taka0125/asset_finder.svg?branch=master)](https://travis-ci.org/taka0125/asset_finder)
|
6
9
|
|
7
10
|
## Installation
|
8
11
|
|
@@ -20,10 +23,6 @@ Or install it yourself as:
|
|
20
23
|
|
21
24
|
$ gem install asset_finder
|
22
25
|
|
23
|
-
## Usage
|
24
|
-
|
25
|
-
TODO: Write usage instructions here
|
26
|
-
|
27
26
|
## Development
|
28
27
|
|
29
28
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/Rakefile
CHANGED
data/asset_finder.gemspec
CHANGED
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.summary = %q{Find javascripts and stylesheets for `rake asset:precompile`.}
|
13
13
|
spec.description = %q{Find javascripts and stylesheets. Configure precompile path.}
|
14
14
|
spec.homepage = "https://github.com/taka0125/asset_finder"
|
15
|
+
spec.license = "MIT"
|
15
16
|
|
16
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
18
|
spec.bindir = "exe"
|
data/lib/asset_finder/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: asset_finder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Takahiro Ooishi
|
@@ -83,6 +83,7 @@ files:
|
|
83
83
|
- ".rspec"
|
84
84
|
- ".travis.yml"
|
85
85
|
- Gemfile
|
86
|
+
- LICENSE
|
86
87
|
- README.md
|
87
88
|
- Rakefile
|
88
89
|
- asset_finder.gemspec
|
@@ -97,7 +98,8 @@ files:
|
|
97
98
|
- lib/asset_finder/stylesheet/normalizer.rb
|
98
99
|
- lib/asset_finder/version.rb
|
99
100
|
homepage: https://github.com/taka0125/asset_finder
|
100
|
-
licenses:
|
101
|
+
licenses:
|
102
|
+
- MIT
|
101
103
|
metadata: {}
|
102
104
|
post_install_message:
|
103
105
|
rdoc_options: []
|