class-loader 0.3.1 → 0.3.4
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.
- data/Rakefile +3 -3
- data/readme.md +1 -1
- metadata +5 -5
data/Rakefile
CHANGED
|
@@ -19,9 +19,9 @@ require 'fileutils'
|
|
|
19
19
|
|
|
20
20
|
spec = Gem::Specification.new do |s|
|
|
21
21
|
s.name = "class-loader"
|
|
22
|
-
s.version = "0.3.
|
|
23
|
-
s.summary = "
|
|
24
|
-
s.description = "
|
|
22
|
+
s.version = "0.3.4"
|
|
23
|
+
s.summary = "Automatically finds and loads classes"
|
|
24
|
+
s.description = "Automatically finds and loads classes"
|
|
25
25
|
s.author = "Alexey Petrushin"
|
|
26
26
|
# s.email = ""
|
|
27
27
|
s.homepage = "http://github.com/alexeypetrushin/class-loader"
|
data/readme.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Automatically finds and loads classes
|
|
2
2
|
|
|
3
3
|
## Overview
|
|
4
4
|
There's only one method - :autoload_dir, kind of turbocharged :autoload, it understands namespaces, figure out dependencies and can watch and reload changed files.
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: class-loader
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.3.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Alexey Petrushin
|
|
@@ -19,7 +19,7 @@ date: 2010-10-10 00:00:00 +04:00
|
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies: []
|
|
21
21
|
|
|
22
|
-
description:
|
|
22
|
+
description: Automatically finds and loads classes
|
|
23
23
|
email:
|
|
24
24
|
executables: []
|
|
25
25
|
|
|
@@ -90,6 +90,6 @@ rubyforge_project:
|
|
|
90
90
|
rubygems_version: 1.3.7
|
|
91
91
|
signing_key:
|
|
92
92
|
specification_version: 3
|
|
93
|
-
summary:
|
|
93
|
+
summary: Automatically finds and loads classes
|
|
94
94
|
test_files: []
|
|
95
95
|
|