drone-rails 1.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 (56) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +38 -0
  4. data/app/assets/javascripts/drone.js +9 -0
  5. data/lib/drone-rails.rb +4 -0
  6. data/lib/drone-rails/engine.rb +4 -0
  7. data/lib/drone-rails/version.rb +3 -0
  8. data/lib/tasks/drone-rails_tasks.rake +4 -0
  9. data/test/drone-rails_test.rb +7 -0
  10. data/test/dummy/README.rdoc +261 -0
  11. data/test/dummy/Rakefile +7 -0
  12. data/test/dummy/app/assets/javascripts/application.js +15 -0
  13. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  14. data/test/dummy/app/controllers/application_controller.rb +3 -0
  15. data/test/dummy/app/controllers/test_controller.rb +4 -0
  16. data/test/dummy/app/helpers/application_helper.rb +2 -0
  17. data/test/dummy/app/views/layouts/application.html.erb +15 -0
  18. data/test/dummy/app/views/test/index.html.erb +1 -0
  19. data/test/dummy/config.ru +4 -0
  20. data/test/dummy/config/application.rb +56 -0
  21. data/test/dummy/config/boot.rb +10 -0
  22. data/test/dummy/config/database.yml +25 -0
  23. data/test/dummy/config/environment.rb +5 -0
  24. data/test/dummy/config/environments/development.rb +37 -0
  25. data/test/dummy/config/environments/production.rb +67 -0
  26. data/test/dummy/config/environments/test.rb +37 -0
  27. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  28. data/test/dummy/config/initializers/inflections.rb +15 -0
  29. data/test/dummy/config/initializers/mime_types.rb +5 -0
  30. data/test/dummy/config/initializers/secret_token.rb +7 -0
  31. data/test/dummy/config/initializers/session_store.rb +8 -0
  32. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  33. data/test/dummy/config/locales/en.yml +5 -0
  34. data/test/dummy/config/routes.rb +59 -0
  35. data/test/dummy/db/development.sqlite3 +0 -0
  36. data/test/dummy/log/development.log +329 -0
  37. data/test/dummy/public/404.html +26 -0
  38. data/test/dummy/public/422.html +26 -0
  39. data/test/dummy/public/500.html +25 -0
  40. data/test/dummy/public/favicon.ico +0 -0
  41. data/test/dummy/script/rails +6 -0
  42. data/test/dummy/tmp/cache/assets/C8C/7E0/sprockets%2Fde49e55b0409d68052c07b2f26985773 +0 -0
  43. data/test/dummy/tmp/cache/assets/CBB/E30/sprockets%2F5891661b9540af4fe6a35f4171616de9 +0 -0
  44. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  45. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  46. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  47. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  48. data/test/dummy/tmp/cache/assets/D5D/7A0/sprockets%2Fe7ca6b3aa23403536ea2038fc78bb53c +0 -0
  49. data/test/dummy/tmp/cache/assets/DAF/430/sprockets%2Fa955222ff5c7666b932cccfb990feb9c +0 -0
  50. data/test/dummy/tmp/cache/assets/DB7/EA0/sprockets%2F4fa02e1ade2fdc850b7aff2108e314b2 +0 -0
  51. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  52. data/test/dummy/tmp/cache/assets/DEA/200/sprockets%2F77fcf3cea6eaf50363eb13da234bab31 +0 -0
  53. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  54. data/test/dummy/tmp/cache/assets/E5A/230/sprockets%2Feaa952d5e0edcebcc50e8ef167b0ac78 +0 -0
  55. data/test/test_helper.rb +10 -0
  56. metadata +180 -0
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,10 @@
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 }
metadata ADDED
@@ -0,0 +1,180 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: drone-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Andre Mendonca
9
+ - Bruno Grasselli
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2012-05-10 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rails
17
+ requirement: !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ~>
21
+ - !ruby/object:Gem::Version
22
+ version: 3.2.1
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ~>
29
+ - !ruby/object:Gem::Version
30
+ version: 3.2.1
31
+ - !ruby/object:Gem::Dependency
32
+ name: sqlite3
33
+ requirement: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ! '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ type: :development
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ description: Rails engine with DroneJS, a javascript MVC framework
48
+ email:
49
+ - bruno.grasselli@gmail.com
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - app/assets/javascripts/drone.js
55
+ - lib/drone-rails.rb
56
+ - lib/drone-rails/engine.rb
57
+ - lib/drone-rails/version.rb
58
+ - lib/tasks/drone-rails_tasks.rake
59
+ - MIT-LICENSE
60
+ - Rakefile
61
+ - README.rdoc
62
+ - test/dummy/README.rdoc
63
+ - test/dummy/tmp/cache/assets/C8C/7E0/sprockets%2Fde49e55b0409d68052c07b2f26985773
64
+ - test/dummy/tmp/cache/assets/DAF/430/sprockets%2Fa955222ff5c7666b932cccfb990feb9c
65
+ - test/dummy/tmp/cache/assets/E5A/230/sprockets%2Feaa952d5e0edcebcc50e8ef167b0ac78
66
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
67
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
68
+ - test/dummy/tmp/cache/assets/CBB/E30/sprockets%2F5891661b9540af4fe6a35f4171616de9
69
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
70
+ - test/dummy/tmp/cache/assets/DB7/EA0/sprockets%2F4fa02e1ade2fdc850b7aff2108e314b2
71
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
72
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
73
+ - test/dummy/tmp/cache/assets/DEA/200/sprockets%2F77fcf3cea6eaf50363eb13da234bab31
74
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
75
+ - test/dummy/tmp/cache/assets/D5D/7A0/sprockets%2Fe7ca6b3aa23403536ea2038fc78bb53c
76
+ - test/dummy/db/development.sqlite3
77
+ - test/dummy/config/application.rb
78
+ - test/dummy/config/routes.rb
79
+ - test/dummy/config/boot.rb
80
+ - test/dummy/config/locales/en.yml
81
+ - test/dummy/config/initializers/mime_types.rb
82
+ - test/dummy/config/initializers/secret_token.rb
83
+ - test/dummy/config/initializers/backtrace_silencers.rb
84
+ - test/dummy/config/initializers/session_store.rb
85
+ - test/dummy/config/initializers/wrap_parameters.rb
86
+ - test/dummy/config/initializers/inflections.rb
87
+ - test/dummy/config/environment.rb
88
+ - test/dummy/config/database.yml
89
+ - test/dummy/config/environments/test.rb
90
+ - test/dummy/config/environments/development.rb
91
+ - test/dummy/config/environments/production.rb
92
+ - test/dummy/app/controllers/test_controller.rb
93
+ - test/dummy/app/controllers/application_controller.rb
94
+ - test/dummy/app/views/layouts/application.html.erb
95
+ - test/dummy/app/views/test/index.html.erb
96
+ - test/dummy/app/assets/stylesheets/application.css
97
+ - test/dummy/app/assets/javascripts/application.js
98
+ - test/dummy/app/helpers/application_helper.rb
99
+ - test/dummy/script/rails
100
+ - test/dummy/public/404.html
101
+ - test/dummy/public/500.html
102
+ - test/dummy/public/422.html
103
+ - test/dummy/public/favicon.ico
104
+ - test/dummy/config.ru
105
+ - test/dummy/log/development.log
106
+ - test/dummy/Rakefile
107
+ - test/drone-rails_test.rb
108
+ - test/test_helper.rb
109
+ homepage: http://rubygems.org/gems/drone-rails
110
+ licenses: []
111
+ post_install_message:
112
+ rdoc_options: []
113
+ require_paths:
114
+ - lib
115
+ required_ruby_version: !ruby/object:Gem::Requirement
116
+ none: false
117
+ requirements:
118
+ - - ! '>='
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ required_rubygems_version: !ruby/object:Gem::Requirement
122
+ none: false
123
+ requirements:
124
+ - - ! '>='
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ requirements: []
128
+ rubyforge_project:
129
+ rubygems_version: 1.8.24
130
+ signing_key:
131
+ specification_version: 3
132
+ summary: Rails engine with DroneJS
133
+ test_files:
134
+ - test/dummy/README.rdoc
135
+ - test/dummy/tmp/cache/assets/C8C/7E0/sprockets%2Fde49e55b0409d68052c07b2f26985773
136
+ - test/dummy/tmp/cache/assets/DAF/430/sprockets%2Fa955222ff5c7666b932cccfb990feb9c
137
+ - test/dummy/tmp/cache/assets/E5A/230/sprockets%2Feaa952d5e0edcebcc50e8ef167b0ac78
138
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
139
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
140
+ - test/dummy/tmp/cache/assets/CBB/E30/sprockets%2F5891661b9540af4fe6a35f4171616de9
141
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
142
+ - test/dummy/tmp/cache/assets/DB7/EA0/sprockets%2F4fa02e1ade2fdc850b7aff2108e314b2
143
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
144
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
145
+ - test/dummy/tmp/cache/assets/DEA/200/sprockets%2F77fcf3cea6eaf50363eb13da234bab31
146
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
147
+ - test/dummy/tmp/cache/assets/D5D/7A0/sprockets%2Fe7ca6b3aa23403536ea2038fc78bb53c
148
+ - test/dummy/db/development.sqlite3
149
+ - test/dummy/config/application.rb
150
+ - test/dummy/config/routes.rb
151
+ - test/dummy/config/boot.rb
152
+ - test/dummy/config/locales/en.yml
153
+ - test/dummy/config/initializers/mime_types.rb
154
+ - test/dummy/config/initializers/secret_token.rb
155
+ - test/dummy/config/initializers/backtrace_silencers.rb
156
+ - test/dummy/config/initializers/session_store.rb
157
+ - test/dummy/config/initializers/wrap_parameters.rb
158
+ - test/dummy/config/initializers/inflections.rb
159
+ - test/dummy/config/environment.rb
160
+ - test/dummy/config/database.yml
161
+ - test/dummy/config/environments/test.rb
162
+ - test/dummy/config/environments/development.rb
163
+ - test/dummy/config/environments/production.rb
164
+ - test/dummy/app/controllers/test_controller.rb
165
+ - test/dummy/app/controllers/application_controller.rb
166
+ - test/dummy/app/views/layouts/application.html.erb
167
+ - test/dummy/app/views/test/index.html.erb
168
+ - test/dummy/app/assets/stylesheets/application.css
169
+ - test/dummy/app/assets/javascripts/application.js
170
+ - test/dummy/app/helpers/application_helper.rb
171
+ - test/dummy/script/rails
172
+ - test/dummy/public/404.html
173
+ - test/dummy/public/500.html
174
+ - test/dummy/public/422.html
175
+ - test/dummy/public/favicon.ico
176
+ - test/dummy/config.ru
177
+ - test/dummy/log/development.log
178
+ - test/dummy/Rakefile
179
+ - test/drone-rails_test.rb
180
+ - test/test_helper.rb