environmentalist 0.1.0 → 0.2.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 (64) hide show
  1. data/History.txt +11 -0
  2. data/{README.txt → LICENSE} +0 -21
  3. data/README.textile +22 -0
  4. data/Rakefile +19 -29
  5. data/VERSION.yml +4 -0
  6. data/bin/environmentalize +7 -1
  7. data/lib/conf/postboot.rb +3 -14
  8. data/lib/conf/preinitializer.rb +20 -0
  9. data/test/rails210test/README +256 -0
  10. data/test/rails210test/Rakefile +10 -0
  11. data/test/rails210test/app/controllers/application.rb +15 -0
  12. data/test/rails210test/app/helpers/application_helper.rb +3 -0
  13. data/test/rails210test/config/boot.rb +109 -0
  14. data/test/rails210test/config/demo/environment.rb +22 -0
  15. data/test/rails210test/config/development/database.yml +5 -0
  16. data/test/rails210test/config/development/environment.rb +17 -0
  17. data/test/rails210test/config/environment.rb +71 -0
  18. data/test/rails210test/config/initializers/inflections.rb +10 -0
  19. data/test/rails210test/config/initializers/mime_types.rb +5 -0
  20. data/test/rails210test/config/initializers/new_rails_defaults.rb +15 -0
  21. data/test/rails210test/config/postboot.rb +38 -0
  22. data/test/rails210test/config/production/database.yml +5 -0
  23. data/test/rails210test/config/production/environment.rb +22 -0
  24. data/test/rails210test/config/routes.rb +41 -0
  25. data/test/rails210test/config/staging/environment.rb +22 -0
  26. data/test/rails210test/config/test/database.yml +5 -0
  27. data/test/rails210test/config/test/environment.rb +22 -0
  28. data/test/rails210test/doc/README_FOR_APP +2 -0
  29. data/test/rails210test/log/development.log +0 -0
  30. data/test/rails210test/log/production.log +0 -0
  31. data/test/rails210test/log/server.log +0 -0
  32. data/test/rails210test/log/test.log +0 -0
  33. data/test/rails210test/public/404.html +30 -0
  34. data/test/rails210test/public/422.html +30 -0
  35. data/test/rails210test/public/500.html +30 -0
  36. data/test/rails210test/public/dispatch.cgi +10 -0
  37. data/test/rails210test/public/dispatch.fcgi +24 -0
  38. data/test/rails210test/public/dispatch.rb +10 -0
  39. data/test/rails210test/public/favicon.ico +0 -0
  40. data/test/rails210test/public/images/rails.png +0 -0
  41. data/test/rails210test/public/index.html +274 -0
  42. data/test/rails210test/public/javascripts/application.js +2 -0
  43. data/test/rails210test/public/javascripts/controls.js +963 -0
  44. data/test/rails210test/public/javascripts/dragdrop.js +972 -0
  45. data/test/rails210test/public/javascripts/effects.js +1120 -0
  46. data/test/rails210test/public/javascripts/prototype.js +4225 -0
  47. data/test/rails210test/public/robots.txt +5 -0
  48. data/test/rails210test/script/about +3 -0
  49. data/test/rails210test/script/console +3 -0
  50. data/test/rails210test/script/dbconsole +3 -0
  51. data/test/rails210test/script/destroy +3 -0
  52. data/test/rails210test/script/generate +3 -0
  53. data/test/rails210test/script/performance/benchmarker +3 -0
  54. data/test/rails210test/script/performance/profiler +3 -0
  55. data/test/rails210test/script/performance/request +3 -0
  56. data/test/rails210test/script/plugin +3 -0
  57. data/test/rails210test/script/process/inspector +3 -0
  58. data/test/rails210test/script/process/reaper +3 -0
  59. data/test/rails210test/script/process/spawner +3 -0
  60. data/test/rails210test/script/runner +3 -0
  61. data/test/rails210test/script/server +3 -0
  62. metadata +153 -36
  63. data/Manifest.txt +0 -58
  64. data/environmentalist.gemspec +0 -35
