rack-environmental 1.0.4 → 1.0.5

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 (37) hide show
  1. data/Rakefile +9 -4
  2. data/test/rackapp/config.ru +6 -0
  3. data/test/railsapp/README +243 -0
  4. data/test/railsapp/Rakefile +10 -0
  5. data/test/railsapp/app/views/layouts/application.html.erb +13 -0
  6. data/test/railsapp/app/views/tommy_boy/index.html.erb +44 -0
  7. data/test/railsapp/app/views/tommy_boy/more.html.erb +12 -0
  8. data/test/railsapp/config/database.yml +22 -0
  9. data/test/railsapp/config/locales/en.yml +5 -0
  10. data/test/railsapp/db/development.sqlite3 +0 -0
  11. data/test/railsapp/doc/README_FOR_APP +2 -0
  12. data/test/railsapp/log/development.log +126 -0
  13. data/test/railsapp/log/production.log +0 -0
  14. data/test/railsapp/log/server.log +0 -0
  15. data/test/railsapp/log/test.log +0 -0
  16. data/test/railsapp/public/404.html +30 -0
  17. data/test/railsapp/public/422.html +30 -0
  18. data/test/railsapp/public/500.html +30 -0
  19. data/test/railsapp/public/favicon.ico +0 -0
  20. data/test/railsapp/public/images/rails.png +0 -0
  21. data/test/railsapp/public/javascripts/application.js +2 -0
  22. data/test/railsapp/public/javascripts/controls.js +963 -0
  23. data/test/railsapp/public/javascripts/dragdrop.js +973 -0
  24. data/test/railsapp/public/javascripts/effects.js +1128 -0
  25. data/test/railsapp/public/javascripts/prototype.js +4320 -0
  26. data/test/railsapp/public/robots.txt +5 -0
  27. data/test/railsapp/script/about +4 -0
  28. data/test/railsapp/script/console +3 -0
  29. data/test/railsapp/script/dbconsole +3 -0
  30. data/test/railsapp/script/destroy +3 -0
  31. data/test/railsapp/script/generate +3 -0
  32. data/test/railsapp/script/performance/benchmarker +3 -0
  33. data/test/railsapp/script/performance/profiler +3 -0
  34. data/test/railsapp/script/plugin +3 -0
  35. data/test/railsapp/script/runner +3 -0
  36. data/test/railsapp/script/server +3 -0
  37. metadata +59 -2
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-Agent: *
5
+ # Disallow: /
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ $LOAD_PATH.unshift "#{RAILTIES_PATH}/builtin/rails_info"
4
+ require 'commands/about'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ require 'commands/console'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ require 'commands/dbconsole'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ require 'commands/destroy'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ require 'commands/generate'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../../config/boot', __FILE__)
3
+ require 'commands/performance/benchmarker'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../../config/boot', __FILE__)
3
+ require 'commands/performance/profiler'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ require 'commands/plugin'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ require 'commands/runner'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.expand_path('../../config/boot', __FILE__)
3
+ require 'commands/server'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-environmental
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wyatt Greene
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ">="
22
22
  - !ruby/object:Gem::Version
23
- version: 0.0.0
23
+ version: 0.0.3
24
24
  version:
25
25
  description: "\n Rack::Environmental indicates which environment your web application is running\n in (staging, test, etc.).\n "
26
26
  email: techiferous@gmail.com
@@ -37,6 +37,63 @@ files:
37
37
  - README.rdoc
38
38
  - Rakefile
39
39
  - lib/rack-environmental.rb
40
+ - test/rackapp/app.rb
41
+ - test/rackapp/config.ru
42
+ - test/railsapp/README
43
+ - test/railsapp/Rakefile
44
+ - test/railsapp/app/controllers/application_controller.rb
45
+ - test/railsapp/app/controllers/tommy_boy_controller.rb
46
+ - test/railsapp/app/helpers/application_helper.rb
47
+ - test/railsapp/app/helpers/tommy_boy_helper.rb
48
+ - test/railsapp/app/views/layouts/application.html.erb
49
+ - test/railsapp/app/views/tommy_boy/index.html.erb
50
+ - test/railsapp/app/views/tommy_boy/more.html.erb
51
+ - test/railsapp/config/boot.rb
52
+ - test/railsapp/config/database.yml
53
+ - test/railsapp/config/environment.rb
54
+ - test/railsapp/config/environments/development.rb
55
+ - test/railsapp/config/environments/production.rb
56
+ - test/railsapp/config/environments/test.rb
57
+ - test/railsapp/config/initializers/backtrace_silencers.rb
58
+ - test/railsapp/config/initializers/inflections.rb
59
+ - test/railsapp/config/initializers/mime_types.rb
60
+ - test/railsapp/config/initializers/new_rails_defaults.rb
61
+ - test/railsapp/config/initializers/session_store.rb
62
+ - test/railsapp/config/locales/en.yml
63
+ - test/railsapp/config/routes.rb
64
+ - test/railsapp/db/development.sqlite3
65
+ - test/railsapp/db/seeds.rb
66
+ - test/railsapp/doc/README_FOR_APP
67
+ - test/railsapp/log/development.log
68
+ - test/railsapp/log/production.log
69
+ - test/railsapp/log/server.log
70
+ - test/railsapp/log/test.log
71
+ - test/railsapp/public/404.html
72
+ - test/railsapp/public/422.html
73
+ - test/railsapp/public/500.html
74
+ - test/railsapp/public/favicon.ico
75
+ - test/railsapp/public/images/rails.png
76
+ - test/railsapp/public/javascripts/application.js
77
+ - test/railsapp/public/javascripts/controls.js
78
+ - test/railsapp/public/javascripts/dragdrop.js
79
+ - test/railsapp/public/javascripts/effects.js
80
+ - test/railsapp/public/javascripts/prototype.js
81
+ - test/railsapp/public/robots.txt
82
+ - test/railsapp/script/about
83
+ - test/railsapp/script/console
84
+ - test/railsapp/script/dbconsole
85
+ - test/railsapp/script/destroy
86
+ - test/railsapp/script/generate
87
+ - test/railsapp/script/performance/benchmarker
88
+ - test/railsapp/script/performance/profiler
89
+ - test/railsapp/script/plugin
90
+ - test/railsapp/script/runner
91
+ - test/railsapp/script/server
92
+ - test/railsapp/test/functional/tommy_boy_controller_test.rb
93
+ - test/railsapp/test/performance/browsing_test.rb
94
+ - test/railsapp/test/test_helper.rb
95
+ - test/railsapp/test/unit/helpers/tommy_boy_helper_test.rb
96
+ - test/sinatraapp/app.rb
40
97
  has_rdoc: true
41
98
  homepage: http://github.com/techiferous/rack-environmental
42
99
  licenses: []