eastwood 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +6 -0
  3. data/Rakefile +43 -0
  4. data/app/assets/javascripts/eastwood.js.coffee.erb +49 -0
  5. data/lib/eastwood/engine.rb +10 -0
  6. data/lib/eastwood/helpers.rb +30 -0
  7. data/lib/eastwood/routes.rb +28 -0
  8. data/lib/eastwood/version.rb +3 -0
  9. data/lib/eastwood.rb +14 -0
  10. data/lib/tasks/eastwood_tasks.rake +4 -0
  11. data/test/asset_test.rb +9 -0
  12. data/test/dummy/Rakefile +7 -0
  13. data/test/dummy/app/assets/javascripts/application.js +9 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  15. data/test/dummy/app/controllers/application_controller.rb +3 -0
  16. data/test/dummy/app/controllers/resources_controller.rb +2 -0
  17. data/test/dummy/app/helpers/application_helper.rb +2 -0
  18. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  19. data/test/dummy/config/application.rb +45 -0
  20. data/test/dummy/config/boot.rb +10 -0
  21. data/test/dummy/config/database.yml +25 -0
  22. data/test/dummy/config/environment.rb +5 -0
  23. data/test/dummy/config/environments/development.rb +30 -0
  24. data/test/dummy/config/environments/production.rb +60 -0
  25. data/test/dummy/config/environments/test.rb +42 -0
  26. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  27. data/test/dummy/config/initializers/inflections.rb +10 -0
  28. data/test/dummy/config/initializers/mime_types.rb +5 -0
  29. data/test/dummy/config/initializers/secret_token.rb +7 -0
  30. data/test/dummy/config/initializers/session_store.rb +8 -0
  31. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  32. data/test/dummy/config/locales/en.yml +5 -0
  33. data/test/dummy/config/routes.rb +61 -0
  34. data/test/dummy/config.ru +4 -0
  35. data/test/dummy/db/development.sqlite3 +0 -0
  36. data/test/dummy/db/test.sqlite3 +0 -0
  37. data/test/dummy/log/development.log +391 -0
  38. data/test/dummy/log/test.log +387 -0
  39. data/test/dummy/public/404.html +26 -0
  40. data/test/dummy/public/422.html +26 -0
  41. data/test/dummy/public/500.html +26 -0
  42. data/test/dummy/public/favicon.ico +0 -0
  43. data/test/dummy/public/index.html +16 -0
  44. data/test/dummy/script/rails +6 -0
  45. data/test/dummy/tmp/cache/assets/D75/1D0/sprockets%2F097d71c6d5ef8b26bfb3058327b3b9bf +0 -0
  46. data/test/dummy/tmp/cache/assets/D7F/B10/sprockets%2F9ac097fe24e8c8229522feac6fc9337c +0 -0
  47. data/test/eastwood_test.rb +7 -0
  48. data/test/helpers_test.rb +31 -0
  49. data/test/test_helper.rb +10 -0
  50. metadata +197 -0
