sinatra_autoload 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +23 -0
- data/Gemfile +8 -0
- data/LICENSE +20 -0
- data/README.rdoc +38 -0
- data/Rakefile +51 -0
- data/VERSION +1 -0
- data/bin/autospec +3 -0
- data/bin/rackup +3 -0
- data/bin/rcov +3 -0
- data/bin/spec +3 -0
- data/bin/yard-graph +3 -0
- data/bin/yardoc +3 -0
- data/bin/yri +3 -0
- data/lib/sinatra_autoload/autoload.rb +23 -0
- data/lib/sinatra_autoload/classify.rb +11 -0
- data/lib/sinatra_autoload.rb +2 -0
- data/spec/sinatra_autoload_spec.rb +5 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +15 -0
- metadata +76 -0
data/.document
ADDED
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Justin Smestad
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
= sinatra_autoload
|
2
|
+
|
3
|
+
Do not load files into memory until they are accessed / needed inside your application.
|
4
|
+
|
5
|
+
== Usage
|
6
|
+
|
7
|
+
require 'sinatra'
|
8
|
+
require 'sinatra_autoload'
|
9
|
+
|
10
|
+
SinatraAutoload.directories('models', 'lib', 'modules')
|
11
|
+
|
12
|
+
class MyApplication < Sinatra::Base
|
13
|
+
|
14
|
+
get '/users/:user_id' do
|
15
|
+
User.get(params["user_id"]) # User model is now loaded.
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
|
20
|
+
== Note on Patches/Pull Requests
|
21
|
+
|
22
|
+
* Fork the project.
|
23
|
+
* Make your feature addition or bug fix.
|
24
|
+
* Add tests for it. This is important so I don't break it in a
|
25
|
+
future version unintentionally.
|
26
|
+
* Commit, do not mess with rakefile, version, or history.
|
27
|
+
(if you want to have your own version, that is fine but
|
28
|
+
bump version in a commit by itself I can ignore when I pull)
|
29
|
+
* Send me a pull request. Bonus points for topic branches.
|
30
|
+
|
31
|
+
== Contributers
|
32
|
+
|
33
|
+
* Justin Smestad (http://github.com/jsmestad)
|
34
|
+
* Gabe Varela (http://github.com/gvarela)
|
35
|
+
|
36
|
+
== Copyright
|
37
|
+
|
38
|
+
Copyright (c) 2009 Justin Smestad. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
require 'bundler'
|
4
|
+
|
5
|
+
begin
|
6
|
+
require 'jeweler'
|
7
|
+
Jeweler::Tasks.new do |gem|
|
8
|
+
gem.name = "sinatra_autoload"
|
9
|
+
gem.summary = %Q{Auto loader for required sinatra files.}
|
10
|
+
gem.description = %Q{Do not load files into memory until they are accessed / needed inside your application.}
|
11
|
+
gem.email = "justin.smestad@gmail.com"
|
12
|
+
gem.homepage = "http://github.com/jsmestad/sinatra_autoload"
|
13
|
+
gem.authors = ["Justin Smestad", "Gabe Varela"]
|
14
|
+
|
15
|
+
manifest = Bundler::Environment.load(File.dirname(__FILE__) + '/Gemfile')
|
16
|
+
manifest.dependencies.each do |d|
|
17
|
+
next if d.only && d.only.include?('test')
|
18
|
+
gem.add_dependency(d.name, d.version)
|
19
|
+
end
|
20
|
+
|
21
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
22
|
+
end
|
23
|
+
Jeweler::GemcutterTasks.new
|
24
|
+
rescue LoadError
|
25
|
+
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
26
|
+
end
|
27
|
+
|
28
|
+
require 'spec/rake/spectask'
|
29
|
+
Spec::Rake::SpecTask.new(:spec) do |spec|
|
30
|
+
spec.libs << 'lib' << 'spec'
|
31
|
+
spec.spec_files = FileList['spec/**/*_spec.rb']
|
32
|
+
end
|
33
|
+
|
34
|
+
Spec::Rake::SpecTask.new(:rcov) do |spec|
|
35
|
+
spec.libs << 'lib' << 'spec'
|
36
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
37
|
+
spec.rcov = true
|
38
|
+
end
|
39
|
+
|
40
|
+
task :spec => :check_dependencies
|
41
|
+
|
42
|
+
task :default => :spec
|
43
|
+
|
44
|
+
begin
|
45
|
+
require 'yard'
|
46
|
+
YARD::Rake::YardocTask.new
|
47
|
+
rescue LoadError
|
48
|
+
task :yardoc do
|
49
|
+
abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard"
|
50
|
+
end
|
51
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.1
|
data/bin/autospec
ADDED
data/bin/rackup
ADDED
data/bin/rcov
ADDED
data/bin/spec
ADDED
data/bin/yard-graph
ADDED
data/bin/yardoc
ADDED
data/bin/yri
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'singleton'
|
2
|
+
|
3
|
+
module SinatraAutoload
|
4
|
+
@@root_path = nil
|
5
|
+
|
6
|
+
def self.root_path
|
7
|
+
@@root_path
|
8
|
+
end
|
9
|
+
|
10
|
+
def self.root_path=(path)
|
11
|
+
@@root_path = path
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.directories(*args)
|
15
|
+
return unless args
|
16
|
+
args.each do |file_path|
|
17
|
+
Dir[ File.join( @root_path, file_path, '/**/*.rb') ].each do |file|
|
18
|
+
require file
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
data/spec/spec.opts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
2
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
3
|
+
|
4
|
+
ENV['RACK_ENV'] ||= 'test'
|
5
|
+
project_root = File.expand_path(File.dirname(__FILE__))
|
6
|
+
require File.join(project_root, '..', 'vendor', 'gems', 'environment')
|
7
|
+
Bundler.require_env(:test)
|
8
|
+
|
9
|
+
require 'sinatra_autoload'
|
10
|
+
require 'spec'
|
11
|
+
require 'spec/autorun'
|
12
|
+
|
13
|
+
Spec::Runner.configure do |config|
|
14
|
+
|
15
|
+
end
|
metadata
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sinatra_autoload
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Justin Smestad
|
8
|
+
- Gabe Varela
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2009-10-23 00:00:00 -06:00
|
14
|
+
default_executable:
|
15
|
+
dependencies: []
|
16
|
+
|
17
|
+
description: Do not load files into memory until they are accessed / needed inside your application.
|
18
|
+
email: justin.smestad@gmail.com
|
19
|
+
executables:
|
20
|
+
- autospec
|
21
|
+
- rackup
|
22
|
+
- rcov
|
23
|
+
- spec
|
24
|
+
- yard-graph
|
25
|
+
- yardoc
|
26
|
+
- yri
|
27
|
+
extensions: []
|
28
|
+
|
29
|
+
extra_rdoc_files:
|
30
|
+
- LICENSE
|
31
|
+
- README.rdoc
|
32
|
+
files:
|
33
|
+
- .document
|
34
|
+
- .gitignore
|
35
|
+
- Gemfile
|
36
|
+
- LICENSE
|
37
|
+
- README.rdoc
|
38
|
+
- Rakefile
|
39
|
+
- VERSION
|
40
|
+
- lib/sinatra_autoload.rb
|
41
|
+
- lib/sinatra_autoload/autoload.rb
|
42
|
+
- lib/sinatra_autoload/classify.rb
|
43
|
+
- spec/sinatra_autoload_spec.rb
|
44
|
+
- spec/spec.opts
|
45
|
+
- spec/spec_helper.rb
|
46
|
+
has_rdoc: true
|
47
|
+
homepage: http://github.com/jsmestad/sinatra_autoload
|
48
|
+
licenses: []
|
49
|
+
|
50
|
+
post_install_message:
|
51
|
+
rdoc_options:
|
52
|
+
- --charset=UTF-8
|
53
|
+
require_paths:
|
54
|
+
- lib
|
55
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: "0"
|
60
|
+
version:
|
61
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: "0"
|
66
|
+
version:
|
67
|
+
requirements: []
|
68
|
+
|
69
|
+
rubyforge_project:
|
70
|
+
rubygems_version: 1.3.5
|
71
|
+
signing_key:
|
72
|
+
specification_version: 3
|
73
|
+
summary: Auto loader for required sinatra files.
|
74
|
+
test_files:
|
75
|
+
- spec/sinatra_autoload_spec.rb
|
76
|
+
- spec/spec_helper.rb
|