sandro-homeward 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  History.txt
2
2
  Manifest.txt
3
- README.markdown
3
+ README.rdoc
4
4
  Rakefile
5
5
  generators/homeward/USAGE
6
6
  generators/homeward/homeward_generator.rb
@@ -1,21 +1,20 @@
1
- Homeward
2
- ==========
3
- by Sandro Turriate
4
- http://github.com/sandro/homeward
1
+ = Homeward
2
+ by Sandro Turriate
3
+ http://github.com/sandro/homeward
4
+
5
+ == DESCRIPTION:
5
6
 
6
- DESCRIPTION:
7
- --------
8
7
  Rakefile and generators to help create my baseapp
9
8
 
10
- FEATURES:
11
- --------
12
- Installs Blueprint css
13
- Replaces prototype with jrails
14
- Creates an application layout which includes Blueprint and jrails
15
- Creates config/settings.yml for application specific settings
16
- Creates config/initializers/constants.rb with an APP\_CONFIG constant which consists of the settings defined in config/settings.yml
17
- Defines `render_flashes` which will render a flash message when available, utilized by the layout
18
- Defines `current_page` helper to be used with will\_paginate
9
+ == FEATURES:
10
+
11
+ * Installs Blueprint css
12
+ * Replaces prototype with jrails
13
+ * Creates an application layout which includes Blueprint and jrails
14
+ * Creates config/settings.yml for application specific settings
15
+ * Creates config/initializers/constants.rb with an APP\_CONFIG constant which consists of the settings defined in config/settings.yml
16
+ * Defines render_flashes which will render a flash message when available, utilized by the layout
17
+ * Defines current_page helper to be used with will\_paginate
19
18
 
20
19
  rake homeward
21
20
  Update and install Blueprint, replace prototype with jrails
@@ -35,24 +34,24 @@ Defines `current_page` helper to be used with will\_paginate
35
34
  rake homeward:javascript:use_jrails
36
35
  replaces prototype with jrails
37
36
 
38
- REQUIREMENTS:
39
- --------
37
+ == REQUIREMENTS:
38
+
40
39
  * Rails
41
40
  * Haml
42
41
  * blueprint-css cloned somewhere on your filesystem (see lib/tasks/homeward.rake)
43
42
 
44
- INSTALL:
45
- --------
46
- 1. `config.gem 'sandro-homeward', :lib => 'homeward', :source => 'http://gems.github.com'`
47
- 2. Edit the `BLUEPRINT_GIT_PATH` constant in lib/tasks/homeward.rake
48
- 3. `script/generate homeward`
49
- 4. `rake homeward`
43
+ == INSTALL:
44
+
45
+ 1. config.gem 'sandro-homeward', :lib => 'homeward', :source => 'http://gems.github.com'
46
+ 2. Edit the BLUEPRINT_GIT_PATH constant in lib/tasks/homeward.rake
47
+ 3. script/generate homeward
48
+ 4. rake homeward
49
+
50
+ == LICENSE:
50
51
 
51
- LICENSE:
52
- --------
53
52
  (The MIT License)
54
53
 
55
- Copyright (c) 2008
54
+ Copyright (c) 2008 - 2009
56
55
 
57
56
  Permission is hereby granted, free of charge, to any person obtaining
58
57
  a copy of this software and associated documentation files (the
data/Rakefile CHANGED
@@ -32,7 +32,8 @@ PROJ.email = 'sandro.turriate@gmail.com'
32
32
  PROJ.url = 'http://github.com/sandro/homeward'
33
33
  PROJ.version = Homeward::VERSION
34
34
  PROJ.rubyforge.name = 'homeward'
35
- PROJ.readme_file = 'README.markdown'
35
+ PROJ.readme_file = 'README.rdoc'
36
+ PROJ.gem.development_dependencies = []
36
37
 
37
38
  PROJ.spec.opts << '--color'
38
39
 
data/lib/homeward.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'yaml'
2
2
 
3
3
  module Homeward
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.2'
5
5
  LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
6
6
  PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
7
7
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sandro-homeward
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sandro Turriate
@@ -9,18 +9,10 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-01-12 00:00:00 -08:00
12
+ date: 2009-01-13 00:00:00 -08:00
13
13
  default_executable:
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: bones
17
- version_requirement:
18
- version_requirements: !ruby/object:Gem::Requirement
19
- requirements:
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: 2.2.0
23
- version:
14
+ dependencies: []
15
+
24
16
  description: Personal rails methods I always use
25
17
  email: sandro.turriate@gmail.com
26
18
  executables: []
@@ -29,10 +21,11 @@ extensions: []
29
21
 
30
22
  extra_rdoc_files:
31
23
  - History.txt
24
+ - README.rdoc
32
25
  files:
33
26
  - History.txt
34
27
  - Manifest.txt
35
- - README.markdown
28
+ - README.rdoc
36
29
  - Rakefile
37
30
  - generators/homeward/USAGE
38
31
  - generators/homeward/homeward_generator.rb
@@ -52,7 +45,7 @@ homepage: http://github.com/sandro/homeward
52
45
  post_install_message:
53
46
  rdoc_options:
54
47
  - --main
55
- - README.markdown
48
+ - README.rdoc
56
49
  require_paths:
57
50
  - lib
58
51
  required_ruby_version: !ruby/object:Gem::Requirement