rango 0.2.pre → 0.2
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.
- data/Rakefile +4 -0
- data/lib/rango/version.rb +1 -1
- metadata +6 -84
data/Rakefile
CHANGED
|
@@ -6,6 +6,10 @@ require_relative "lib/rango/version"
|
|
|
6
6
|
ENV["RUBYLIB"] = Dir["gems/gems/*/lib"].join(":")
|
|
7
7
|
$LOAD_PATH.clear.push(*Dir["gems/gems/*/lib"])
|
|
8
8
|
|
|
9
|
+
# encoding
|
|
10
|
+
Encoding.default_internal = "utf-8"
|
|
11
|
+
Encoding.default_external = "utf-8"
|
|
12
|
+
|
|
9
13
|
# http://support.runcoderun.com/faqs/builds/how-do-i-run-rake-with-trace-enabled
|
|
10
14
|
Rake.application.options.trace = true
|
|
11
15
|
|
data/lib/rango/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,46 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rango
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2
|
|
4
|
+
version: "0.2"
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- "Jakub \xC5\xA0\xC5\xA5astn\xC3\xBD aka Botanicus"
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain:
|
|
11
|
-
date: 2009-12-
|
|
11
|
+
date: 2009-12-25 00:00:00 +00:00
|
|
12
12
|
default_executable: rango
|
|
13
13
|
dependencies:
|
|
14
|
-
- !ruby/object:Gem::Dependency
|
|
15
|
-
name: rack
|
|
16
|
-
type: :development
|
|
17
|
-
version_requirement:
|
|
18
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
19
|
-
requirements:
|
|
20
|
-
- - ">="
|
|
21
|
-
- !ruby/object:Gem::Version
|
|
22
|
-
version: 1.0.1
|
|
23
|
-
version:
|
|
24
|
-
- !ruby/object:Gem::Dependency
|
|
25
|
-
name: tilt
|
|
26
|
-
type: :development
|
|
27
|
-
version_requirement:
|
|
28
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
29
|
-
requirements:
|
|
30
|
-
- - ">="
|
|
31
|
-
- !ruby/object:Gem::Version
|
|
32
|
-
version: "0.3"
|
|
33
|
-
version:
|
|
34
|
-
- !ruby/object:Gem::Dependency
|
|
35
|
-
name: media-path
|
|
36
|
-
type: :development
|
|
37
|
-
version_requirement:
|
|
38
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
39
|
-
requirements:
|
|
40
|
-
- - ">="
|
|
41
|
-
- !ruby/object:Gem::Version
|
|
42
|
-
version: 0.1.1
|
|
43
|
-
version:
|
|
44
14
|
- !ruby/object:Gem::Dependency
|
|
45
15
|
name: simple-templater
|
|
46
16
|
type: :development
|
|
@@ -274,55 +244,8 @@ has_rdoc: true
|
|
|
274
244
|
homepage: http://github.com/botanicus/rango
|
|
275
245
|
licenses: []
|
|
276
246
|
|
|
277
|
-
post_install_message:
|
|
278
|
-
|
|
279
|
-
* Just basics
|
|
280
|
-
|
|
281
|
-
= Version 0.0.2 MVC Princess
|
|
282
|
-
* static files middleware
|
|
283
|
-
* MVC layer
|
|
284
|
-
* sessions, cookies
|
|
285
|
-
* integrated merb-auth
|
|
286
|
-
|
|
287
|
-
= Version 0.0.3
|
|
288
|
-
|
|
289
|
-
= Version 0.0.4
|
|
290
|
-
|
|
291
|
-
= Version 0.1
|
|
292
|
-
* [FEATURE] environments support
|
|
293
|
-
* [FEATURE] installation without RubyGems
|
|
294
|
-
* [FEATURE] HTTP caching
|
|
295
|
-
* [FEATURE] Hooks for Rendering
|
|
296
|
-
* [SPECS] Integration with RunCodeRun.com
|
|
297
|
-
* [SPECS] All specs passing
|
|
298
|
-
* SimpleTemplater, RubyExts & CLI
|
|
299
|
-
* [FEATURE] Bundler Support
|
|
300
|
-
* [FEATURE] Generic view
|
|
301
|
-
* [FEATURE] Project generator
|
|
302
|
-
* [FEATURE] Rack-mount support
|
|
303
|
-
|
|
304
|
-
= Version 0.1.1
|
|
305
|
-
* Tilt support
|
|
306
|
-
* Removed old merb-helpers
|
|
307
|
-
* Reworked generic views
|
|
308
|
-
* Default attributes for Haml
|
|
309
|
-
* MessagesMixin and FiltersMixin were divided from Rango::Controller
|
|
310
|
-
* Shebang is just ruby rather than ruby1.9, so it plays well with rvm
|
|
311
|
-
* ImplicitRendering and ExplicitRendering mixins for using locals
|
|
312
|
-
vs. rendering in context of current controller instance
|
|
313
|
-
|
|
314
|
-
= Version 0.1.2, 13/12/2009
|
|
315
|
-
* Sequel support
|
|
316
|
-
* Project generator renamed to stack generator
|
|
317
|
-
* Removed app and bigapp generators
|
|
318
|
-
* Added migration task for DataMapper
|
|
319
|
-
* Removed layer of ORM adapters
|
|
320
|
-
* Removed Project constant and settings
|
|
321
|
-
* Much more modular design
|
|
322
|
-
* Removed dependencies, since you can use whichever subset of Rango
|
|
323
|
-
* There is Rango::Router.app instead of Project.router
|
|
324
|
-
|
|
325
|
-
= Version 0.2.0, 24/12/2009
|
|
247
|
+
post_install_message: |-
|
|
248
|
+
Version 0.2.0, 24/12/2009
|
|
326
249
|
* Sequel support
|
|
327
250
|
* Logger is now configurable, you don't have to use any particular one
|
|
328
251
|
* Rango doesn't depend on RubyExts anymore
|
|
@@ -337,7 +260,6 @@ post_install_message: |
|
|
|
337
260
|
* rake hooks will install task for removing whitespace in pre-commit hook, contributors should use it!
|
|
338
261
|
* Template helpers can work with paths relative to current template via ./path.html resp. ../path.html. All other paths are relative to the template paths.
|
|
339
262
|
* Use simple-logger as a default logger or standar logger if the simple-logger isn't installed.
|
|
340
|
-
|
|
341
263
|
rdoc_options: []
|
|
342
264
|
|
|
343
265
|
require_paths:
|
|
@@ -350,9 +272,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
350
272
|
version:
|
|
351
273
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
352
274
|
requirements:
|
|
353
|
-
- - "
|
|
275
|
+
- - ">="
|
|
354
276
|
- !ruby/object:Gem::Version
|
|
355
|
-
version:
|
|
277
|
+
version: "0"
|
|
356
278
|
version:
|
|
357
279
|
requirements: []
|
|
358
280
|
|