classnames-rails 0.1.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +8 -0
- data/.gitignore +1 -0
- data/.travis.yml +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +4 -0
- data/Rakefile +6 -0
- data/classnames-rails.gemspec +1 -0
- data/lib/classnames/rails/version.rb +1 -1
- metadata +18 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38016af519add117dbcb0c83dd2d684add7bf72b
|
4
|
+
data.tar.gz: 6dd2860a30275c4beb97fbb0cb1a4a9c4a8f4b5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f272c029dc21a587f271f2b283c6db4393bbd3359f0617282bb5ee68d8af087888ea4a3aa195f71a5a57e23acf6df4c397392847160e48218b406c28b07352f0
|
7
|
+
data.tar.gz: 68ff81d4c5cc2faf408fd9ab8f9aef350219d83edbc51299e102cc477861cf4a909f956bb94743625569298020f8828189d4611c87ad8e3568dc1144d3017efa
|
data/.codeclimate.yml
ADDED
data/.gitignore
CHANGED
data/.travis.yml
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Calvert
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
+
[![Gem Version](https://badge.fury.io/rb/classnames-rails.svg)](http://badge.fury.io/rb/classnames-rails)
|
2
|
+
[![Code Climate](https://codeclimate.com/github/andyyou/classnames-rails/badges/gpa.svg)](https://codeclimate.com/github/andyyou/classnames-rails)
|
3
|
+
[![Travis](https://travis-ci.org/andyyou/classnames-rails.svg?branch=master)](https://travis-ci.org/andyyou/classnames-rails)
|
1
4
|
# classnames-rails
|
5
|
+
|
2
6
|
Classnames for Rails - a gem package fork from [classnames](https://github.com/JedWatson/classnames).
|
3
7
|
A simple javascript utility for conditionally joining classNames together.
|
4
8
|
|
data/Rakefile
CHANGED
data/classnames-rails.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: classnames-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- andyyou
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: jasmine
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 2.3.0
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 2.3.0
|
41
55
|
description: A simple utility for conditionally joining classNames together. Fork
|
42
56
|
from classnames of javascript
|
43
57
|
email:
|
@@ -46,8 +60,11 @@ executables: []
|
|
46
60
|
extensions: []
|
47
61
|
extra_rdoc_files: []
|
48
62
|
files:
|
63
|
+
- ".codeclimate.yml"
|
49
64
|
- ".gitignore"
|
65
|
+
- ".travis.yml"
|
50
66
|
- Gemfile
|
67
|
+
- LICENSE.txt
|
51
68
|
- README.md
|
52
69
|
- Rakefile
|
53
70
|
- bin/console
|