webrickroll 0.0.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.
Files changed (48) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/javascripts/webrickroll/application.js +15 -0
  5. data/app/assets/stylesheets/webrickroll/application.css +13 -0
  6. data/app/controllers/webrickroll/application_controller.rb +4 -0
  7. data/app/helpers/webrickroll/application_helper.rb +4 -0
  8. data/app/views/layouts/webrickroll/application.html.erb +14 -0
  9. data/config/initializers/webrickroll.rb +17 -0
  10. data/config/routes.rb +2 -0
  11. data/lib/tasks/webrickroll_tasks.rake +4 -0
  12. data/lib/webrickroll/engine.rb +5 -0
  13. data/lib/webrickroll/version.rb +3 -0
  14. data/lib/webrickroll.rb +4 -0
  15. data/test/dummy/README.rdoc +261 -0
  16. data/test/dummy/Rakefile +7 -0
  17. data/test/dummy/app/assets/javascripts/application.js +15 -0
  18. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  19. data/test/dummy/app/controllers/application_controller.rb +3 -0
  20. data/test/dummy/app/helpers/application_helper.rb +2 -0
  21. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/test/dummy/config/application.rb +59 -0
  23. data/test/dummy/config/boot.rb +10 -0
  24. data/test/dummy/config/database.yml +25 -0
  25. data/test/dummy/config/environment.rb +5 -0
  26. data/test/dummy/config/environments/development.rb +37 -0
  27. data/test/dummy/config/environments/production.rb +67 -0
  28. data/test/dummy/config/environments/test.rb +37 -0
  29. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  30. data/test/dummy/config/initializers/inflections.rb +15 -0
  31. data/test/dummy/config/initializers/mime_types.rb +5 -0
  32. data/test/dummy/config/initializers/secret_token.rb +7 -0
  33. data/test/dummy/config/initializers/session_store.rb +8 -0
  34. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  35. data/test/dummy/config/locales/en.yml +5 -0
  36. data/test/dummy/config/routes.rb +4 -0
  37. data/test/dummy/config.ru +4 -0
  38. data/test/dummy/db/development.sqlite3 +0 -0
  39. data/test/dummy/log/development.log +346 -0
  40. data/test/dummy/public/404.html +26 -0
  41. data/test/dummy/public/422.html +26 -0
  42. data/test/dummy/public/500.html +25 -0
  43. data/test/dummy/public/favicon.ico +0 -0
  44. data/test/dummy/script/rails +6 -0
  45. data/test/integration/navigation_test.rb +10 -0
  46. data/test/test_helper.rb +15 -0
  47. data/test/webrickroll_test.rb +7 -0
  48. metadata +147 -0
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class WebrickrollTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Webrickroll
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,147 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: webrickroll
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Angeleah Daidone
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-05-20 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: &70337505720040 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.8
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *70337505720040
25
+ - !ruby/object:Gem::Dependency
26
+ name: sqlite3
27
+ requirement: &70337505719180 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *70337505719180
36
+ description: My favorite way to Rick Roll developers.
37
+ email:
38
+ - angeleah@gmail.com
39
+ executables: []
40
+ extensions: []
41
+ extra_rdoc_files: []
42
+ files:
43
+ - app/assets/javascripts/webrickroll/application.js
44
+ - app/assets/stylesheets/webrickroll/application.css
45
+ - app/controllers/webrickroll/application_controller.rb
46
+ - app/helpers/webrickroll/application_helper.rb
47
+ - app/views/layouts/webrickroll/application.html.erb
48
+ - config/initializers/webrickroll.rb
49
+ - config/routes.rb
50
+ - lib/tasks/webrickroll_tasks.rake
51
+ - lib/webrickroll/engine.rb
52
+ - lib/webrickroll/version.rb
53
+ - lib/webrickroll.rb
54
+ - MIT-LICENSE
55
+ - Rakefile
56
+ - README.rdoc
57
+ - test/dummy/app/assets/javascripts/application.js
58
+ - test/dummy/app/assets/stylesheets/application.css
59
+ - test/dummy/app/controllers/application_controller.rb
60
+ - test/dummy/app/helpers/application_helper.rb
61
+ - test/dummy/app/views/layouts/application.html.erb
62
+ - test/dummy/config/application.rb
63
+ - test/dummy/config/boot.rb
64
+ - test/dummy/config/database.yml
65
+ - test/dummy/config/environment.rb
66
+ - test/dummy/config/environments/development.rb
67
+ - test/dummy/config/environments/production.rb
68
+ - test/dummy/config/environments/test.rb
69
+ - test/dummy/config/initializers/backtrace_silencers.rb
70
+ - test/dummy/config/initializers/inflections.rb
71
+ - test/dummy/config/initializers/mime_types.rb
72
+ - test/dummy/config/initializers/secret_token.rb
73
+ - test/dummy/config/initializers/session_store.rb
74
+ - test/dummy/config/initializers/wrap_parameters.rb
75
+ - test/dummy/config/locales/en.yml
76
+ - test/dummy/config/routes.rb
77
+ - test/dummy/config.ru
78
+ - test/dummy/db/development.sqlite3
79
+ - test/dummy/log/development.log
80
+ - test/dummy/public/404.html
81
+ - test/dummy/public/422.html
82
+ - test/dummy/public/500.html
83
+ - test/dummy/public/favicon.ico
84
+ - test/dummy/Rakefile
85
+ - test/dummy/README.rdoc
86
+ - test/dummy/script/rails
87
+ - test/integration/navigation_test.rb
88
+ - test/test_helper.rb
89
+ - test/webrickroll_test.rb
90
+ homepage: https://github.com/angeleah/webrickroll
91
+ licenses: []
92
+ post_install_message:
93
+ rdoc_options: []
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ none: false
104
+ requirements:
105
+ - - ! '>='
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ requirements: []
109
+ rubyforge_project:
110
+ rubygems_version: 1.8.10
111
+ signing_key:
112
+ specification_version: 3
113
+ summary: You just got webrick rolled
114
+ test_files:
115
+ - test/dummy/app/assets/javascripts/application.js
116
+ - test/dummy/app/assets/stylesheets/application.css
117
+ - test/dummy/app/controllers/application_controller.rb
118
+ - test/dummy/app/helpers/application_helper.rb
119
+ - test/dummy/app/views/layouts/application.html.erb
120
+ - test/dummy/config/application.rb
121
+ - test/dummy/config/boot.rb
122
+ - test/dummy/config/database.yml
123
+ - test/dummy/config/environment.rb
124
+ - test/dummy/config/environments/development.rb
125
+ - test/dummy/config/environments/production.rb
126
+ - test/dummy/config/environments/test.rb
127
+ - test/dummy/config/initializers/backtrace_silencers.rb
128
+ - test/dummy/config/initializers/inflections.rb
129
+ - test/dummy/config/initializers/mime_types.rb
130
+ - test/dummy/config/initializers/secret_token.rb
131
+ - test/dummy/config/initializers/session_store.rb
132
+ - test/dummy/config/initializers/wrap_parameters.rb
133
+ - test/dummy/config/locales/en.yml
134
+ - test/dummy/config/routes.rb
135
+ - test/dummy/config.ru
136
+ - test/dummy/db/development.sqlite3
137
+ - test/dummy/log/development.log
138
+ - test/dummy/public/404.html
139
+ - test/dummy/public/422.html
140
+ - test/dummy/public/500.html
141
+ - test/dummy/public/favicon.ico
142
+ - test/dummy/Rakefile
143
+ - test/dummy/README.rdoc
144
+ - test/dummy/script/rails
145
+ - test/integration/navigation_test.rb
146
+ - test/test_helper.rb
147
+ - test/webrickroll_test.rb