oembed_provider 0.1.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.
Files changed (101) hide show
  1. data/.document +5 -0
  2. data/.gitignore +21 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +104 -0
  5. data/Rakefile +59 -0
  6. data/VERSION +1 -0
  7. data/app/controllers/oembed_provider_controller.rb +55 -0
  8. data/config/routes.rb +8 -0
  9. data/lib/oembed_providable.rb +201 -0
  10. data/lib/oembed_provider.rb +91 -0
  11. data/lib/oembed_provider_helper.rb +18 -0
  12. data/rails/init.rb +1 -0
  13. data/test/full_2_3_5_app_with_tests/.gitignore +27 -0
  14. data/test/full_2_3_5_app_with_tests/README +1 -0
  15. data/test/full_2_3_5_app_with_tests/Rakefile +10 -0
  16. data/test/full_2_3_5_app_with_tests/app/controllers/application_controller.rb +7 -0
  17. data/test/full_2_3_5_app_with_tests/app/controllers/items_controller.rb +85 -0
  18. data/test/full_2_3_5_app_with_tests/app/controllers/photos_controller.rb +85 -0
  19. data/test/full_2_3_5_app_with_tests/app/helpers/application_helper.rb +4 -0
  20. data/test/full_2_3_5_app_with_tests/app/helpers/items_helper.rb +2 -0
  21. data/test/full_2_3_5_app_with_tests/app/helpers/photos_helper.rb +2 -0
  22. data/test/full_2_3_5_app_with_tests/app/models/item.rb +4 -0
  23. data/test/full_2_3_5_app_with_tests/app/models/photo.rb +4 -0
  24. data/test/full_2_3_5_app_with_tests/app/views/items/edit.html.erb +24 -0
  25. data/test/full_2_3_5_app_with_tests/app/views/items/index.html.erb +24 -0
  26. data/test/full_2_3_5_app_with_tests/app/views/items/new.html.erb +23 -0
  27. data/test/full_2_3_5_app_with_tests/app/views/items/show.html.erb +21 -0
  28. data/test/full_2_3_5_app_with_tests/app/views/layouts/items.html.erb +20 -0
  29. data/test/full_2_3_5_app_with_tests/app/views/layouts/photos.html.erb +18 -0
  30. data/test/full_2_3_5_app_with_tests/app/views/photos/edit.html.erb +12 -0
  31. data/test/full_2_3_5_app_with_tests/app/views/photos/index.html.erb +18 -0
  32. data/test/full_2_3_5_app_with_tests/app/views/photos/new.html.erb +11 -0
  33. data/test/full_2_3_5_app_with_tests/app/views/photos/show.html.erb +3 -0
  34. data/test/full_2_3_5_app_with_tests/config/boot.rb +110 -0
  35. data/test/full_2_3_5_app_with_tests/config/database.yml +22 -0
  36. data/test/full_2_3_5_app_with_tests/config/environment.rb +54 -0
  37. data/test/full_2_3_5_app_with_tests/config/environments/development.rb +17 -0
  38. data/test/full_2_3_5_app_with_tests/config/environments/production.rb +28 -0
  39. data/test/full_2_3_5_app_with_tests/config/environments/test.rb +28 -0
  40. data/test/full_2_3_5_app_with_tests/config/initializers/backtrace_silencers.rb +7 -0
  41. data/test/full_2_3_5_app_with_tests/config/initializers/inflections.rb +10 -0
  42. data/test/full_2_3_5_app_with_tests/config/initializers/mime_types.rb +5 -0
  43. data/test/full_2_3_5_app_with_tests/config/initializers/new_rails_defaults.rb +21 -0
  44. data/test/full_2_3_5_app_with_tests/config/initializers/oembed_provider.rb +2 -0
  45. data/test/full_2_3_5_app_with_tests/config/initializers/session_store.rb +15 -0
  46. data/test/full_2_3_5_app_with_tests/config/locales/en.yml +4 -0
  47. data/test/full_2_3_5_app_with_tests/config/locales/fr.yml +4 -0
  48. data/test/full_2_3_5_app_with_tests/config/locales/zh.yml +4 -0
  49. data/test/full_2_3_5_app_with_tests/config/locales.yml +5 -0
  50. data/test/full_2_3_5_app_with_tests/config/routes.rb +4 -0
  51. data/test/full_2_3_5_app_with_tests/db/migrate/20110212010602_create_items.rb +13 -0
  52. data/test/full_2_3_5_app_with_tests/db/migrate/20110212022722_create_photos.rb +15 -0
  53. data/test/full_2_3_5_app_with_tests/db/schema.rb +35 -0
  54. data/test/full_2_3_5_app_with_tests/db/seeds.rb +7 -0
  55. data/test/full_2_3_5_app_with_tests/doc/README_FOR_APP +2 -0
  56. data/test/full_2_3_5_app_with_tests/public/404.html +30 -0
  57. data/test/full_2_3_5_app_with_tests/public/422.html +30 -0
  58. data/test/full_2_3_5_app_with_tests/public/500.html +30 -0
  59. data/test/full_2_3_5_app_with_tests/public/favicon.ico +0 -0
  60. data/test/full_2_3_5_app_with_tests/public/images/rails.png +0 -0
  61. data/test/full_2_3_5_app_with_tests/public/index.html +275 -0
  62. data/test/full_2_3_5_app_with_tests/public/javascripts/application.js +2 -0
  63. data/test/full_2_3_5_app_with_tests/public/javascripts/controls.js +963 -0
  64. data/test/full_2_3_5_app_with_tests/public/javascripts/dragdrop.js +973 -0
  65. data/test/full_2_3_5_app_with_tests/public/javascripts/effects.js +1128 -0
  66. data/test/full_2_3_5_app_with_tests/public/javascripts/prototype.js +4320 -0
  67. data/test/full_2_3_5_app_with_tests/public/robots.txt +5 -0
  68. data/test/full_2_3_5_app_with_tests/public/stylesheets/scaffold.css +54 -0
  69. data/test/full_2_3_5_app_with_tests/script/about +4 -0
  70. data/test/full_2_3_5_app_with_tests/script/console +3 -0
  71. data/test/full_2_3_5_app_with_tests/script/dbconsole +3 -0
  72. data/test/full_2_3_5_app_with_tests/script/destroy +3 -0
  73. data/test/full_2_3_5_app_with_tests/script/generate +3 -0
  74. data/test/full_2_3_5_app_with_tests/script/performance/benchmarker +3 -0
  75. data/test/full_2_3_5_app_with_tests/script/performance/profiler +3 -0
  76. data/test/full_2_3_5_app_with_tests/script/plugin +3 -0
  77. data/test/full_2_3_5_app_with_tests/script/runner +3 -0
  78. data/test/full_2_3_5_app_with_tests/script/server +3 -0
  79. data/test/full_2_3_5_app_with_tests/test/factories.rb +14 -0
  80. data/test/full_2_3_5_app_with_tests/test/functional/oembed_provider_controller_test.rb +34 -0
  81. data/test/full_2_3_5_app_with_tests/test/integration/oembed_test.rb +88 -0
  82. data/test/full_2_3_5_app_with_tests/test/performance/browsing_test.rb +9 -0
  83. data/test/full_2_3_5_app_with_tests/test/selenium.rb +83 -0
  84. data/test/full_2_3_5_app_with_tests/test/test_helper.rb +55 -0
  85. data/test/full_2_3_5_app_with_tests/test/unit/oembed_providable_test.rb +211 -0
  86. data/test/full_2_3_5_app_with_tests/test/unit/oembed_provider_test.rb +97 -0
  87. data/test/full_2_3_5_app_with_tests/tmp/restart.txt +0 -0
  88. data/test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/init.rb +1 -0
  89. data/test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/base.rb +31 -0
  90. data/test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/force_extension.rb +57 -0
  91. data/test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/locale.rb +70 -0
  92. data/test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/pagination.rb +33 -0
  93. data/test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/uuid_token.rb +78 -0
  94. data/test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter.rb +94 -0
  95. data/test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/force_extension_spec.rb +65 -0
  96. data/test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/generation_spec.rb +367 -0
  97. data/test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/pagination_extension_spec.rb +19 -0
  98. data/test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/recognition_spec.rb +76 -0
  99. data/test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/routing_filter_spec.rb +114 -0
  100. data/test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/spec_helper.rb +108 -0
  101. metadata +238 -0
