easyload 0.1.0 → 0.1.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.
@@ -0,0 +1,3 @@
1
+ --no-private
2
+ --main README.md
3
+ --plugin easyload
data/Gemfile CHANGED
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- source "http://rubygems.org"
2
+ source 'http://rubygems.org'
3
3
 
4
4
  # Specify your gem's dependencies in Easyload.gemspec
5
5
  gemspec
@@ -19,5 +19,7 @@ Gem::Specification.new do |s|
19
19
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
20
  s.require_paths = ['lib']
21
21
 
22
- s.add_development_dependency('rspec', ['~> 2.5.0'])
22
+ s.add_development_dependency('rspec', ['~> 2.5.0'])
23
+ s.add_development_dependency('yard', ['~> 0.6.4'])
24
+ s.add_development_dependency('bluecloth', ['~> 2.0.11'])
23
25
  end
@@ -17,4 +17,4 @@ module Easyload
17
17
  in_mod.easyload_from(components.join('/'))
18
18
  end
19
19
  end
20
- end
20
+ end
@@ -66,7 +66,7 @@ module Easyload
66
66
  end
67
67
  end
68
68
 
69
- return super(sym)
69
+ raise NameError("Unknown constant #{self}::#{sym} - tried to easyload it from '#{@easyload_root}/#{path_component}'", sym)
70
70
  end
71
71
  end
72
- end
72
+ end
@@ -1,4 +1,4 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  module Easyload
3
- VERSION = '0.1.0'
4
- end
3
+ VERSION = '0.1.1'
4
+ end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Ian MacLeod
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2011-02-13 00:00:00 -08:00
17
+ date: 2011-02-22 00:00:00 -08:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -32,6 +32,36 @@ dependencies:
32
32
  version: 2.5.0
33
33
  type: :development
34
34
  version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: yard
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ segments:
44
+ - 0
45
+ - 6
46
+ - 4
47
+ version: 0.6.4
48
+ type: :development
49
+ version_requirements: *id002
50
+ - !ruby/object:Gem::Dependency
51
+ name: bluecloth
52
+ prerelease: false
53
+ requirement: &id003 !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ~>
57
+ - !ruby/object:Gem::Version
58
+ segments:
59
+ - 2
60
+ - 0
61
+ - 11
62
+ version: 2.0.11
63
+ type: :development
64
+ version_requirements: *id003
35
65
  description: An alternative to autoload that relies on your project's directory structure to determine its module hierarchy, recursively.
36
66
  email:
37
67
  - ian@nevir.net
@@ -43,6 +73,7 @@ extra_rdoc_files: []
43
73
 
44
74
  files:
45
75
  - .gitignore
76
+ - .yardopts
46
77
  - Gemfile
47
78
  - README.md
48
79
  - Rakefile