metadata ADDED
@@ -0,0 +1,197 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: eastwood
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Jeremy Ruppel
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-11-30 00:00:00 -08:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: rails
23
+ type: :runtime
24
+ version_requirements: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ hash: 3
30
+ segments:
31
+ - 3
32
+ - 1
33
+ - 0
34
+ version: 3.1.0
35
+ requirement: *id001
36
+ prerelease: false
37
+ - !ruby/object:Gem::Dependency
38
+ name: sqlite3
39
+ type: :development
40
+ version_requirements: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ hash: 3
46
+ segments:
47
+ - 0
48
+ version: "0"
49
+ requirement: *id002
50
+ prerelease: false
51
+ - !ruby/object:Gem::Dependency
52
+ name: cucumber
53
+ type: :development
54
+ version_requirements: &id003 !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ hash: 3
60
+ segments:
61
+ - 0
62
+ version: "0"
63
+ requirement: *id003
64
+ prerelease: false
65
+ description: Start your client side out right
66
+ email:
67
+ - jeremy.ruppel@gmail.com
68
+ executables: []
69
+
70
+ extensions: []
71
+
72
+ extra_rdoc_files: []
73
+
74
+ files:
75
+ - app/assets/javascripts/eastwood.js.coffee.erb
76
+ - lib/eastwood/engine.rb
77
+ - lib/eastwood/helpers.rb
78
+ - lib/eastwood/routes.rb
79
+ - lib/eastwood/version.rb
80
+ - lib/eastwood.rb
81
+ - lib/tasks/eastwood_tasks.rake
82
+ - MIT-LICENSE
83
+ - Rakefile
84
+ - README.md
85
+ - test/asset_test.rb
86
+ - test/dummy/app/assets/javascripts/application.js
87
+ - test/dummy/app/assets/stylesheets/application.css
88
+ - test/dummy/app/controllers/application_controller.rb
89
+ - test/dummy/app/controllers/resources_controller.rb
90
+ - test/dummy/app/helpers/application_helper.rb
91
+ - test/dummy/app/views/layouts/application.html.erb
92
+ - test/dummy/config/application.rb
93
+ - test/dummy/config/boot.rb
94
+ - test/dummy/config/database.yml
95
+ - test/dummy/config/environment.rb
96
+ - test/dummy/config/environments/development.rb
97
+ - test/dummy/config/environments/production.rb
98
+ - test/dummy/config/environments/test.rb
99
+ - test/dummy/config/initializers/backtrace_silencers.rb
100
+ - test/dummy/config/initializers/inflections.rb
101
+ - test/dummy/config/initializers/mime_types.rb
102
+ - test/dummy/config/initializers/secret_token.rb
103
+ - test/dummy/config/initializers/session_store.rb
104
+ - test/dummy/config/initializers/wrap_parameters.rb
105
+ - test/dummy/config/locales/en.yml
106
+ - test/dummy/config/routes.rb
107
+ - test/dummy/config.ru
108
+ - test/dummy/db/development.sqlite3
109
+ - test/dummy/db/test.sqlite3
110
+ - test/dummy/log/development.log
111
+ - test/dummy/log/test.log
112
+ - test/dummy/public/404.html
113
+ - test/dummy/public/422.html
114
+ - test/dummy/public/500.html
115
+ - test/dummy/public/favicon.ico
116
+ - test/dummy/public/index.html
117
+ - test/dummy/Rakefile
118
+ - test/dummy/script/rails
119
+ - test/dummy/tmp/cache/assets/D75/1D0/sprockets%2F097d71c6d5ef8b26bfb3058327b3b9bf
120
+ - test/dummy/tmp/cache/assets/D7F/B10/sprockets%2F9ac097fe24e8c8229522feac6fc9337c
121
+ - test/eastwood_test.rb
122
+ - test/helpers_test.rb
123
+ - test/test_helper.rb
124
+ has_rdoc: true
125
+ homepage: https://github.com/jeremyruppel/eastwood
126
+ licenses: []
127
+
128
+ post_install_message:
129
+ rdoc_options: []
130
+
131
+ require_paths:
132
+ - lib
133
+ required_ruby_version: !ruby/object:Gem::Requirement
134
+ none: false
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ hash: 3
139
+ segments:
140
+ - 0
141
+ version: "0"
142
+ required_rubygems_version: !ruby/object:Gem::Requirement
143
+ none: false
144
+ requirements:
145
+ - - ">="
146
+ - !ruby/object:Gem::Version
147
+ hash: 3
148
+ segments:
149
+ - 0
150
+ version: "0"
151
+ requirements: []
152
+
153
+ rubyforge_project:
154
+ rubygems_version: 1.5.2
155
+ signing_key:
156
+ specification_version: 3
157
+ summary: Start your client side out right
158
+ test_files:
159
+ - test/asset_test.rb
160
+ - test/dummy/app/assets/javascripts/application.js
161
+ - test/dummy/app/assets/stylesheets/application.css
162
+ - test/dummy/app/controllers/application_controller.rb
163
+ - test/dummy/app/controllers/resources_controller.rb
164
+ - test/dummy/app/helpers/application_helper.rb
165
+ - test/dummy/app/views/layouts/application.html.erb
166
+ - test/dummy/config/application.rb
167
+ - test/dummy/config/boot.rb
168
+ - test/dummy/config/database.yml
169
+ - test/dummy/config/environment.rb
170
+ - test/dummy/config/environments/development.rb
171
+ - test/dummy/config/environments/production.rb
172
+ - test/dummy/config/environments/test.rb
173
+ - test/dummy/config/initializers/backtrace_silencers.rb
174
+ - test/dummy/config/initializers/inflections.rb
175
+ - test/dummy/config/initializers/mime_types.rb
176
+ - test/dummy/config/initializers/secret_token.rb
177
+ - test/dummy/config/initializers/session_store.rb
178
+ - test/dummy/config/initializers/wrap_parameters.rb
179
+ - test/dummy/config/locales/en.yml
180
+ - test/dummy/config/routes.rb
181
+ - test/dummy/config.ru
182
+ - test/dummy/db/development.sqlite3
183
+ - test/dummy/db/test.sqlite3
184
+ - test/dummy/log/development.log
185
+ - test/dummy/log/test.log
186
+ - test/dummy/public/404.html
187
+ - test/dummy/public/422.html
188
+ - test/dummy/public/500.html
189
+ - test/dummy/public/favicon.ico
190
+ - test/dummy/public/index.html
191
+ - test/dummy/Rakefile
192
+ - test/dummy/script/rails
193
+ - test/dummy/tmp/cache/assets/D75/1D0/sprockets%2F097d71c6d5ef8b26bfb3058327b3b9bf
194
+ - test/dummy/tmp/cache/assets/D7F/B10/sprockets%2F9ac097fe24e8c8229522feac6fc9337c
195
+ - test/eastwood_test.rb
196
+ - test/helpers_test.rb
197
+ - test/test_helper.rb