@@ -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,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/about'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/console'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/dbconsole'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/destroy'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/generate'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/benchmarker'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/profiler'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/request'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/plugin'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/inspector'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/reaper'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/spawner'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/runner'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/server'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: environmentalist
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Trupiano
@@ -9,59 +9,64 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-09-12 00:00:00 -04:00
13
- default_executable:
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: hoe
17
- type: :development
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
23
- version: 1.7.0
24
- version:
25
- description: Provides an executable that converts a rails app's config structure. The basic idea is that environments themselves are now first-class citizens, allowing you to create several environments (e.g. staging, prodtest, demo, etc.) in a clean, organized fashion. Each environment is given its own folder where it can store its own set of configuration files (think mongrel configs, apache configs, etc.) without polluting the top-leve config/ direcotory.
12
+ date: 2009-03-06 00:00:00 -05:00
13
+ default_executable: environmentalize
14
+ dependencies: []
15
+
16
+ description: Provides an executable that converts a rails app's config structure. The basic idea is that environments themselves are now first-class citizens, allowing you to create several environments (e.g. staging, prodtest, demo, etc.) in a clean, organized fashion. Each environment is given its own folder where it can store its own set of configuration files (think mongrel configs, apache configs, etc.) without polluting the top-leve config/ directory.
26
17
  email: jtrupiano@gmail.com
27
18
  executables:
28
19
  - environmentalize
29
20
  extensions: []
30
21
 
31
- extra_rdoc_files:
32
- - History.txt
33
- - Manifest.txt
34
- - README.txt
35
- - test/rails210/public/robots.txt
22
+ extra_rdoc_files: []
23
+
36
24
  files:
37
25
  - History.txt
38
- - Manifest.txt
39
- - README.txt
26
+ - LICENSE
40
27
  - Rakefile
28
+ - README.textile
29
+ - VERSION.yml
41
30
  - bin/environmentalize
42
- - environmentalist.gemspec
31
+ - lib/conf
43
32
  - lib/conf/postboot.rb
44
- - lib/environmentalist.rb
33
+ - lib/conf/preinitializer.rb
34
+ - lib/environmentalist
45
35
  - lib/environmentalist/version.rb
46
- - test/rails210/README
47
- - test/rails210/Rakefile
36
+ - lib/environmentalist.rb
37
+ - test/rails210
38
+ - test/rails210/app
39
+ - test/rails210/app/controllers
48
40
  - test/rails210/app/controllers/application.rb
41
+ - test/rails210/app/helpers
49
42
  - test/rails210/app/helpers/application_helper.rb
43
+ - test/rails210/app/models
44
+ - test/rails210/app/views
45
+ - test/rails210/app/views/layouts
46
+ - test/rails210/config
50
47
  - test/rails210/config/boot.rb
51
48
  - test/rails210/config/database.yml
52
49
  - test/rails210/config/environment.rb
50
+ - test/rails210/config/environments
53
51
  - test/rails210/config/environments/development.rb
54
52
  - test/rails210/config/environments/production.rb
55
53
  - test/rails210/config/environments/test.rb
54
+ - test/rails210/config/initializers
56
55
  - test/rails210/config/initializers/inflections.rb
57
56
  - test/rails210/config/initializers/mime_types.rb
58
57
  - test/rails210/config/initializers/new_rails_defaults.rb
59
58
  - test/rails210/config/routes.rb
59
+ - test/rails210/db
60
+ - test/rails210/doc
60
61
  - test/rails210/doc/README_FOR_APP
62
+ - test/rails210/lib
63
+ - test/rails210/lib/tasks
64
+ - test/rails210/log
61
65
  - test/rails210/log/development.log
62
66
  - test/rails210/log/production.log
63
67
  - test/rails210/log/server.log
64
68
  - test/rails210/log/test.log
69
+ - test/rails210/public
65
70
  - test/rails210/public/404.html
66
71
  - test/rails210/public/422.html
67
72
  - test/rails210/public/500.html
@@ -69,35 +74,148 @@ files:
69
74
  - test/rails210/public/dispatch.fcgi
70
75
  - test/rails210/public/dispatch.rb
71
76
  - test/rails210/public/favicon.ico
77
+ - test/rails210/public/images
72
78
  - test/rails210/public/images/rails.png
73
79
  - test/rails210/public/index.html
80
+ - test/rails210/public/javascripts
74
81
  - test/rails210/public/javascripts/application.js
75
82
  - test/rails210/public/javascripts/controls.js
76
83
  - test/rails210/public/javascripts/dragdrop.js
77
84
  - test/rails210/public/javascripts/effects.js
78
85
  - test/rails210/public/javascripts/prototype.js
79
86
  - test/rails210/public/robots.txt
87
+ - test/rails210/public/stylesheets
88
+ - test/rails210/Rakefile
89
+ - test/rails210/README
90
+ - test/rails210/script
80
91
  - test/rails210/script/about
81
92
  - test/rails210/script/console
82
93
  - test/rails210/script/dbconsole
83
94
  - test/rails210/script/destroy
84
95
  - test/rails210/script/generate
96
+ - test/rails210/script/performance
85
97
  - test/rails210/script/performance/benchmarker
86
98
  - test/rails210/script/performance/profiler
