includer 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- metadata +20 -16
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# The Includer
|
1
|
+
# The Includer [![Build Status](https://secure.travis-ci.org/porras/includer.png)](http://travis-ci.org/porras/includer)
|
2
2
|
|
3
3
|
The Includer is an easy way to include files into another files, like we are used to do when programming (every language has its own variation of `load`, `require`, `import`, etc.) or in the web (Apache's [SSI](http://httpd.apache.org/docs/2.2/howto/ssi.html), PHP's [`include`](http://php.net/manual/en/function.include.php), Rails' [`render :partial`](http://api.rubyonrails.org/classes/ActionController/Base.html#M000658), etc.) but with any kind of file, under any circunstance.
|
4
4
|
|
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: includer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 25
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- "Sergio Gil P\xC3\xA9rez de la Manga"
|
@@ -9,19 +15,10 @@ autorequire:
|
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
17
|
|
12
|
-
date:
|
18
|
+
date: 2011-09-21 00:00:00 +02:00
|
13
19
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
16
|
-
name: rspec
|
17
|
-
type: :development
|
18
|
-
version_requirement:
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
20
|
-
requirements:
|
21
|
-
- - ">="
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: "0"
|
24
|
-
version:
|
20
|
+
dependencies: []
|
21
|
+
|
25
22
|
description:
|
26
23
|
email: sgilperez@gmail.com
|
27
24
|
executables:
|
@@ -35,6 +32,7 @@ files:
|
|
35
32
|
- lib/includer/includer.rb
|
36
33
|
- lib/includer.rb
|
37
34
|
- README.md
|
35
|
+
- bin/includer
|
38
36
|
has_rdoc: true
|
39
37
|
homepage: http://github.com/porras/includer
|
40
38
|
licenses: []
|
@@ -46,21 +44,27 @@ rdoc_options:
|
|
46
44
|
require_paths:
|
47
45
|
- lib
|
48
46
|
required_ruby_version: !ruby/object:Gem::Requirement
|
47
|
+
none: false
|
49
48
|
requirements:
|
50
49
|
- - ">="
|
51
50
|
- !ruby/object:Gem::Version
|
51
|
+
hash: 3
|
52
|
+
segments:
|
53
|
+
- 0
|
52
54
|
version: "0"
|
53
|
-
version:
|
54
55
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
55
57
|
requirements:
|
56
58
|
- - ">="
|
57
59
|
- !ruby/object:Gem::Version
|
60
|
+
hash: 3
|
61
|
+
segments:
|
62
|
+
- 0
|
58
63
|
version: "0"
|
59
|
-
version:
|
60
64
|
requirements: []
|
61
65
|
|
62
66
|
rubyforge_project:
|
63
|
-
rubygems_version: 1.
|
67
|
+
rubygems_version: 1.6.2
|
64
68
|
signing_key:
|
65
69
|
specification_version: 3
|
66
70
|
summary: Includes files into another files
|