partially_useful 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +2 -0
- data/lib/partially_useful/version.rb +1 -1
- data/partially_useful.gemspec +3 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db0acb9e7170ecf76a2213e54eefd5cfed8757d4
|
4
|
+
data.tar.gz: 875aa5b5f1697f7b724437cf2b533109cd4bdccc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6304798312b259f8cb05c8af760c54d29dde1c7c457e97850e784f28d6d4218931ee003b8bd0b6bd6acf4cfb3f725a4742aa6a9c0e246094a1855432b7b26df
|
7
|
+
data.tar.gz: 544a40ae37f3b85d031c1bcf3540ec5e62342c9d5ce1f7df88242574f9fa65836a69edcfe155f93c40d55ed3c6c76de272bd2f5589a40fced7e4dbf6b8924e04
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# PartiallyUseful
|
2
2
|
|
3
|
+
[![Build Status](https://img.shields.io/travis/phoet/partially_useful/master.svg)](https://travis-ci.org/phoet/asin)
|
4
|
+
|
3
5
|
When looking at a rendered html page, it's often hard to tell where the code of a partial lives inside the views directory.
|
4
6
|
|
5
7
|
Surrounds rendered partials with html-comments in order to simplify the process of finding the proper file.
|
data/partially_useful.gemspec
CHANGED
@@ -6,6 +6,7 @@ require 'partially_useful/version'
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "partially_useful"
|
8
8
|
spec.version = PartiallyUseful::VERSION
|
9
|
+
spec.platform = Gem::Platform::RUBY
|
9
10
|
spec.authors = ["phoet"]
|
10
11
|
spec.email = ["phoetmail@googlemail.com"]
|
11
12
|
spec.homepage = "https://github.com/phoet/partially_useful"
|
@@ -17,6 +18,8 @@ Gem::Specification.new do |spec|
|
|
17
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
19
|
spec.require_paths = ["lib"]
|
19
20
|
|
21
|
+
spec.required_ruby_version = '~> 2.0'
|
22
|
+
|
20
23
|
spec.add_dependency 'railties', '~> 4.0'
|
21
24
|
|
22
25
|
spec.add_development_dependency "bundler", "~> 1.6"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: partially_useful
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- phoet
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-05-
|
11
|
+
date: 2014-05-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -106,9 +106,9 @@ require_paths:
|
|
106
106
|
- lib
|
107
107
|
required_ruby_version: !ruby/object:Gem::Requirement
|
108
108
|
requirements:
|
109
|
-
- - "
|
109
|
+
- - "~>"
|
110
110
|
- !ruby/object:Gem::Version
|
111
|
-
version: '0'
|
111
|
+
version: '2.0'
|
112
112
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
113
113
|
requirements:
|
114
114
|
- - ">="
|