asset_finder 1.0.0 → 1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0f2fc8201d1a059c55f43ad00e9bbce3f31e4fd5
4
- data.tar.gz: 045d6c43ea34c4b8136de9a257ffdc3d6203e56f
3
+ metadata.gz: ebeb3db884b8722416fb6e2ba769af2e9e4253df
4
+ data.tar.gz: 9b8905f4dad83ad8b7e1935be409019d0eae3ea8
5
5
  SHA512:
6
- metadata.gz: 52da41d562fe1dde1ac8c51653d3c099712d1730a66e0bf1edceb833800cad06a18540538015d3b3833cfd296d22f3850172e37fd07cc6b8981b79b1344239be
7
- data.tar.gz: 1ddd257e6220999ae42b156a7811e51c93656f4ef213a5a11663fb712a0639a222c5d3404a92a1be0c0267dfbbf4eca7edc9af80fa2859d62d02f0dc9480a872
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
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/asset_finder`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Find javascripts and stylesheets for `rake asset:precompile`.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
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
@@ -1 +1,9 @@
1
1
  require "bundler/gem_tasks"
2
+
3
+ require 'rspec/core/rake_task'
4
+
5
+ task :default => [:spec]
6
+
7
+ RSpec::Core::RakeTask.new(:spec) do |spec|
8
+ spec.pattern = 'spec/**/*_spec.rb'
9
+ end
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"
@@ -1,3 +1,3 @@
1
1
  module AssetFinder
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
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.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: []