sandro-homeward 0.2.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.
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ pkg/*
2
+ *.gem
data/Rakefile CHANGED
@@ -1,41 +1,13 @@
1
- # Look in the tasks/setup.rb file for the various options that can be
2
- # configured in this Rakefile. The .rake files in the tasks directory
3
- # are where the options are used.
4
-
5
1
  begin
6
- require 'bones'
7
- Bones.setup
8
- rescue LoadError
9
- begin
10
- load 'tasks/setup.rb'
11
- rescue LoadError
12
- raise RuntimeError, '### please install the "bones" gem ###'
13
- end
14
- end
15
-
16
- ensure_in_path 'lib'
17
- require 'homeward'
18
-
19
- task :default => 'spec:run'
20
-
21
- namespace :gem do
22
- task :redo do
23
- puts %x(rm -rf pkg/homeward-1.0.0 && rake manifest:create && rake gem:reinstall && rake gem:spec)
2
+ require 'jeweler'
3
+ Jeweler::Tasks.new do |gemspec|
4
+ gemspec.name = "homeward"
5
+ gemspec.summary = "Install blueprint, jrails, application layout, etc."
6
+ gemspec.email = "sandro.turriate@gmail.com"
7
+ gemspec.homepage = "http://github.com/sandro/homeward"
8
+ gemspec.description = "A collection of utilities I like to use on all new rails projects"
9
+ gemspec.authors = ["Sandro Turriate"]
24
10
  end
11
+ rescue LoadError
12
+ puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
25
13
  end
26
-
27
- PROJ.name = 'homeward'
28
- PROJ.summary = 'Personal rails methods I always use'
29
- PROJ.description = PROJ.summary
30
- PROJ.authors = 'Sandro Turriate'
31
- PROJ.email = 'sandro.turriate@gmail.com'
32
- PROJ.url = 'http://github.com/sandro/homeward'
33
- PROJ.version = Homeward::VERSION
34
- PROJ.rubyforge.name = 'homeward'
35
- PROJ.readme_file = 'README.rdoc'
36
- PROJ.gem.development_dependencies = []
37
-
38
- PROJ.spec.opts << '--color'
39
-
40
- PROJ.exclude << %w(.*.gemspec \.gitignore)
41
-
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.2.1
data/homeward.gemspec ADDED
@@ -0,0 +1,58 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{homeward}
5
+ s.version = "0.2.1"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Sandro Turriate"]
9
+ s.date = %q{2009-06-13}
10
+ s.description = %q{A collection of utilities I like to use on all new rails projects}
11
+ s.email = %q{sandro.turriate@gmail.com}
12
+ s.extra_rdoc_files = [
13
+ "README.rdoc"
14
+ ]
15
+ s.files = [
16
+ ".gitignore",
17
+ "History.txt",
18
+ "Manifest.txt",
19
+ "README.rdoc",
20
+ "Rakefile",
21
+ "VERSION",
22
+ "homeward.gemspec",
23
+ "init.rb",
24
+ "lib/homeward.rb",
25
+ "lib/homeward/tasks/homeward.rake",
26
+ "rails/init.rb",
27
+ "rails_generators/homeward/USAGE",
28
+ "rails_generators/homeward/homeward_generator.rb",
29
+ "rails_generators/homeward/templates/application.html.haml",
30
+ "rails_generators/homeward/templates/application_settings.rb",
31
+ "rails_generators/homeward/templates/current_page_normalizer.rb",
32
+ "rails_generators/homeward/templates/homeward.rake",
33
+ "rails_generators/homeward/templates/homeward_helper.rb",
34
+ "rails_generators/homeward/templates/settings.yml",
35
+ "spec/homeward_spec.rb",
36
+ "spec/spec_helper.rb"
37
+ ]
38
+ s.has_rdoc = true
39
+ s.homepage = %q{http://github.com/sandro/homeward}
40
+ s.rdoc_options = ["--charset=UTF-8"]
41
+ s.require_paths = ["lib"]
42
+ s.rubygems_version = %q{1.3.1}
43
+ s.summary = %q{Install blueprint, jrails, application layout, etc.}
44
+ s.test_files = [
45
+ "spec/homeward_spec.rb",
46
+ "spec/spec_helper.rb"
47
+ ]
48
+
49
+ if s.respond_to? :specification_version then
50
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
51
+ s.specification_version = 2
52
+
53
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
54
+ else
55
+ end
56
+ else
57
+ end
58
+ end
File without changes
@@ -1,5 +1,6 @@
1
1
  begin
2
- load 'homeward/lib/tasks/homeward.rake'
2
+ require 'homeward'
3
+ load 'homeward/tasks/homeward.rake'
3
4
  rescue LoadError
4
5
  puts "Could not find the homeward raketask, did you install the 'sandro-homeward' gem?"
5
6
  end
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.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sandro Turriate
@@ -9,29 +9,29 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-06-01 00:00:00 -07:00
12
+ date: 2009-06-13 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
16
- description: Personal rails methods I always use
16
+ description: A collection of utilities I like to use on all new rails projects
17
17
  email: sandro.turriate@gmail.com
18
18
  executables: []
19
19
 
20
20
  extensions: []
21
21
 
22
22
  extra_rdoc_files:
23
- - History.txt
24
- - Manifest.txt
25
23
  - README.rdoc
26
- - lib/tasks/homeward.rake
27
24
  files:
25
+ - .gitignore
28
26
  - History.txt
29
27
  - Manifest.txt
30
28
  - README.rdoc
31
29
  - Rakefile
30
+ - VERSION
31
+ - homeward.gemspec
32
32
  - init.rb
33
33
  - lib/homeward.rb
34
- - lib/tasks/homeward.rake
34
+ - lib/homeward/tasks/homeward.rake
35
35
  - rails/init.rb
36
36
  - rails_generators/homeward/USAGE
37
37
  - rails_generators/homeward/homeward_generator.rb
@@ -47,8 +47,7 @@ has_rdoc: true
47
47
  homepage: http://github.com/sandro/homeward
48
48
  post_install_message:
49
49
  rdoc_options:
50
- - --main
51
- - README.rdoc
50
+ - --charset=UTF-8
52
51
  require_paths:
53
52
  - lib
54
53
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -65,10 +64,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
65
64
  version:
66
65
  requirements: []
67
66
 
68
- rubyforge_project: homeward
67
+ rubyforge_project:
69
68
  rubygems_version: 1.2.0
70
69
  signing_key:
71
70
  specification_version: 2
72
- summary: Personal rails methods I always use
73
- test_files: []
74
-
71
+ summary: Install blueprint, jrails, application layout, etc.
72
+ test_files:
73
+ - spec/homeward_spec.rb
74
+ - spec/spec_helper.rb