87
99
  - test/rails210/script/performance/request
88
100
  - test/rails210/script/plugin
101
+ - test/rails210/script/process
89
102
  - test/rails210/script/process/inspector
90
103
  - test/rails210/script/process/reaper
91
104
  - test/rails210/script/process/spawner
92
105
  - test/rails210/script/runner
93
106
  - test/rails210/script/server
107
+ - test/rails210/test
108
+ - test/rails210/test/fixtures
109
+ - test/rails210/test/functional
110
+ - test/rails210/test/integration
111
+ - test/rails210/test/test_helper.rb
112
+ - test/rails210/test/unit
113
+ - test/rails210/tmp
114
+ - test/rails210/tmp/cache
115
+ - test/rails210/tmp/pids
116
+ - test/rails210/tmp/sessions
117
+ - test/rails210/tmp/sockets
118
+ - test/rails210/vendor
119
+ - test/rails210/vendor/plugins
120
+ - test/rails210test
121
+ - test/rails210test/app
122
+ - test/rails210test/app/controllers
123
+ - test/rails210test/app/controllers/application.rb
124
+ - test/rails210test/app/helpers
125
+ - test/rails210test/app/helpers/application_helper.rb
126
+ - test/rails210test/app/models
127
+ - test/rails210test/app/views
128
+ - test/rails210test/app/views/layouts
129
+ - test/rails210test/config
130
+ - test/rails210test/config/boot.rb
131
+ - test/rails210test/config/demo
132
+ - test/rails210test/config/demo/environment.rb
133
+ - test/rails210test/config/development
134
+ - test/rails210test/config/development/database.yml
135
+ - test/rails210test/config/development/environment.rb
136
+ - test/rails210test/config/environment.rb
137
+ - test/rails210test/config/initializers
138
+ - test/rails210test/config/initializers/inflections.rb
139
+ - test/rails210test/config/initializers/mime_types.rb
140
+ - test/rails210test/config/initializers/new_rails_defaults.rb
141
+ - test/rails210test/config/postboot.rb
142
+ - test/rails210test/config/production
143
+ - test/rails210test/config/production/database.yml
144
+ - test/rails210test/config/production/environment.rb
145
+ - test/rails210test/config/routes.rb
146
+ - test/rails210test/config/staging
147
+ - test/rails210test/config/staging/environment.rb
148
+ - test/rails210test/config/test
149
+ - test/rails210test/config/test/database.yml
150
+ - test/rails210test/config/test/environment.rb
151
+ - test/rails210test/db
152
+ - test/rails210test/doc
153
+ - test/rails210test/doc/README_FOR_APP
154
+ - test/rails210test/lib
155
+ - test/rails210test/lib/tasks
156
+ - test/rails210test/log
157
+ - test/rails210test/log/development.log
158
+ - test/rails210test/log/production.log
159
+ - test/rails210test/log/server.log
160
+ - test/rails210test/log/test.log
161
+ - test/rails210test/public
162
+ - test/rails210test/public/404.html
163
+ - test/rails210test/public/422.html
164
+ - test/rails210test/public/500.html
165
+ - test/rails210test/public/dispatch.cgi
166
+ - test/rails210test/public/dispatch.fcgi
167
+ - test/rails210test/public/dispatch.rb
168
+ - test/rails210test/public/favicon.ico
169
+ - test/rails210test/public/images
170
+ - test/rails210test/public/images/rails.png
171
+ - test/rails210test/public/index.html
172
+ - test/rails210test/public/javascripts
173
+ - test/rails210test/public/javascripts/application.js
174
+ - test/rails210test/public/javascripts/controls.js
175
+ - test/rails210test/public/javascripts/dragdrop.js
176
+ - test/rails210test/public/javascripts/effects.js
177
+ - test/rails210test/public/javascripts/prototype.js
178
+ - test/rails210test/public/robots.txt
179
+ - test/rails210test/public/stylesheets
180
+ - test/rails210test/Rakefile
181
+ - test/rails210test/README
182
+ - test/rails210test/script
183
+ - test/rails210test/script/about
184
+ - test/rails210test/script/console
185
+ - test/rails210test/script/dbconsole
186
+ - test/rails210test/script/destroy
187
+ - test/rails210test/script/generate
188
+ - test/rails210test/script/performance
189
+ - test/rails210test/script/performance/benchmarker
190
+ - test/rails210test/script/performance/profiler
191
+ - test/rails210test/script/performance/request
192
+ - test/rails210test/script/plugin
193
+ - test/rails210test/script/process
194
+ - test/rails210test/script/process/inspector
195
+ - test/rails210test/script/process/reaper
196
+ - test/rails210test/script/process/spawner
197
+ - test/rails210test/script/runner
198
+ - test/rails210test/script/server
199
+ - test/rails210test/test
200
+ - test/rails210test/test/fixtures
201
+ - test/rails210test/test/functional
202
+ - test/rails210test/test/integration
203
+ - test/rails210test/test/test_helper.rb
204
+ - test/rails210test/test/unit
205
+ - test/rails210test/tmp
206
+ - test/rails210test/tmp/cache
207
+ - test/rails210test/tmp/pids
208
+ - test/rails210test/tmp/sessions
209
+ - test/rails210test/tmp/sockets
210
+ - test/rails210test/vendor
211
+ - test/rails210test/vendor/plugins
94
212
  - test/rails_version_test.rb
