ruboss_on_ruby 1.0.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/History.txt +3 -0
- data/Manifest.txt +101 -0
- data/README.txt +37 -0
- data/Rakefile +4 -0
- data/config/hoe.rb +72 -0
- data/config/requirements.rb +15 -0
- data/gpl-3.0.txt +674 -0
- data/lib/ruboss_on_ruby.rb +64 -0
- data/lib/ruboss_on_ruby/active_foo.rb +127 -0
- data/lib/ruboss_on_ruby/active_record_tasks.rb +75 -0
- data/lib/ruboss_on_ruby/configuration.rb +38 -0
- data/lib/ruboss_on_ruby/tasks.rb +74 -0
- data/lib/ruboss_on_ruby/version.rb +11 -0
- data/merb_generators/ruboss_config/USAGE +18 -0
- data/merb_generators/ruboss_config/ruboss_config_generator.rb +135 -0
- data/merb_generators/ruboss_config/templates/actionscript.properties +16 -0
- data/merb_generators/ruboss_config/templates/actionscriptair.properties +16 -0
- data/merb_generators/ruboss_config/templates/expressInstall.swf +0 -0
- data/merb_generators/ruboss_config/templates/flex.properties +2 -0
- data/merb_generators/ruboss_config/templates/html-template/AC_OETags.js +276 -0
- data/merb_generators/ruboss_config/templates/html-template/history/history.css +6 -0
- data/merb_generators/ruboss_config/templates/html-template/history/history.js +645 -0
- data/merb_generators/ruboss_config/templates/html-template/history/historyFrame.html +29 -0
- data/merb_generators/ruboss_config/templates/html-template/index.template.html +121 -0
- data/merb_generators/ruboss_config/templates/html-template/playerProductInstall.swf +0 -0
- data/merb_generators/ruboss_config/templates/index.html.erb +19 -0
- data/merb_generators/ruboss_config/templates/mainair-app.xml +134 -0
- data/merb_generators/ruboss_config/templates/mainapp.mxml +34 -0
- data/merb_generators/ruboss_config/templates/project.properties +18 -0
- data/merb_generators/ruboss_config/templates/projectair.properties +24 -0
- data/merb_generators/ruboss_config/templates/swfobject.js +5 -0
- data/merb_generators/ruboss_controller/USAGE +11 -0
- data/merb_generators/ruboss_controller/ruboss_controller_generator.rb +32 -0
- data/merb_generators/ruboss_controller/templates/controller.as.erb +35 -0
- data/merb_generators/ruboss_resource_controller/USAGE +5 -0
- data/merb_generators/ruboss_resource_controller/ruboss_resource_controller_generator.rb +70 -0
- data/merb_generators/ruboss_resource_controller/templates/app/controllers/%controller_file_name%.rb +55 -0
- data/merb_generators/ruboss_resource_controller/templates/app/helpers/%controller_file_name%_helper.rb +16 -0
- data/merb_generators/ruboss_scaffold/USAGE +5 -0
- data/merb_generators/ruboss_scaffold/ruboss_scaffold_generator.rb +190 -0
- data/merb_generators/ruboss_scaffold/templates/component.mxml.erb +148 -0
- data/merb_generators/ruboss_scaffold/templates/fixtures.yml.erb +35 -0
- data/merb_generators/ruboss_scaffold/templates/migration.rb.erb +19 -0
- data/merb_generators/ruboss_scaffold/templates/model.as.erb +42 -0
- data/merb_generators/ruboss_scaffold/templates/model.rb.erb +11 -0
- data/merb_generators/ruboss_yaml_scaffold/USAGE +5 -0
- data/merb_generators/ruboss_yaml_scaffold/ruboss_yaml_scaffold_generator.rb +53 -0
- data/rails_generators/ruboss_config/USAGE +18 -0
- data/rails_generators/ruboss_config/ruboss_config_generator.rb +126 -0
- data/rails_generators/ruboss_config/templates/actionscript.properties +16 -0
- data/rails_generators/ruboss_config/templates/actionscriptair.properties +16 -0
- data/rails_generators/ruboss_config/templates/expressInstall.swf +0 -0
- data/rails_generators/ruboss_config/templates/flex.properties +2 -0
- data/rails_generators/ruboss_config/templates/html-template/AC_OETags.js +276 -0
- data/rails_generators/ruboss_config/templates/html-template/history/history.css +6 -0
- data/rails_generators/ruboss_config/templates/html-template/history/history.js +645 -0
- data/rails_generators/ruboss_config/templates/html-template/history/historyFrame.html +29 -0
- data/rails_generators/ruboss_config/templates/html-template/index.template.html +121 -0
- data/rails_generators/ruboss_config/templates/html-template/playerProductInstall.swf +0 -0
- data/rails_generators/ruboss_config/templates/index.html.erb +19 -0
- data/rails_generators/ruboss_config/templates/mainair-app.xml +134 -0
- data/rails_generators/ruboss_config/templates/mainapp.mxml +34 -0
- data/rails_generators/ruboss_config/templates/project.properties +18 -0
- data/rails_generators/ruboss_config/templates/projectair.properties +24 -0
- data/rails_generators/ruboss_config/templates/ruboss_tasks.rake +15 -0
- data/rails_generators/ruboss_config/templates/swfobject.js +5 -0
- data/rails_generators/ruboss_controller/USAGE +11 -0
- data/rails_generators/ruboss_controller/ruboss_controller_generator.rb +46 -0
- data/rails_generators/ruboss_controller/templates/controller.as.erb +35 -0
- data/rails_generators/ruboss_scaffold/USAGE +35 -0
- data/rails_generators/ruboss_scaffold/ruboss_scaffold_generator.rb +193 -0
- data/rails_generators/ruboss_scaffold/templates/component.mxml.erb +148 -0
- data/rails_generators/ruboss_scaffold/templates/controller.rb.erb +97 -0
- data/rails_generators/ruboss_scaffold/templates/fixtures.yml.erb +35 -0
- data/rails_generators/ruboss_scaffold/templates/migration.rb.erb +19 -0
- data/rails_generators/ruboss_scaffold/templates/model.as.erb +42 -0
- data/rails_generators/ruboss_scaffold/templates/model.rb.erb +11 -0
- data/rails_generators/ruboss_yaml_scaffold/USAGE +14 -0
- data/rails_generators/ruboss_yaml_scaffold/ruboss_yaml_scaffold_generator.rb +45 -0
- data/rcl-1.0.txt +0 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/script/txt2html +82 -0
- data/setup.rb +1585 -0
- data/tasks/deployment.rake +34 -0
- data/tasks/environment.rake +7 -0
- data/tasks/website.rake +17 -0
- data/test/active_foo_test.rb +16 -0
- data/test/test_generator_helper.rb +29 -0
- data/test/test_helper.rb +2 -0
- data/test/test_ruboss_config_generator.rb +45 -0
- data/test/test_ruboss_controller_generator.rb +45 -0
- data/test/test_ruboss_on_ruby.rb +11 -0
- data/test/test_ruboss_scaffold_generator.rb +45 -0
- data/test/test_ruboss_yaml_scaffold_generator.rb +46 -0
- data/website/index.html +86 -0
- data/website/index.txt +83 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +138 -0
- data/website/template.html.erb +48 -0
- metadata +166 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
desc 'Release the website and new gem version'
|
|
2
|
+
task :deploy => [:check_version, :website, :release] do
|
|
3
|
+
puts "Remember to create SVN tag:"
|
|
4
|
+
puts "svn copy svn+ssh://#{rubyforge_username}@rubyforge.org/var/svn/#{PATH}/trunk " +
|
|
5
|
+
"svn+ssh://#{rubyforge_username}@rubyforge.org/var/svn/#{PATH}/tags/REL-#{VERS} "
|
|
6
|
+
puts "Suggested comment:"
|
|
7
|
+
puts "Tagging release #{CHANGES}"
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
desc 'Runs tasks website_generate and install_gem as a local deployment of the gem'
|
|
11
|
+
task :local_deploy => [:website_generate, :install_gem]
|
|
12
|
+
|
|
13
|
+
task :check_version do
|
|
14
|
+
unless ENV['VERSION']
|
|
15
|
+
puts 'Must pass a VERSION=x.y.z release version'
|
|
16
|
+
exit
|
|
17
|
+
end
|
|
18
|
+
unless ENV['VERSION'] == VERS
|
|
19
|
+
puts "Please update your version.rb to match the release version, currently #{VERS}"
|
|
20
|
+
exit
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
desc 'Install the package as a gem, without generating documentation(ri/rdoc)'
|
|
25
|
+
task :install_gem_no_doc => [:clean, :package] do
|
|
26
|
+
sh "#{'sudo ' unless Hoe::WINDOZE }gem install pkg/*.gem --no-rdoc --no-ri"
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
namespace :manifest do
|
|
30
|
+
desc 'Recreate Manifest.txt to include ALL files'
|
|
31
|
+
task :refresh do
|
|
32
|
+
`rake check_manifest | patch -p0 > Manifest.txt`
|
|
33
|
+
end
|
|
34
|
+
end
|
data/tasks/website.rake
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
desc 'Generate website files'
|
|
2
|
+
task :website_generate => :ruby_env do
|
|
3
|
+
(Dir['website/**/*.txt'] - Dir['website/version*.txt']).each do |txt|
|
|
4
|
+
sh %{ #{RUBY_APP} script/txt2html #{txt} > #{txt.gsub(/txt$/,'html')} }
|
|
5
|
+
end
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
desc 'Upload website files to rubyforge'
|
|
9
|
+
task :website_upload do
|
|
10
|
+
host = "#{rubyforge_username}@rubyforge.org"
|
|
11
|
+
remote_dir = "/var/www/gforge-projects/#{PATH}/"
|
|
12
|
+
local_dir = 'website'
|
|
13
|
+
sh %{rsync -aCv #{local_dir}/ #{host}:#{remote_dir}}
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
desc 'Generate and upload website files'
|
|
17
|
+
task :website => [:website_generate, :website_upload, :publish_docs]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
require 'test/unit'
|
|
2
|
+
require 'rubygems'
|
|
3
|
+
require 'action_controller'
|
|
4
|
+
require 'active_support'
|
|
5
|
+
require 'active_record'
|
|
6
|
+
require File.join(File.dirname(__FILE__), '..', 'lib', 'ruboss_on_ruby', 'active_foo')
|
|
7
|
+
|
|
8
|
+
class ActiveFooTest < Test::Unit::TestCase
|
|
9
|
+
|
|
10
|
+
def test_to_fxml_with_args_on_empty_array_should_not_blow_up
|
|
11
|
+
a = ClassyEmptyArray.new(Object)
|
|
12
|
+
assert_nothing_raised {a.to_fxml}
|
|
13
|
+
assert_nothing_raised {a.to_fxml(:include => :test)}
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
end
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
begin
|
|
2
|
+
require File.dirname(__FILE__) + '/test_helper'
|
|
3
|
+
rescue LoadError
|
|
4
|
+
require 'test/unit'
|
|
5
|
+
end
|
|
6
|
+
require 'fileutils'
|
|
7
|
+
|
|
8
|
+
# Must set before requiring generator libs.
|
|
9
|
+
TMP_ROOT = File.dirname(__FILE__) + "/tmp" unless defined?(TMP_ROOT)
|
|
10
|
+
PROJECT_NAME = "myproject" unless defined?(PROJECT_NAME)
|
|
11
|
+
app_root = File.join(TMP_ROOT, PROJECT_NAME)
|
|
12
|
+
if defined?(APP_ROOT)
|
|
13
|
+
APP_ROOT.replace(app_root)
|
|
14
|
+
else
|
|
15
|
+
APP_ROOT = app_root
|
|
16
|
+
end
|
|
17
|
+
if defined?(RAILS_ROOT)
|
|
18
|
+
RAILS_ROOT.replace(app_root)
|
|
19
|
+
else
|
|
20
|
+
RAILS_ROOT = app_root
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
begin
|
|
24
|
+
require 'rubigen'
|
|
25
|
+
rescue LoadError
|
|
26
|
+
require 'rubygems'
|
|
27
|
+
require 'rubigen'
|
|
28
|
+
end
|
|
29
|
+
require 'rubigen/helpers/generator_test_helper'
|
data/test/test_helper.rb
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
require File.join(File.dirname(__FILE__), "test_generator_helper.rb")
|
|
2
|
+
|
|
3
|
+
require 'rails_generator'
|
|
4
|
+
|
|
5
|
+
class TestRubossConfigGenerator < Test::Unit::TestCase
|
|
6
|
+
include RubiGen::GeneratorTestHelper
|
|
7
|
+
|
|
8
|
+
def setup
|
|
9
|
+
bare_setup
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def teardown
|
|
13
|
+
bare_teardown
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
# Some generator-related assertions:
|
|
17
|
+
# assert_generated_file(name, &block) # block passed the file contents
|
|
18
|
+
# assert_directory_exists(name)
|
|
19
|
+
# assert_generated_class(name, &block)
|
|
20
|
+
# assert_generated_module(name, &block)
|
|
21
|
+
# assert_generated_test_for(name, &block)
|
|
22
|
+
# The assert_generated_(class|module|test_for) &block is passed the body of the class/module within the file
|
|
23
|
+
# assert_has_method(body, *methods) # check that the body has a list of methods (methods with parentheses not supported yet)
|
|
24
|
+
#
|
|
25
|
+
# Other helper methods are:
|
|
26
|
+
# app_root_files - put this in teardown to show files generated by the test method (e.g. p app_root_files)
|
|
27
|
+
# bare_setup - place this in setup method to create the APP_ROOT folder for each test
|
|
28
|
+
# bare_teardown - place this in teardown method to destroy the TMP_ROOT or APP_ROOT folder after each test
|
|
29
|
+
|
|
30
|
+
def test_generator_without_options
|
|
31
|
+
name = "myapp"
|
|
32
|
+
run_generator('ruboss_config', [name], sources)
|
|
33
|
+
assert_generated_file("some_file")
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
private
|
|
37
|
+
def sources
|
|
38
|
+
[RubiGen::PathSource.new(:test, File.join(File.dirname(__FILE__),"..", generator_path))
|
|
39
|
+
]
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
def generator_path
|
|
43
|
+
"rails_generators"
|
|
44
|
+
end
|
|
45
|
+
end
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
require File.join(File.dirname(__FILE__), "test_generator_helper.rb")
|
|
2
|
+
|
|
3
|
+
require 'rails_generator'
|
|
4
|
+
|
|
5
|
+
class TestRubossControllerGenerator < Test::Unit::TestCase
|
|
6
|
+
include RubiGen::GeneratorTestHelper
|
|
7
|
+
|
|
8
|
+
def setup
|
|
9
|
+
bare_setup
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def teardown
|
|
13
|
+
bare_teardown
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
# Some generator-related assertions:
|
|
17
|
+
# assert_generated_file(name, &block) # block passed the file contents
|
|
18
|
+
# assert_directory_exists(name)
|
|
19
|
+
# assert_generated_class(name, &block)
|
|
20
|
+
# assert_generated_module(name, &block)
|
|
21
|
+
# assert_generated_test_for(name, &block)
|
|
22
|
+
# The assert_generated_(class|module|test_for) &block is passed the body of the class/module within the file
|
|
23
|
+
# assert_has_method(body, *methods) # check that the body has a list of methods (methods with parentheses not supported yet)
|
|
24
|
+
#
|
|
25
|
+
# Other helper methods are:
|
|
26
|
+
# app_root_files - put this in teardown to show files generated by the test method (e.g. p app_root_files)
|
|
27
|
+
# bare_setup - place this in setup method to create the APP_ROOT folder for each test
|
|
28
|
+
# bare_teardown - place this in teardown method to destroy the TMP_ROOT or APP_ROOT folder after each test
|
|
29
|
+
|
|
30
|
+
def test_generator_without_options
|
|
31
|
+
name = "myapp"
|
|
32
|
+
run_generator('ruboss_controller', [name], sources)
|
|
33
|
+
assert_generated_file("some_file")
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
private
|
|
37
|
+
def sources
|
|
38
|
+
[RubiGen::PathSource.new(:test, File.join(File.dirname(__FILE__),"..", generator_path))
|
|
39
|
+
]
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
def generator_path
|
|
43
|
+
"rails_generators"
|
|
44
|
+
end
|
|
45
|
+
end
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
require File.join(File.dirname(__FILE__), "test_generator_helper.rb")
|
|
2
|
+
|
|
3
|
+
require 'rails_generator'
|
|
4
|
+
|
|
5
|
+
class TestRubossScaffoldGenerator < Test::Unit::TestCase
|
|
6
|
+
include RubiGen::GeneratorTestHelper
|
|
7
|
+
|
|
8
|
+
def setup
|
|
9
|
+
bare_setup
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def teardown
|
|
13
|
+
bare_teardown
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
# Some generator-related assertions:
|
|
17
|
+
# assert_generated_file(name, &block) # block passed the file contents
|
|
18
|
+
# assert_directory_exists(name)
|
|
19
|
+
# assert_generated_class(name, &block)
|
|
20
|
+
# assert_generated_module(name, &block)
|
|
21
|
+
# assert_generated_test_for(name, &block)
|
|
22
|
+
# The assert_generated_(class|module|test_for) &block is passed the body of the class/module within the file
|
|
23
|
+
# assert_has_method(body, *methods) # check that the body has a list of methods (methods with parentheses not supported yet)
|
|
24
|
+
#
|
|
25
|
+
# Other helper methods are:
|
|
26
|
+
# app_root_files - put this in teardown to show files generated by the test method (e.g. p app_root_files)
|
|
27
|
+
# bare_setup - place this in setup method to create the APP_ROOT folder for each test
|
|
28
|
+
# bare_teardown - place this in teardown method to destroy the TMP_ROOT or APP_ROOT folder after each test
|
|
29
|
+
|
|
30
|
+
def test_generator_without_options
|
|
31
|
+
name = "myapp"
|
|
32
|
+
run_generator('ruboss_scaffold', [name], sources)
|
|
33
|
+
assert_generated_file("some_file")
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
private
|
|
37
|
+
def sources
|
|
38
|
+
[RubiGen::PathSource.new(:test, File.join(File.dirname(__FILE__),"..", generator_path))
|
|
39
|
+
]
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
def generator_path
|
|
43
|
+
"rails_generators"
|
|
44
|
+
end
|
|
45
|
+
end
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
require File.join(File.dirname(__FILE__), "test_generator_helper.rb")
|
|
2
|
+
|
|
3
|
+
require 'merb-core'
|
|
4
|
+
require 'merb-gen'
|
|
5
|
+
|
|
6
|
+
class TestRubossYamlScaffoldGenerator < Test::Unit::TestCase
|
|
7
|
+
include RubiGen::GeneratorTestHelper
|
|
8
|
+
|
|
9
|
+
def setup
|
|
10
|
+
bare_setup
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def teardown
|
|
14
|
+
bare_teardown
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
# Some generator-related assertions:
|
|
18
|
+
# assert_generated_file(name, &block) # block passed the file contents
|
|
19
|
+
# assert_directory_exists(name)
|
|
20
|
+
# assert_generated_class(name, &block)
|
|
21
|
+
# assert_generated_module(name, &block)
|
|
22
|
+
# assert_generated_test_for(name, &block)
|
|
23
|
+
# The assert_generated_(class|module|test_for) &block is passed the body of the class/module within the file
|
|
24
|
+
# assert_has_method(body, *methods) # check that the body has a list of methods (methods with parentheses not supported yet)
|
|
25
|
+
#
|
|
26
|
+
# Other helper methods are:
|
|
27
|
+
# app_root_files - put this in teardown to show files generated by the test method (e.g. p app_root_files)
|
|
28
|
+
# bare_setup - place this in setup method to create the APP_ROOT folder for each test
|
|
29
|
+
# bare_teardown - place this in teardown method to destroy the TMP_ROOT or APP_ROOT folder after each test
|
|
30
|
+
|
|
31
|
+
def test_generator_without_options
|
|
32
|
+
name = "myapp"
|
|
33
|
+
run_generator('ruboss_yaml_scaffold', [name], sources)
|
|
34
|
+
assert_generated_file("some_file")
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
private
|
|
38
|
+
def sources
|
|
39
|
+
[RubiGen::PathSource.new(:test, File.join(File.dirname(__FILE__),"..", generator_path))
|
|
40
|
+
]
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
def generator_path
|
|
44
|
+
"merb_generators"
|
|
45
|
+
end
|
|
46
|
+
end
|
data/website/index.html
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<link rel="stylesheet" href="stylesheets/screen.css" type="text/css" media="screen" />
|
|
6
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
7
|
+
<title>
|
|
8
|
+
ruboss_on_ruby
|
|
9
|
+
</title>
|
|
10
|
+
<script src="javascripts/rounded_corners_lite.inc.js" type="text/javascript"></script>
|
|
11
|
+
<style>
|
|
12
|
+
|
|
13
|
+
</style>
|
|
14
|
+
<script type="text/javascript">
|
|
15
|
+
window.onload = function() {
|
|
16
|
+
settings = {
|
|
17
|
+
tl: { radius: 10 },
|
|
18
|
+
tr: { radius: 10 },
|
|
19
|
+
bl: { radius: 10 },
|
|
20
|
+
br: { radius: 10 },
|
|
21
|
+
antiAlias: true,
|
|
22
|
+
autoPad: true,
|
|
23
|
+
validTags: ["div"]
|
|
24
|
+
}
|
|
25
|
+
var versionBox = new curvyCorners(settings, document.getElementById("version"));
|
|
26
|
+
versionBox.applyCornersToAll();
|
|
27
|
+
}
|
|
28
|
+
</script>
|
|
29
|
+
</head>
|
|
30
|
+
<body>
|
|
31
|
+
<div id="main">
|
|
32
|
+
|
|
33
|
+
<h1>ruboss_on_ruby</h1>
|
|
34
|
+
<div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/ruboss_on_ruby"; return false'>
|
|
35
|
+
<p>Get Version</p>
|
|
36
|
+
<a href="http://rubyforge.org/projects/ruboss_on_ruby" class="numbers">1.0.1</a>
|
|
37
|
+
</div>
|
|
38
|
+
<h1>&#x2192; ‘ruboss_on_ruby’</h1>
|
|
39
|
+
<h2>What</h2>
|
|
40
|
+
<h2>Installing</h2>
|
|
41
|
+
<p><pre class='syntax'><span class="ident">sudo</span> <span class="ident">gem</span> <span class="ident">install</span> <span class="ident">ruboss_on_ruby</span></pre></p>
|
|
42
|
+
<h2>The basics</h2>
|
|
43
|
+
<h2>Demonstration of usage</h2>
|
|
44
|
+
<h2>Forum</h2>
|
|
45
|
+
<p><a href="http://groups.google.com/group/ruboss_on_ruby">http://groups.google.com/group/ruboss_on_ruby</a></p>
|
|
46
|
+
<p><span class="caps">TODO</span> – create Google Group – ruboss_on_ruby</p>
|
|
47
|
+
<h2>How to submit patches</h2>
|
|
48
|
+
<p>Read the <a href="http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/">8 steps for fixing other people’s code</a> and for section <a href="http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/#8b-google-groups">8b: Submit patch to Google Groups</a>, use the Google Group above.</p>
|
|
49
|
+
<p><span class="caps">TODO</span> – pick <span class="caps">SVN</span> or Git instructions</p>
|
|
50
|
+
<p>The trunk repository is <code>svn://rubyforge.org/var/svn/ruboss_on_ruby/trunk</code> for anonymous access.</p>
|
|
51
|
+
<p><span class="caps">OOOORRRR</span></p>
|
|
52
|
+
<p>You can fetch the source from either:</p>
|
|
53
|
+
<ul>
|
|
54
|
+
<li>rubyforge: <span class="caps">MISSING</span> IN <span class="caps">ACTION</span></li>
|
|
55
|
+
</ul>
|
|
56
|
+
<p><span class="caps">TODO</span> – You can not created a RubyForge project, OR have not run <code>rubyforge config</code><br />
|
|
57
|
+
yet to refresh your local rubyforge data with this projects’ id information.</p>
|
|
58
|
+
<p>When you do this, this message will magically disappear!</p>
|
|
59
|
+
<p>Or you can hack website/index.txt and make it all go away!!</p>
|
|
60
|
+
<ul>
|
|
61
|
+
<li>github: <a href="http://github.com/GITHUB_USERNAME/ruboss_on_ruby/tree/master">http://github.com/GITHUB_USERNAME/ruboss_on_ruby/tree/master</a></li>
|
|
62
|
+
</ul>
|
|
63
|
+
<pre>git clone git://github.com/GITHUB_USERNAME/ruboss_on_ruby.git</pre>
|
|
64
|
+
<p><span class="caps">TODO</span> – add “github_username: username” to ~/.rubyforge/user-config.yml and newgem will reuse it for future projects.</p>
|
|
65
|
+
<ul>
|
|
66
|
+
<li>gitorious: <a href="git://gitorious.org/ruboss_on_ruby/mainline.git">git://gitorious.org/ruboss_on_ruby/mainline.git</a></li>
|
|
67
|
+
</ul>
|
|
68
|
+
<pre>git clone git://gitorious.org/ruboss_on_ruby/mainline.git</pre>
|
|
69
|
+
<h3>Build and test instructions</h3>
|
|
70
|
+
<pre>cd ruboss_on_ruby
|
|
71
|
+
rake test
|
|
72
|
+
rake install_gem</pre>
|
|
73
|
+
<h2>License</h2>
|
|
74
|
+
<p>This code is free to use under the terms of the <span class="caps">MIT</span> license.</p>
|
|
75
|
+
<h2>Contact</h2>
|
|
76
|
+
<p>Comments are welcome. Send an email to <a href="mailto:FIXME"><span class="caps">FIXME</span> full name</a> email via the <a href="http://groups.google.com/group/ruboss_on_ruby">forum</a></p>
|
|
77
|
+
<p class="coda">
|
|
78
|
+
<a href="FIXME email">FIXME full name</a>, 27th August 2008<br>
|
|
79
|
+
Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
|
|
80
|
+
</p>
|
|
81
|
+
</div>
|
|
82
|
+
|
|
83
|
+
<!-- insert site tracking codes here, like Google Urchin -->
|
|
84
|
+
|
|
85
|
+
</body>
|
|
86
|
+
</html>
|
data/website/index.txt
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
h1. ruboss_on_ruby
|
|
2
|
+
|
|
3
|
+
h1. → 'ruboss_on_ruby'
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
h2. What
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
h2. Installing
|
|
10
|
+
|
|
11
|
+
<pre syntax="ruby">sudo gem install ruboss_on_ruby</pre>
|
|
12
|
+
|
|
13
|
+
h2. The basics
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
h2. Demonstration of usage
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
h2. Forum
|
|
21
|
+
|
|
22
|
+
"http://groups.google.com/group/ruboss_on_ruby":http://groups.google.com/group/ruboss_on_ruby
|
|
23
|
+
|
|
24
|
+
TODO - create Google Group - ruboss_on_ruby
|
|
25
|
+
|
|
26
|
+
h2. How to submit patches
|
|
27
|
+
|
|
28
|
+
Read the "8 steps for fixing other people's code":http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/ and for section "8b: Submit patch to Google Groups":http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/#8b-google-groups, use the Google Group above.
|
|
29
|
+
|
|
30
|
+
TODO - pick SVN or Git instructions
|
|
31
|
+
|
|
32
|
+
The trunk repository is <code>svn://rubyforge.org/var/svn/ruboss_on_ruby/trunk</code> for anonymous access.
|
|
33
|
+
|
|
34
|
+
OOOORRRR
|
|
35
|
+
|
|
36
|
+
You can fetch the source from either:
|
|
37
|
+
|
|
38
|
+
<% if rubyforge_project_id %>
|
|
39
|
+
|
|
40
|
+
* rubyforge: "http://rubyforge.org/scm/?group_id=<%= rubyforge_project_id %>":http://rubyforge.org/scm/?group_id=<%= rubyforge_project_id %>
|
|
41
|
+
|
|
42
|
+
<pre>git clone git://rubyforge.org/ruboss_on_ruby.git</pre>
|
|
43
|
+
|
|
44
|
+
<% else %>
|
|
45
|
+
|
|
46
|
+
* rubyforge: MISSING IN ACTION
|
|
47
|
+
|
|
48
|
+
TODO - You can not created a RubyForge project, OR have not run <code>rubyforge config</code>
|
|
49
|
+
yet to refresh your local rubyforge data with this projects' id information.
|
|
50
|
+
|
|
51
|
+
When you do this, this message will magically disappear!
|
|
52
|
+
|
|
53
|
+
Or you can hack website/index.txt and make it all go away!!
|
|
54
|
+
|
|
55
|
+
<% end %>
|
|
56
|
+
|
|
57
|
+
* github: "http://github.com/GITHUB_USERNAME/ruboss_on_ruby/tree/master":http://github.com/GITHUB_USERNAME/ruboss_on_ruby/tree/master
|
|
58
|
+
|
|
59
|
+
<pre>git clone git://github.com/GITHUB_USERNAME/ruboss_on_ruby.git</pre>
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
TODO - add "github_username: username" to ~/.rubyforge/user-config.yml and newgem will reuse it for future projects.
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
* gitorious: "git://gitorious.org/ruboss_on_ruby/mainline.git":git://gitorious.org/ruboss_on_ruby/mainline.git
|
|
66
|
+
|
|
67
|
+
<pre>git clone git://gitorious.org/ruboss_on_ruby/mainline.git</pre>
|
|
68
|
+
|
|
69
|
+
h3. Build and test instructions
|
|
70
|
+
|
|
71
|
+
<pre>cd ruboss_on_ruby
|
|
72
|
+
rake test
|
|
73
|
+
rake install_gem</pre>
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
h2. License
|
|
77
|
+
|
|
78
|
+
This code is free to use under the terms of the MIT license.
|
|
79
|
+
|
|
80
|
+
h2. Contact
|
|
81
|
+
|
|
82
|
+
Comments are welcome. Send an email to "FIXME full name":mailto:FIXME email via the "forum":http://groups.google.com/group/ruboss_on_ruby
|
|
83
|
+
|