edango 0.5.2 → 0.5.3

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ === 0.5.3 / 2010-01-17
2
+
3
+ * Fixed the list of dependencies
4
+ * Fixed options processing bugs
5
+
1
6
  === 0.5.2 / 2010-01-11
2
7
 
3
8
  * Proxy support was added
data/README.rdoc CHANGED
@@ -98,7 +98,8 @@ The public git clone URL
98
98
 
99
99
  == Contact Information
100
100
 
101
- Author:: Toksaitov Dmitrii Alexandrovich <toksaitov.d@gmail.com>
101
+ Author:: Toksaitov Dmitrii <toksaitov.d@gmail.com>
102
+ Awesome Art by:: Erik Kasymkoulov <ewok33parrots@gmail.com>
102
103
 
103
104
  == License
104
105
 
data/lib/edango.rb CHANGED
@@ -25,7 +25,7 @@ $LOAD_PATH.unshift(current_dir) unless $LOAD_PATH.include?(current_dir) or
25
25
  module EDango
26
26
  FULL_NAME = 'EDango'
27
27
  UNIX_NAME = 'edango'
28
- VERSION = '0.5.2'
28
+ VERSION = '0.5.3'
29
29
 
30
30
  AUTHOR = 'Toksaitov Dmitrii Alexandrovich'
31
31
 
@@ -90,6 +90,12 @@ module EDango
90
90
  end
91
91
  end
92
92
 
93
+ service :views_processor do
94
+ on_creation do
95
+ require 'haml'; Haml
96
+ end
97
+ end
98
+
93
99
  service :agent do
94
100
  on_creation do
95
101
  require 'mechanize'
@@ -39,7 +39,9 @@ module EDango
39
39
  disable :methodoverride
40
40
 
41
41
  configure do
42
- set :options, SERVICES[:environment].options
42
+ EDango::SERVICES[:views_processor]
43
+
44
+ set :options, EDango::SERVICES[:environment].options
43
45
 
44
46
  set :environment, (ENV['RACK_ENV'] || options[:environment]).intern()
45
47
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: edango
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Toksaitov Dmitrii Alexandrovich
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-11 00:00:00 +06:00
12
+ date: 2010-01-17 00:00:00 +06:00
13
13
  default_executable: edango
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -22,6 +22,16 @@ dependencies:
22
22
  - !ruby/object:Gem::Version
23
23
  version: 0.9.4
24
24
  version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: haml
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 2.2.16
34
+ version:
25
35
  - !ruby/object:Gem::Dependency
26
36
  name: mechanize
27
37
  type: :runtime