javascript_auto_include 0.1.0 → 0.2.0
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/Gemfile +7 -3
- data/Gemfile.lock +69 -19
- data/README.markdown +44 -12
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/lib/javascript_auto_include.rb +5 -1
- data/lib/javascript_auto_include/dependency.rb +13 -0
- data/lib/javascript_auto_include/helpers/action_view.rb +72 -19
- data/lib/javascript_auto_include/source_file.rb +61 -0
- data/spec/dependency_spec.rb +19 -0
- data/spec/javascript_auto_include_spec.rb +11 -0
- data/spec/javascript_auto_include_tag_spec.rb +9 -0
- data/spec/source_file_spec.rb +52 -0
- data/spec/spec_helper.rb +21 -0
- data/spec/testbed/Gemfile +7 -0
- data/spec/testbed/Gemfile.lock +86 -0
- data/spec/testbed/Rakefile +7 -0
- data/spec/testbed/config.ru +4 -0
- data/spec/testbed/config/application.rb +45 -0
- data/spec/testbed/config/boot.rb +6 -0
- data/spec/testbed/config/dependencies/another_fake_controller.yml +3 -0
- data/spec/testbed/config/dependencies/application.yml +2 -0
- data/spec/testbed/config/dependencies/fake_controller.yml +4 -0
- data/spec/testbed/config/dependencies/jquery.yml +2 -0
- data/spec/testbed/config/dependencies/rails.yml +2 -0
- data/spec/testbed/config/environment.rb +5 -0
- data/spec/testbed/config/environments/development.rb +26 -0
- data/spec/testbed/config/environments/production.rb +49 -0
- data/spec/testbed/config/environments/test.rb +35 -0
- data/spec/testbed/config/routes.rb +58 -0
- data/spec/testbed/log/development.log +0 -0
- data/spec/testbed/log/production.log +0 -0
- data/spec/testbed/log/server.log +0 -0
- data/spec/testbed/log/test.log +8 -0
- data/spec/testbed/public/javascripts/another_fake_controller.js +14 -0
- data/spec/testbed/public/javascripts/application.js +1 -0
- data/spec/testbed/public/javascripts/fake_controller.js +15 -0
- data/spec/testbed/public/javascripts/jquery.js +8316 -0
- data/spec/testbed/public/javascripts/jquery.ui.core.js +312 -0
- data/spec/testbed/public/javascripts/jquery.ui.core.min.js +17 -0
- data/spec/testbed/public/javascripts/jquery.ui.mouse.js +160 -0
- data/spec/testbed/public/javascripts/jquery.ui.mouse.min.js +17 -0
- data/spec/testbed/public/javascripts/jquery.ui.widget.js +262 -0
- data/spec/testbed/public/javascripts/jquery.ui.widget.min.js +15 -0
- data/spec/testbed/public/javascripts/rails.js +289 -0
- metadata +95 -88
- data/.document +0 -5
- data/javascript_auto_include.gemspec +0 -60
@@ -0,0 +1,11 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
+
|
3
|
+
describe "javascript_auto_include_tag" do
|
4
|
+
|
5
|
+
it "infers main javscript file for controller/action"
|
6
|
+
|
7
|
+
it "uses detector to gather dependent files"
|
8
|
+
|
9
|
+
it "merges javascript includes with already present :defaults to return all required includes"
|
10
|
+
|
11
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
+
require 'yaml'
|
3
|
+
|
4
|
+
describe SourceFile do
|
5
|
+
|
6
|
+
before(:all) do
|
7
|
+
@conf = "#{::Rails.root}#{File::SEPARATOR}config#{File::SEPARATOR}dependencies"
|
8
|
+
if Dir.exists?(@conf)
|
9
|
+
Dir.entries(@conf).collect { |file| File.delete("#{@conf}#{File::SEPARATOR}#{file}") unless ['.'].include?(file) }
|
10
|
+
Dir.rmdir(@conf)
|
11
|
+
end
|
12
|
+
@test_array = ['jquery','rails','fake_controller','application']
|
13
|
+
@source = SourceFile.new(@test_array)
|
14
|
+
@dependencies = @source.dependencies
|
15
|
+
end
|
16
|
+
|
17
|
+
it "reads dependencies from javascript file" do
|
18
|
+
@dependencies.should eq(["jquery", "rails", "jquery.ui.core.js", "jquery.ui.mouse.js", "jquery.ui.widget.js", "fake_controller", "application"])
|
19
|
+
end
|
20
|
+
|
21
|
+
it "caches discoveries in config file" do
|
22
|
+
File.exists?("#{@conf}#{File::SEPARATOR}fake_controller.yml").should be_true
|
23
|
+
end
|
24
|
+
|
25
|
+
it "reads dependencies from config file" do
|
26
|
+
@source = SourceFile.new(@test_array)
|
27
|
+
@source.dependencies.should eq(["jquery", "rails", "jquery.ui.core.js", "jquery.ui.mouse.js", "jquery.ui.widget.js", "fake_controller", "application"])
|
28
|
+
end
|
29
|
+
|
30
|
+
it "does not re-check for dependencies unless forced to" do
|
31
|
+
@source = SourceFile.new(@test_array)
|
32
|
+
@source.dependencies(true).should eq(["jquery", "rails", "jquery.ui.core.js", "jquery.ui.mouse.js", "jquery.ui.widget.js", "fake_controller", "application"])
|
33
|
+
end
|
34
|
+
|
35
|
+
it "silently handles non-existant JS source files" do
|
36
|
+
@source = SourceFile.new(@test_array << 'hello')
|
37
|
+
@source.dependencies.should eq(["jquery", "rails", "jquery.ui.core.js", "jquery.ui.mouse.js", "jquery.ui.widget.js", "fake_controller", "application"])
|
38
|
+
end
|
39
|
+
|
40
|
+
it "can store multiple dependencies in one directory" do
|
41
|
+
SourceFile.new(['jquery','rails','another_fake_controller','application']).dependencies
|
42
|
+
File.exists?("#{@conf}#{File::SEPARATOR}fake_controller.yml").should be_true
|
43
|
+
File.exists?("#{@conf}#{File::SEPARATOR}another_fake_controller.yml").should be_true
|
44
|
+
end
|
45
|
+
|
46
|
+
it "uses minimized instead of regular versions in production environments" do
|
47
|
+
ENV["RAILS_ENV"] = 'production'
|
48
|
+
@source = SourceFile.new(@test_array)
|
49
|
+
@source.dependencies.should eq(["jquery", "rails", "jquery.ui.core.min.js", "jquery.ui.mouse.min.js", "jquery.ui.widget.min.js", "fake_controller", "application"])
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# Set environment
|
2
|
+
ENV["RAILS_ENV"] ||= 'test'
|
3
|
+
|
4
|
+
# Require basic Rails env
|
5
|
+
require File.expand_path("../testbed/config/environment.rb", __FILE__)
|
6
|
+
require 'rspec/rails'
|
7
|
+
require 'javascript_auto_include'
|
8
|
+
|
9
|
+
# Load support files
|
10
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
11
|
+
|
12
|
+
RSpec.configure do |config|
|
13
|
+
# == Mock Framework
|
14
|
+
#
|
15
|
+
# If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
|
16
|
+
#
|
17
|
+
# config.mock_with :mocha
|
18
|
+
# config.mock_with :flexmock
|
19
|
+
# config.mock_with :rr
|
20
|
+
config.mock_with :rspec
|
21
|
+
end
|
@@ -0,0 +1,86 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
abstract (1.0.0)
|
5
|
+
actionmailer (3.0.7)
|
6
|
+
actionpack (= 3.0.7)
|
7
|
+
mail (~> 2.2.15)
|
8
|
+
actionpack (3.0.7)
|
9
|
+
activemodel (= 3.0.7)
|
10
|
+
activesupport (= 3.0.7)
|
11
|
+
builder (~> 2.1.2)
|
12
|
+
erubis (~> 2.6.6)
|
13
|
+
i18n (~> 0.5.0)
|
14
|
+
rack (~> 1.2.1)
|
15
|
+
rack-mount (~> 0.6.14)
|
16
|
+
rack-test (~> 0.5.7)
|
17
|
+
tzinfo (~> 0.3.23)
|
18
|
+
activemodel (3.0.7)
|
19
|
+
activesupport (= 3.0.7)
|
20
|
+
builder (~> 2.1.2)
|
21
|
+
i18n (~> 0.5.0)
|
22
|
+
activerecord (3.0.7)
|
23
|
+
activemodel (= 3.0.7)
|
24
|
+
activesupport (= 3.0.7)
|
25
|
+
arel (~> 2.0.2)
|
26
|
+
tzinfo (~> 0.3.23)
|
27
|
+
activeresource (3.0.7)
|
28
|
+
activemodel (= 3.0.7)
|
29
|
+
activesupport (= 3.0.7)
|
30
|
+
activesupport (3.0.7)
|
31
|
+
arel (2.0.10)
|
32
|
+
builder (2.1.2)
|
33
|
+
diff-lcs (1.1.2)
|
34
|
+
erubis (2.6.6)
|
35
|
+
abstract (>= 1.0.0)
|
36
|
+
i18n (0.5.0)
|
37
|
+
mail (2.2.19)
|
38
|
+
activesupport (>= 2.3.6)
|
39
|
+
i18n (>= 0.4.0)
|
40
|
+
mime-types (~> 1.16)
|
41
|
+
treetop (~> 1.4.8)
|
42
|
+
mime-types (1.16)
|
43
|
+
polyglot (0.3.1)
|
44
|
+
rack (1.2.2)
|
45
|
+
rack-mount (0.6.14)
|
46
|
+
rack (>= 1.0.0)
|
47
|
+
rack-test (0.5.7)
|
48
|
+
rack (>= 1.0)
|
49
|
+
rails (3.0.7)
|
50
|
+
actionmailer (= 3.0.7)
|
51
|
+
actionpack (= 3.0.7)
|
52
|
+
activerecord (= 3.0.7)
|
53
|
+
activeresource (= 3.0.7)
|
54
|
+
activesupport (= 3.0.7)
|
55
|
+
bundler (~> 1.0)
|
56
|
+
railties (= 3.0.7)
|
57
|
+
railties (3.0.7)
|
58
|
+
actionpack (= 3.0.7)
|
59
|
+
activesupport (= 3.0.7)
|
60
|
+
rake (>= 0.8.7)
|
61
|
+
thor (~> 0.14.4)
|
62
|
+
rake (0.8.7)
|
63
|
+
rspec (2.6.0)
|
64
|
+
rspec-core (~> 2.6.0)
|
65
|
+
rspec-expectations (~> 2.6.0)
|
66
|
+
rspec-mocks (~> 2.6.0)
|
67
|
+
rspec-core (2.6.3)
|
68
|
+
rspec-expectations (2.6.0)
|
69
|
+
diff-lcs (~> 1.1.2)
|
70
|
+
rspec-mocks (2.6.0)
|
71
|
+
rspec-rails (2.6.1)
|
72
|
+
actionpack (~> 3.0)
|
73
|
+
activesupport (~> 3.0)
|
74
|
+
railties (~> 3.0)
|
75
|
+
rspec (~> 2.6.0)
|
76
|
+
thor (0.14.6)
|
77
|
+
treetop (1.4.9)
|
78
|
+
polyglot (>= 0.3.1)
|
79
|
+
tzinfo (0.3.27)
|
80
|
+
|
81
|
+
PLATFORMS
|
82
|
+
ruby
|
83
|
+
|
84
|
+
DEPENDENCIES
|
85
|
+
rails (~> 3.0.7)
|
86
|
+
rspec-rails (>= 2.6.rc)
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
2
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
3
|
+
|
4
|
+
require File.expand_path('../config/application', __FILE__)
|
5
|
+
require 'rake'
|
6
|
+
|
7
|
+
Testbed::Application.load_tasks
|
@@ -0,0 +1,45 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
# Bare bones test bed only
|
4
|
+
require "action_controller/railtie"
|
5
|
+
require "action_mailer/railtie"
|
6
|
+
require "active_resource/railtie"
|
7
|
+
|
8
|
+
# If you have a Gemfile, require the gems listed there, including any gems
|
9
|
+
# you've limited to :test, :development, or :production.
|
10
|
+
Bundler.require(:default, Rails.env) if defined?(Bundler)
|
11
|
+
|
12
|
+
module Testbed
|
13
|
+
class Application < Rails::Application
|
14
|
+
# Settings in config/environments/* take precedence over those specified here.
|
15
|
+
# Application configuration should go into files in config/initializers
|
16
|
+
# -- all .rb files in that directory are automatically loaded.
|
17
|
+
|
18
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
19
|
+
# config.autoload_paths += %W(#{config.root}/extras)
|
20
|
+
|
21
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
22
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
23
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
24
|
+
|
25
|
+
# Activate observers that should always be running.
|
26
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
27
|
+
|
28
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
29
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
30
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
31
|
+
|
32
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
33
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
34
|
+
# config.i18n.default_locale = :de
|
35
|
+
|
36
|
+
# JavaScript files you want as :defaults (application.js is always included).
|
37
|
+
config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
|
38
|
+
|
39
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
40
|
+
config.encoding = "utf-8"
|
41
|
+
|
42
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
43
|
+
config.filter_parameters += [:password]
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
Testbed::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# In the development environment your application's code is reloaded on
|
5
|
+
# every request. This slows down response time but is perfect for development
|
6
|
+
# since you don't have to restart the webserver when you make code changes.
|
7
|
+
config.cache_classes = false
|
8
|
+
|
9
|
+
# Log error messages when you accidentally call methods on nil.
|
10
|
+
config.whiny_nils = true
|
11
|
+
|
12
|
+
# Show full error reports and disable caching
|
13
|
+
config.consider_all_requests_local = true
|
14
|
+
config.action_view.debug_rjs = true
|
15
|
+
config.action_controller.perform_caching = false
|
16
|
+
|
17
|
+
# Don't care if the mailer can't send
|
18
|
+
config.action_mailer.raise_delivery_errors = false
|
19
|
+
|
20
|
+
# Print deprecation notices to the Rails logger
|
21
|
+
config.active_support.deprecation = :log
|
22
|
+
|
23
|
+
# Only use best-standards-support built into browsers
|
24
|
+
config.action_dispatch.best_standards_support = :builtin
|
25
|
+
end
|
26
|
+
|
@@ -0,0 +1,49 @@
|
|
1
|
+
Testbed::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The production environment is meant for finished, "live" apps.
|
5
|
+
# Code is not reloaded between requests
|
6
|
+
config.cache_classes = true
|
7
|
+
|
8
|
+
# Full error reports are disabled and caching is turned on
|
9
|
+
config.consider_all_requests_local = false
|
10
|
+
config.action_controller.perform_caching = true
|
11
|
+
|
12
|
+
# Specifies the header that your server uses for sending files
|
13
|
+
config.action_dispatch.x_sendfile_header = "X-Sendfile"
|
14
|
+
|
15
|
+
# For nginx:
|
16
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
|
17
|
+
|
18
|
+
# If you have no front-end server that supports something like X-Sendfile,
|
19
|
+
# just comment this out and Rails will serve the files
|
20
|
+
|
21
|
+
# See everything in the log (default is :info)
|
22
|
+
# config.log_level = :debug
|
23
|
+
|
24
|
+
# Use a different logger for distributed setups
|
25
|
+
# config.logger = SyslogLogger.new
|
26
|
+
|
27
|
+
# Use a different cache store in production
|
28
|
+
# config.cache_store = :mem_cache_store
|
29
|
+
|
30
|
+
# Disable Rails's static asset server
|
31
|
+
# In production, Apache or nginx will already do this
|
32
|
+
config.serve_static_assets = false
|
33
|
+
|
34
|
+
# Enable serving of images, stylesheets, and javascripts from an asset server
|
35
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
36
|
+
|
37
|
+
# Disable delivery errors, bad email addresses will be ignored
|
38
|
+
# config.action_mailer.raise_delivery_errors = false
|
39
|
+
|
40
|
+
# Enable threaded mode
|
41
|
+
# config.threadsafe!
|
42
|
+
|
43
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
44
|
+
# the I18n.default_locale when a translation can not be found)
|
45
|
+
config.i18n.fallbacks = true
|
46
|
+
|
47
|
+
# Send deprecation notices to registered listeners
|
48
|
+
config.active_support.deprecation = :notify
|
49
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
Testbed::Application.configure do
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
3
|
+
|
4
|
+
# The test environment is used exclusively to run your application's
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
8
|
+
config.cache_classes = true
|
9
|
+
|
10
|
+
# Log error messages when you accidentally call methods on nil.
|
11
|
+
config.whiny_nils = true
|
12
|
+
|
13
|
+
# Show full error reports and disable caching
|
14
|
+
config.consider_all_requests_local = true
|
15
|
+
config.action_controller.perform_caching = false
|
16
|
+
|
17
|
+
# Raise exceptions instead of rendering exception templates
|
18
|
+
config.action_dispatch.show_exceptions = false
|
19
|
+
|
20
|
+
# Disable request forgery protection in test environment
|
21
|
+
config.action_controller.allow_forgery_protection = false
|
22
|
+
|
23
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
24
|
+
# The :test delivery method accumulates sent emails in the
|
25
|
+
# ActionMailer::Base.deliveries array.
|
26
|
+
config.action_mailer.delivery_method = :test
|
27
|
+
|
28
|
+
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
29
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
30
|
+
# like if you have constraints or database-specific column types
|
31
|
+
# config.active_record.schema_format = :sql
|
32
|
+
|
33
|
+
# Print deprecation notices to the stderr
|
34
|
+
config.active_support.deprecation = :stderr
|
35
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
Testbed::Application.routes.draw do
|
2
|
+
# The priority is based upon order of creation:
|
3
|
+
# first created -> highest priority.
|
4
|
+
|
5
|
+
# Sample of regular route:
|
6
|
+
# match 'products/:id' => 'catalog#view'
|
7
|
+
# Keep in mind you can assign values other than :controller and :action
|
8
|
+
|
9
|
+
# Sample of named route:
|
10
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
11
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
12
|
+
|
13
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
14
|
+
# resources :products
|
15
|
+
|
16
|
+
# Sample resource route with options:
|
17
|
+
# resources :products do
|
18
|
+
# member do
|
19
|
+
# get 'short'
|
20
|
+
# post 'toggle'
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
# collection do
|
24
|
+
# get 'sold'
|
25
|
+
# end
|
26
|
+
# end
|
27
|
+
|
28
|
+
# Sample resource route with sub-resources:
|
29
|
+
# resources :products do
|
30
|
+
# resources :comments, :sales
|
31
|
+
# resource :seller
|
32
|
+
# end
|
33
|
+
|
34
|
+
# Sample resource route with more complex sub-resources
|
35
|
+
# resources :products do
|
36
|
+
# resources :comments
|
37
|
+
# resources :sales do
|
38
|
+
# get 'recent', :on => :collection
|
39
|
+
# end
|
40
|
+
# end
|
41
|
+
|
42
|
+
# Sample resource route within a namespace:
|
43
|
+
# namespace :admin do
|
44
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
45
|
+
# # (app/controllers/admin/products_controller.rb)
|
46
|
+
# resources :products
|
47
|
+
# end
|
48
|
+
|
49
|
+
# You can have the root of your site routed with "root"
|
50
|
+
# just remember to delete public/index.html.
|
51
|
+
# root :to => "welcome#index"
|
52
|
+
|
53
|
+
# See how all your routes lay out with "rake routes"
|
54
|
+
|
55
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
56
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
57
|
+
# match ':controller(/:action(/:id(.:format)))'
|
58
|
+
end
|