ruby_on_skis 1.0.0 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Rakefile +9 -8
  2. data/VERSION +1 -1
  3. data/ruby_on_skis.gemspec +90 -0
  4. metadata +4 -14
data/Rakefile CHANGED
@@ -6,17 +6,18 @@ Jeweler::Tasks.new do |gemspec|
6
6
  gemspec.name = "ruby_on_skis"
7
7
  gemspec.summary = "Provide a starting structure within which to program your wxRuby project"
8
8
  gemspec.description = <<-DESCRIPTION
9
+ This is the real deal! Download and Install away!
9
10
 
10
- I've just created the gem, which is totally non-working. Please do not install.
11
- I've just pushed it to get a feel for what to do.
11
+ Ruby on Skis provides a template for your wxRuby project.
12
+ The template provides a directory structure, a set of Rakefiles to manage, and most importantly,
13
+ to _package_ your Ruby application for distribution as a standalone program. It also includes an environment
14
+ to get the application running and provide basic services to the program code. For now, the template only
15
+ supports packaging for Mac OSX -and Windows-, although various flavors of Linux should be easily
16
+ accommodated and are planned for the future.
12
17
 
13
- The aim of Ruby on Skis is to provide a starting structure within which to program your wxRuby project.
14
- The template provides a directory structure, a set of Rakefiles to manage, and most importantly, to
15
- package your Ruby application for distribution as a standalone program when completed. It also includes
16
- an environment to get the application running and provide basic services to the program code.
17
- For now, the template only supports packaging for Mac OSX and Windows, although various flavors of
18
- Linux should be easily accommodated and are planned for the future
18
+ Note: Windows support has been removed in favor of getting a working generator and distributable gem in place.
19
19
  DESCRIPTION
20
+
20
21
  gemspec.email = "duskhacker@duskhacker.com"
21
22
  gemspec.homepage = "http://github.com/duskhacker/ruby_on_skis"
22
23
  gemspec.authors = ["Daniel P. Zepeda"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.2
@@ -0,0 +1,90 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{ruby_on_skis}
8
+ s.version = "1.0.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Daniel P. Zepeda"]
12
+ s.date = %q{2010-03-21}
13
+ s.default_executable = %q{ruby_on_skis}
14
+ s.description = %q{ This is the real deal! Download and Install away!
15
+
16
+ Ruby on Skis provides a template for your wxRuby project.
17
+ The template provides a directory structure, a set of Rakefiles to manage, and most importantly,
18
+ to _package_ your Ruby application for distribution as a standalone program. It also includes an environment
19
+ to get the application running and provide basic services to the program code. For now, the template only
20
+ supports packaging for Mac OSX -and Windows-, although various flavors of Linux should be easily
21
+ accommodated and are planned for the future.
22
+
23
+ Note: Windows support has been removed in favor of getting a working generator and distributable gem in place.
24
+ }
25
+ s.email = %q{duskhacker@duskhacker.com}
26
+ s.executables = ["ruby_on_skis"]
27
+ s.extra_rdoc_files = [
28
+ "README.textile"
29
+ ]
30
+ s.files = [
31
+ ".gitignore",
32
+ "README.textile",
33
+ "Rakefile",
34
+ "VERSION",
35
+ "bin/ruby_on_skis",
36
+ "lib/ruby_on_skis/generator.rb",
37
+ "ruby_on_skis.gemspec",
38
+ "sources/Gemfile",
39
+ "sources/Rakefile",
40
+ "sources/bin/init.rb",
41
+ "sources/bin/pinit.rb",
42
+ "sources/config/environment.rb",
43
+ "sources/config/requires.yml",
44
+ "sources/data/depends_1736.csv",
45
+ "sources/data/depends_3092.csv",
46
+ "sources/data/find_libs.rb",
47
+ "sources/data/lorem.txt",
48
+ "sources/fixtures/messages.yml",
49
+ "sources/images/ruby_on_skis.ico",
50
+ "sources/lib/extensions/string/truncate.rb",
51
+ "sources/lib/models/message.rb",
52
+ "sources/lib/wx/app.xrc",
53
+ "sources/lib/wx/app/app_frame.rb",
54
+ "sources/lib/wx/app/message_panel.rb",
55
+ "sources/lib/wx/app/taskbar_icon.rb",
56
+ "sources/lib/wx/base/appframebase.rb",
57
+ "sources/lib/wx/base/messagepanelbase.rb",
58
+ "sources/lib/wx/helpers/app_helper.rb",
59
+ "sources/migrate/20081128200300_init.rb",
60
+ "sources/package/config.yml",
61
+ "sources/package/installer.nsi",
62
+ "sources/package/mswin.rake",
63
+ "sources/package/osx.rake",
64
+ "sources/package/package_lib.rake",
65
+ "sources/script/console",
66
+ "sources/spec/config/environment_spec.rb",
67
+ "sources/spec/extensions/string/truncate_spec.rb",
68
+ "sources/spec/models/message_spec.rb",
69
+ "sources/spec/spec.opts",
70
+ "sources/spec/spec_helper.rb",
71
+ "sources/tasks/database.rake",
72
+ "sources/wxformbuilder_template.fbp"
73
+ ]
74
+ s.homepage = %q{http://github.com/duskhacker/ruby_on_skis}
75
+ s.rdoc_options = ["--charset=UTF-8"]
76
+ s.require_paths = ["lib"]
77
+ s.rubygems_version = %q{1.3.6}
78
+ s.summary = %q{Provide a starting structure within which to program your wxRuby project}
79
+
80
+ if s.respond_to? :specification_version then
81
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
82
+ s.specification_version = 3
83
+
84
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
85
+ else
86
+ end
87
+ else
88
+ end
89
+ end
90
+
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 0
9
- version: 1.0.0
8
+ - 2
9
+ version: 1.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel P. Zepeda
@@ -18,18 +18,7 @@ date: 2010-03-21 00:00:00 -05:00
18
18
  default_executable: ruby_on_skis
19
19
  dependencies: []
20
20
 
21
- description: |
22
-
23
- I've just created the gem, which is totally non-working. Please do not install.
24
- I've just pushed it to get a feel for what to do.
25
-
26
- The aim of Ruby on Skis is to provide a starting structure within which to program your wxRuby project.
27
- The template provides a directory structure, a set of Rakefiles to manage, and most importantly, to
28
- package your Ruby application for distribution as a standalone program when completed. It also includes
29
- an environment to get the application running and provide basic services to the program code.
30
- For now, the template only supports packaging for Mac OSX and Windows, although various flavors of
31
- Linux should be easily accommodated and are planned for the future
32
-
21
+ description: " This is the real deal! Download and Install away! \n\n Ruby on Skis provides a template for your wxRuby project. \n The template provides a directory structure, a set of Rakefiles to manage, and most importantly, \n to _package_ your Ruby application for distribution as a standalone program. It also includes an environment \n to get the application running and provide basic services to the program code. For now, the template only \n supports packaging for Mac OSX -and Windows-, although various flavors of Linux should be easily \n accommodated and are planned for the future.\n\n Note: Windows support has been removed in favor of getting a working generator and distributable gem in place. \n"
33
22
  email: duskhacker@duskhacker.com
34
23
  executables:
35
24
  - ruby_on_skis
@@ -44,6 +33,7 @@ files:
44
33
  - VERSION
45
34
  - bin/ruby_on_skis
46
35
  - lib/ruby_on_skis/generator.rb
36
+ - ruby_on_skis.gemspec
47
37
  - sources/Gemfile
48
38
  - sources/Rakefile
49
39
  - sources/bin/init.rb