@@ -0,0 +1,108 @@
1
+ $: << File.dirname(__FILE__)
2
+ $: << File.dirname(__FILE__) + '/../lib/'
3
+
4
+ require 'rubygems'
5
+ require 'action_pack'
6
+ require 'active_support'
7
+ require 'action_controller'
8
+ require 'action_controller/test_process'
9
+ require 'active_support/vendor'
10
+ require 'spec'
11
+
12
+ require 'routing_filter'
13
+ require 'routing_filter/locale'
14
+ require 'routing_filter/pagination'
15
+
16
+ class Site
17
+ end
18
+
19
+ class Section
20
+ def id; 1 end
21
+ alias :to_param :id
22
+ def type; 'Section' end
23
+ def path; 'section' end
24
+ end
25
+
26
+ class Article
27
+ def to_param; 1 end
28
+ end
29
+
30
+ module RoutingFilterHelpers
31
+ def draw_routes(&block)
32
+ set = returning ActionController::Routing::RouteSet.new do |set|
33
+ class << set; def clear!; end; end
34
+ set.draw &block
35
+ silence_warnings{ ActionController::Routing.const_set 'Routes', set }
36
+ end
37
+ set
38
+ end
39
+
40
+ def instantiate_controller(params)
41
+ returning ActionController::Base.new do |controller|
42
+ request = ActionController::TestRequest.new
43
+ url = ActionController::UrlRewriter.new(request, params)
44
+ controller.stub!(:request).and_return request
45
+ controller.instance_variable_set :@url, url
46
+ controller
47
+ end
48
+ end
49
+
50
+ def should_recognize_path(path, params)
51
+ @set.recognize_path(path, {}).should == params
52
+ end
53
+
54
+ def home_path(*args)
55
+ @controller.send :home_path, *args
56
+ end
57
+
58
+ def home_url(*args)
59
+ @controller.send :home_url, *args
60
+ end
61
+
62
+ def section_path(*args)
63
+ @controller.send :section_path, *args
64
+ end
65
+
66
+ def section_article_path(*args)
67
+ @controller.send :section_article_path, *args
68
+ end
69
+
70
+ def admin_articles_path(*args)
71
+ @controller.send :admin_articles_path, *args
72
+ end
73
+
74
+ def url_for(*args)
75
+ @controller.send :url_for, *args
76
+ end
77
+
78
+ def setup_environment(*filters)
79
+ RoutingFilter::Locale.locales = [:en, 'en-US', :de, :fi, 'en-UK']
80
+ RoutingFilter::Locale.include_default_locale = true
81
+ I18n.default_locale = :en
82
+ I18n.locale = :en
83
+
84
+ @controller = instantiate_controller :locale => 'de', :id => 1
85
+ @set = draw_routes do |map|
86
+ yield map if block_given?
87
+ filters.each { |filter| map.filter filter }
88
+ map.section 'sections/:id.:format', :controller => 'sections', :action => "show"
89
+ map.section_article 'sections/:section_id/articles/:id', :controller => 'articles', :action => "show"
90
+ map.admin_articles 'admin/articles/:id', :controller => 'admin/articles', :action => "index"
91
+ map.home '/', :controller => 'home', :action => 'index'
92
+ end
93
+
94
+ @section_params = {:controller => 'sections', :action => "show", :id => "1"}
95
+ @article_params = {:controller => 'articles', :action => "show", :section_id => "1", :id => "1"}
96
+ @locale_filter = @set.filters.first
97
+ @pagination_filter = @set.filters.last
98
+ end
99
+
100
+ def with_deactivated_filters(*filters, &block)
101
+ states = filters.inject({}) do |states, filter|
102
+ states[filter], filter.active = filter.active, false
103
+ states
104
+ end
105
+ yield
106
+ states.each { |filter, state| filter.active = state }
107
+ end
108
+ end
metadata ADDED
@@ -0,0 +1,238 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: oembed_provider
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 0
10
+ version: 0.1.0
11
+ platform: ruby
12
+ authors:
13
+ - Walter McGinnis
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-02-16 00:00:00 +13:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: addressable
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 3
30
+ segments:
31
+ - 0
32
+ version: "0"
33
+ type: :runtime
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: thoughtbot-shoulda
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ hash: 3
44
+ segments:
45
+ - 0
46
+ version: "0"
47
+ type: :development
48
+ version_requirements: *id002
49
+ description: A Rails engine to answer oEmbed requests for application media asset models. In other words, this gem allows your application, after configuring the gem and the relevant models, to act as an oEmbed Provider by providing a controller that returns JSON or XML for a given oEmbed consumer request for the specified media asset. This gem does not offer oEmbed consumer functionality. (Rails 2.3.5 only for now)
50
+ email: walter@katipo.co.nz
51
+ executables: []
52
+
53
+ extensions: []
54
+
55
+ extra_rdoc_files:
56
+ - LICENSE
57
+ - README.rdoc
58
+ files:
59
+ - .document
60
+ - .gitignore
61
+ - LICENSE
62
+ - README.rdoc
63
+ - Rakefile
64
+ - VERSION
65
+ - app/controllers/oembed_provider_controller.rb
66
+ - config/routes.rb
67
+ - lib/oembed_providable.rb
68
+ - lib/oembed_provider.rb
69
+ - lib/oembed_provider_helper.rb
70
+ - rails/init.rb
71
+ - test/full_2_3_5_app_with_tests/.gitignore
72
+ - test/full_2_3_5_app_with_tests/README
73
+ - test/full_2_3_5_app_with_tests/Rakefile
74
+ - test/full_2_3_5_app_with_tests/app/controllers/application_controller.rb
75
+ - test/full_2_3_5_app_with_tests/app/controllers/items_controller.rb
76
+ - test/full_2_3_5_app_with_tests/app/controllers/photos_controller.rb
77
+ - test/full_2_3_5_app_with_tests/app/helpers/application_helper.rb
78
+ - test/full_2_3_5_app_with_tests/app/helpers/items_helper.rb
79
+ - test/full_2_3_5_app_with_tests/app/helpers/photos_helper.rb
80
+ - test/full_2_3_5_app_with_tests/app/models/item.rb
81
+ - test/full_2_3_5_app_with_tests/app/models/photo.rb
82
+ - test/full_2_3_5_app_with_tests/app/views/items/edit.html.erb
83
+ - test/full_2_3_5_app_with_tests/app/views/items/index.html.erb
84
+ - test/full_2_3_5_app_with_tests/app/views/items/new.html.erb
85
+ - test/full_2_3_5_app_with_tests/app/views/items/show.html.erb
86
+ - test/full_2_3_5_app_with_tests/app/views/layouts/items.html.erb
87
+ - test/full_2_3_5_app_with_tests/app/views/layouts/photos.html.erb
88
+ - test/full_2_3_5_app_with_tests/app/views/photos/edit.html.erb
89
+ - test/full_2_3_5_app_with_tests/app/views/photos/index.html.erb
90
+ - test/full_2_3_5_app_with_tests/app/views/photos/new.html.erb
91
+ - test/full_2_3_5_app_with_tests/app/views/photos/show.html.erb
92
+ - test/full_2_3_5_app_with_tests/config/boot.rb
93
+ - test/full_2_3_5_app_with_tests/config/database.yml
94
+ - test/full_2_3_5_app_with_tests/config/environment.rb
95
+ - test/full_2_3_5_app_with_tests/config/environments/development.rb
96
+ - test/full_2_3_5_app_with_tests/config/environments/production.rb
97
+ - test/full_2_3_5_app_with_tests/config/environments/test.rb
98
+ - test/full_2_3_5_app_with_tests/config/initializers/backtrace_silencers.rb
99
+ - test/full_2_3_5_app_with_tests/config/initializers/inflections.rb
100
+ - test/full_2_3_5_app_with_tests/config/initializers/mime_types.rb
101
+ - test/full_2_3_5_app_with_tests/config/initializers/new_rails_defaults.rb
102
+ - test/full_2_3_5_app_with_tests/config/initializers/oembed_provider.rb
103
+ - test/full_2_3_5_app_with_tests/config/initializers/session_store.rb
104
+ - test/full_2_3_5_app_with_tests/config/locales.yml
105
+ - test/full_2_3_5_app_with_tests/config/locales/en.yml
106
+ - test/full_2_3_5_app_with_tests/config/locales/fr.yml
107
+ - test/full_2_3_5_app_with_tests/config/locales/zh.yml
108
+ - test/full_2_3_5_app_with_tests/config/routes.rb
109
+ - test/full_2_3_5_app_with_tests/db/migrate/20110212010602_create_items.rb
110
+ - test/full_2_3_5_app_with_tests/db/migrate/20110212022722_create_photos.rb
111
+ - test/full_2_3_5_app_with_tests/db/schema.rb
112
+ - test/full_2_3_5_app_with_tests/db/seeds.rb
113
+ - test/full_2_3_5_app_with_tests/doc/README_FOR_APP
114
+ - test/full_2_3_5_app_with_tests/public/404.html
115
+ - test/full_2_3_5_app_with_tests/public/422.html
116
+ - test/full_2_3_5_app_with_tests/public/500.html
117
+ - test/full_2_3_5_app_with_tests/public/favicon.ico
118
+ - test/full_2_3_5_app_with_tests/public/images/rails.png
119
+ - test/full_2_3_5_app_with_tests/public/index.html
120
+ - test/full_2_3_5_app_with_tests/public/javascripts/application.js
121
+ - test/full_2_3_5_app_with_tests/public/javascripts/controls.js
122
+ - test/full_2_3_5_app_with_tests/public/javascripts/dragdrop.js
123
+ - test/full_2_3_5_app_with_tests/public/javascripts/effects.js
124
+ - test/full_2_3_5_app_with_tests/public/javascripts/prototype.js
125
+ - test/full_2_3_5_app_with_tests/public/robots.txt
126
+ - test/full_2_3_5_app_with_tests/public/stylesheets/scaffold.css
127
+ - test/full_2_3_5_app_with_tests/script/about
128
+ - test/full_2_3_5_app_with_tests/script/console
129
+ - test/full_2_3_5_app_with_tests/script/dbconsole
130
+ - test/full_2_3_5_app_with_tests/script/destroy
131
+ - test/full_2_3_5_app_with_tests/script/generate
132
+ - test/full_2_3_5_app_with_tests/script/performance/benchmarker
133
+ - test/full_2_3_5_app_with_tests/script/performance/profiler
134
+ - test/full_2_3_5_app_with_tests/script/plugin
135
+ - test/full_2_3_5_app_with_tests/script/runner
136
+ - test/full_2_3_5_app_with_tests/script/server
137
+ - test/full_2_3_5_app_with_tests/test/factories.rb
138
+ - test/full_2_3_5_app_with_tests/test/functional/oembed_provider_controller_test.rb
139
+ - test/full_2_3_5_app_with_tests/test/integration/oembed_test.rb
140
+ - test/full_2_3_5_app_with_tests/test/performance/browsing_test.rb
141
+ - test/full_2_3_5_app_with_tests/test/selenium.rb
142
+ - test/full_2_3_5_app_with_tests/test/test_helper.rb
143
+ - test/full_2_3_5_app_with_tests/test/unit/oembed_providable_test.rb
144
+ - test/full_2_3_5_app_with_tests/test/unit/oembed_provider_test.rb
145
+ - test/full_2_3_5_app_with_tests/tmp/restart.txt
146
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/init.rb
147
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/base.rb
148
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/force_extension.rb
149
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/locale.rb
150
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/pagination.rb
151
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/uuid_token.rb
152
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter.rb
153
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/force_extension_spec.rb
154
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/generation_spec.rb
155
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/pagination_extension_spec.rb
156
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/recognition_spec.rb
157
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/routing_filter_spec.rb
158
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/spec_helper.rb
159
+ has_rdoc: true
160
+ homepage: https://github.com/kete/oembed_provider
161
+ licenses: []
162
+
163
+ post_install_message:
164
+ rdoc_options:
165
+ - --charset=UTF-8
166
+ require_paths:
167
+ - lib
168
+ required_ruby_version: !ruby/object:Gem::Requirement
169
+ none: false
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ hash: 3
174
+ segments:
175
+ - 0
176
+ version: "0"
177
+ required_rubygems_version: !ruby/object:Gem::Requirement
178
+ none: false
179
+ requirements:
180
+ - - ">="
181
+ - !ruby/object:Gem::Version
182
+ hash: 3
183
+ segments:
184
+ - 0
185
+ version: "0"
186
+ requirements: []
187
+
188
+ rubyforge_project:
189
+ rubygems_version: 1.3.7
190
+ signing_key:
191
+ specification_version: 3
192
+ summary: A Rails engine to answer oEmbed requests for application media asset models.
193
+ test_files:
194
+ - test/full_2_3_5_app_with_tests/app/controllers/application_controller.rb
195
+ - test/full_2_3_5_app_with_tests/app/controllers/items_controller.rb
196
+ - test/full_2_3_5_app_with_tests/app/controllers/photos_controller.rb
197
+ - test/full_2_3_5_app_with_tests/app/helpers/application_helper.rb
198
+ - test/full_2_3_5_app_with_tests/app/helpers/items_helper.rb
199
+ - test/full_2_3_5_app_with_tests/app/helpers/photos_helper.rb
200
+ - test/full_2_3_5_app_with_tests/app/models/item.rb
201
+ - test/full_2_3_5_app_with_tests/app/models/photo.rb
202
+ - test/full_2_3_5_app_with_tests/config/boot.rb
203
+ - test/full_2_3_5_app_with_tests/config/environment.rb
204
+ - test/full_2_3_5_app_with_tests/config/environments/development.rb
205
+ - test/full_2_3_5_app_with_tests/config/environments/production.rb
206
+ - test/full_2_3_5_app_with_tests/config/environments/test.rb
207
+ - test/full_2_3_5_app_with_tests/config/initializers/backtrace_silencers.rb
208
+ - test/full_2_3_5_app_with_tests/config/initializers/inflections.rb
209
+ - test/full_2_3_5_app_with_tests/config/initializers/mime_types.rb
210
+ - test/full_2_3_5_app_with_tests/config/initializers/new_rails_defaults.rb
211
+ - test/full_2_3_5_app_with_tests/config/initializers/oembed_provider.rb
212
+ - test/full_2_3_5_app_with_tests/config/initializers/session_store.rb
213
+ - test/full_2_3_5_app_with_tests/config/routes.rb
214
+ - test/full_2_3_5_app_with_tests/db/migrate/20110212010602_create_items.rb
215
+ - test/full_2_3_5_app_with_tests/db/migrate/20110212022722_create_photos.rb
216
+ - test/full_2_3_5_app_with_tests/db/schema.rb
217
+ - test/full_2_3_5_app_with_tests/db/seeds.rb
218
+ - test/full_2_3_5_app_with_tests/test/factories.rb
219
+ - test/full_2_3_5_app_with_tests/test/functional/oembed_provider_controller_test.rb
220
+ - test/full_2_3_5_app_with_tests/test/integration/oembed_test.rb
221
+ - test/full_2_3_5_app_with_tests/test/performance/browsing_test.rb
222
+ - test/full_2_3_5_app_with_tests/test/selenium.rb
223
+ - test/full_2_3_5_app_with_tests/test/test_helper.rb
224
+ - test/full_2_3_5_app_with_tests/test/unit/oembed_providable_test.rb
225
+ - test/full_2_3_5_app_with_tests/test/unit/oembed_provider_test.rb
226
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/init.rb
227
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/base.rb
228
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/force_extension.rb
229
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/locale.rb
230
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/pagination.rb
231
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter/uuid_token.rb
232
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/lib/routing_filter.rb
233
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/force_extension_spec.rb
234
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/generation_spec.rb
235
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/pagination_extension_spec.rb
236
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/recognition_spec.rb
237
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/routing_filter_spec.rb
238
+ - test/full_2_3_5_app_with_tests/vendor/plugins/routing-filter/spec/spec_helper.rb