95
213
  has_rdoc: true
96
- homepage: http://github.com/jtrupiano/environmentalist/tree/master
214
+ homepage: http://github.com/jtrupiano/environmentalist
97
215
  post_install_message:
98
216
  rdoc_options:
99
- - --main
100
- - README.txt
217
+ - --inline-source
218
+ - --charset=UTF-8
101
219
  require_paths:
102
220
  - lib
103
221
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -114,11 +232,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
114
232
  version:
115
233
  requirements: []
116
234
 
117
- rubyforge_project: johntrupiano
118
- rubygems_version: 1.2.0
235
+ rubyforge_project:
236
+ rubygems_version: 1.3.1
119
237
  signing_key:
120
- specification_version: 2
121
- summary: Provides an executable that converts a rails app's config structure. The basic idea is that environments themselves are now first-class citizens, allowing you to create several environments (e.g. staging, prodtest, demo, etc.) in a clean, organized fashion. Each environment is given its own folder where it can store its own set of configuration files (think mongrel configs, apache configs, etc.) without polluting the top-leve config/ direcotory.
122
- test_files:
123
- - test/rails210/test/test_helper.rb
124
- - test/rails210test/test/test_helper.rb
238
+ specification_version: 3
239
+ summary: Provides an executable that converts a rails app's config structure. The basic idea is that environments themselves are now first-class citizens, allowing you to create several environments (e.g. staging, prodtest, demo, etc.) in a clean, organized fashion. Each environment is given its own folder where it can store its own set of configuration files (think mongrel configs, apache configs, etc.) without polluting the top-leve config/ directory.
240
+ test_files: []
241
+
data/Manifest.txt DELETED
@@ -1,58 +0,0 @@
1
- History.txt
2
- Manifest.txt
3
- README.txt
4
- Rakefile
5
- bin/environmentalize
6
- environmentalist.gemspec
7
- lib/conf/postboot.rb
8
- lib/environmentalist.rb
9
- lib/environmentalist/version.rb
10
- test/rails210/README
11
- test/rails210/Rakefile
12
- test/rails210/app/controllers/application.rb
13
- test/rails210/app/helpers/application_helper.rb
14
- test/rails210/config/boot.rb
15
- test/rails210/config/database.yml
16
- test/rails210/config/environment.rb
17
- test/rails210/config/environments/development.rb
18
- test/rails210/config/environments/production.rb
19
- test/rails210/config/environments/test.rb
20
- test/rails210/config/initializers/inflections.rb
21
- test/rails210/config/initializers/mime_types.rb
22
- test/rails210/config/initializers/new_rails_defaults.rb
23
- test/rails210/config/routes.rb
24
- test/rails210/doc/README_FOR_APP
25
- test/rails210/log/development.log
26
- test/rails210/log/production.log
27
- test/rails210/log/server.log
28
- test/rails210/log/test.log
29
- test/rails210/public/404.html
30
- test/rails210/public/422.html
31
- test/rails210/public/500.html
32
- test/rails210/public/dispatch.cgi
33
- test/rails210/public/dispatch.fcgi
34
- test/rails210/public/dispatch.rb
35
- test/rails210/public/favicon.ico
36
- test/rails210/public/images/rails.png
37
- test/rails210/public/index.html
38
- test/rails210/public/javascripts/application.js
39
- test/rails210/public/javascripts/controls.js
40
- test/rails210/public/javascripts/dragdrop.js
41
- test/rails210/public/javascripts/effects.js
42
- test/rails210/public/javascripts/prototype.js
43
- test/rails210/public/robots.txt
44
- test/rails210/script/about
45
- test/rails210/script/console
46
- test/rails210/script/dbconsole
47
- test/rails210/script/destroy
48
- test/rails210/script/generate
49
- test/rails210/script/performance/benchmarker
50
- test/rails210/script/performance/profiler
51
- test/rails210/script/performance/request
52
- test/rails210/script/plugin
53
- test/rails210/script/process/inspector
54
- test/rails210/script/process/reaper
55
- test/rails210/script/process/spawner
56
- test/rails210/script/runner
57
- test/rails210/script/server
58
- test/rails_version_test.rb
@@ -1,35 +0,0 @@
1
- Gem::Specification.new do |s|
2
- s.name = %q{environmentalist}
3
- s.version = "0.1.0"
4
-
5
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
6
- s.authors = ["John Trupiano"]
7
- s.date = %q{2008-09-12}
8
- s.default_executable = %q{environmentalize}
9
- s.description = %q{Provides an executable that converts a rails app's config structure. The basic idea is that environments themselves are now first-class citizens, allowing you to create several environments (e.g. staging, prodtest, demo, etc.) in a clean, organized fashion. Each environment is given its own folder where it can store its own set of configuration files (think mongrel configs, apache configs, etc.) without polluting the top-leve config/ direcotory.}
10
- s.email = %q{jtrupiano@gmail.com}
11
- s.executables = ["environmentalize"]
12
- s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
13
- s.files = ["History.txt", "Manifest.txt", "README.txt", "Rakefile", "bin/environmentalize", "environmentalist.gemspec", "lib/conf/postboot.rb", "lib/environmentalist.rb", "lib/environmentalist/version.rb", "test/rails210/README", "test/rails210/Rakefile", "test/rails210/app/controllers/application.rb", "test/rails210/app/helpers/application_helper.rb", "test/rails210/config/boot.rb", "test/rails210/config/database.yml", "test/rails210/config/environment.rb", "test/rails210/config/environments/development.rb", "test/rails210/config/environments/production.rb", "test/rails210/config/environments/test.rb", "test/rails210/config/initializers/inflections.rb", "test/rails210/config/initializers/mime_types.rb", "test/rails210/config/initializers/new_rails_defaults.rb", "test/rails210/config/routes.rb", "test/rails210/doc/README_FOR_APP", "test/rails210/log/development.log", "test/rails210/log/production.log", "test/rails210/log/server.log", "test/rails210/log/test.log", "test/rails210/public/404.html", "test/rails210/public/422.html", "test/rails210/public/500.html", "test/rails210/public/dispatch.cgi", "test/rails210/public/dispatch.fcgi", "test/rails210/public/dispatch.rb", "test/rails210/public/favicon.ico", "test/rails210/public/images/rails.png", "test/rails210/public/index.html", "test/rails210/public/javascripts/application.js", "test/rails210/public/javascripts/controls.js", "test/rails210/public/javascripts/dragdrop.js", "test/rails210/public/javascripts/effects.js", "test/rails210/public/javascripts/prototype.js", "test/rails210/public/robots.txt", "test/rails210/script/about", "test/rails210/script/console", "test/rails210/script/dbconsole", "test/rails210/script/destroy", "test/rails210/script/generate", "test/rails210/script/performance/benchmarker", "test/rails210/script/performance/profiler", "test/rails210/script/performance/request", "test/rails210/script/plugin", "test/rails210/script/process/inspector", "test/rails210/script/process/reaper", "test/rails210/script/process/spawner", "test/rails210/script/runner", "test/rails210/script/server", "test/rails_version_test.rb", "test/rails210/test/test_helper.rb", "test/rails210test/test/test_helper.rb"]
14
- s.has_rdoc = true
15
- s.homepage = %q{http://github.com/jtrupiano/environmentalist/tree/master}
16
- s.rdoc_options = ["--main", "README.txt"]
17
- s.require_paths = ["lib"]
18
- s.rubyforge_project = %q{johntrupiano}
19
- s.rubygems_version = %q{1.2.0}
20
- s.summary = %q{Provides an executable that converts a rails app's config structure. The basic idea is that environments themselves are now first-class citizens, allowing you to create several environments (e.g. staging, prodtest, demo, etc.) in a clean, organized fashion. Each environment is given its own folder where it can store its own set of configuration files (think mongrel configs, apache configs, etc.) without polluting the top-leve config/ direcotory.}
21
- s.test_files = ["test/rails_version_test.rb"]
22
-
23
- if s.respond_to? :specification_version then
24
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
25
- s.specification_version = 2
26
-
27
- if current_version >= 3 then
28
- s.add_development_dependency(%q<hoe>, [">= 1.7.0"])
29
- else
30
- s.add_dependency(%q<hoe>, [">= 1.7.0"])
31
- end
32
- else
33
- s.add_dependency(%q<hoe>, [">= 1.7.0"])
34
- end
35
- end