auser-dslify 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt ADDED
@@ -0,0 +1,4 @@
1
+ == 0.0.1 2008-12-19
2
+
3
+ * 1 major enhancement:
4
+ * Initial release
data/Manifest.txt ADDED
@@ -0,0 +1,34 @@
1
+ History.txt
2
+ Manifest.txt
3
+ PostInstall.txt
4
+ README.txt
5
+ Rakefile
6
+ config/hoe.rb
7
+ config/requirements.rb
8
+ dslify.gemspec
9
+ lib/dslify.rb
10
+ lib/dslify/core.rb
11
+ lib/dslify/core/object.rb
12
+ lib/dslify/core/string.rb
13
+ lib/dslify/modules.rb
14
+ lib/dslify/modules/configurable.rb
15
+ lib/dslify/modules/method_missing_sugar.rb
16
+ lib/dslify/version.rb
17
+ script/console
18
+ script/destroy
19
+ script/generate
20
+ script/txt2html
21
+ setup.rb
22
+ spec/configureable_spec.rb
23
+ spec/method_missing_spec.rb
24
+ spec/spec_helper.rb
25
+ tasks/deployment.rake
26
+ tasks/environment.rake
27
+ tasks/website.rake
28
+ test/test_dslify.rb
29
+ test/test_helper.rb
30
+ website/index.html
31
+ website/index.txt
32
+ website/javascripts/rounded_corners_lite.inc.js
33
+ website/stylesheets/screen.css
34
+ website/template.html.erb
data/PostInstall.txt ADDED
@@ -0,0 +1,5 @@
1
+ Thanks for installing dslify!
2
+
3
+ For more information on dslify, see http://dslify.rubyforge.org
4
+
5
+ Ari Lerner
data/README.txt ADDED
@@ -0,0 +1,60 @@
1
+ = dslify
2
+
3
+ == DESCRIPTION:
4
+
5
+ Easily add DSL accessors to any class without bothering to mess with the gory details of their implementation
6
+
7
+ == SYNOPSIS:
8
+
9
+ Simply add Dslify to your class, like so:
10
+ class MyClass
11
+ include Dslify
12
+ end
13
+
14
+ Then, you can call *any* method on your object and, if it is not a method on the instance, it will set the value on the class as an option. Note, you can always check these by checking out the options on the object.
15
+
16
+ instance = MyClass.new
17
+ instance.name #=> nil
18
+ instance.name "frank"
19
+ instance.name #=> "frank"
20
+
21
+ You can also define default values with the singleton method:
22
+ default_options({:name => "bob"})
23
+
24
+ instance = MyClass.new
25
+ instance.name #=> "bob"
26
+ instance.name "frank"
27
+ instance.name #=> "frank"
28
+
29
+ == REQUIREMENTS:
30
+
31
+ ruby
32
+
33
+ == INSTALL:
34
+
35
+ sudo gem install auser-dslify
36
+
37
+ == LICENSE:
38
+
39
+ (The MIT License)
40
+
41
+ Copyright (c) 2008 Ari Lerner
42
+
43
+ Permission is hereby granted, free of charge, to any person obtaining
44
+ a copy of this software and associated documentation files (the
45
+ 'Software'), to deal in the Software without restriction, including
46
+ without limitation the rights to use, copy, modify, merge, publish,
47
+ distribute, sublicense, and/or sell copies of the Software, and to
48
+ permit persons to whom the Software is furnished to do so, subject to
49
+ the following conditions:
50
+
51
+ The above copyright notice and this permission notice shall be
52
+ included in all copies or substantial portions of the Software.
53
+
54
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
55
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
56
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
57
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
58
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
59
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
60
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,56 @@
1
+ require 'config/requirements'
2
+ require 'config/hoe' # setup Hoe + all gem configuration
3
+
4
+ Dir['tasks/**/*.rake'].each { |rake| load rake }
5
+
6
+ desc "Clean tmp directory"
7
+ task :clean_tmp do |t|
8
+ %x[rm #{File.dirname(__FILE__)}/Manifest.txt; touch #{File.dirname(__FILE__)}/Manifest.txt]
9
+ %w(logs tmp).each do |dir|
10
+ FileUtils.rm_rf("#{File.dirname(__FILE__)}/#{dir}") if ::File.exists?("#{File.dirname(__FILE__)}/#{dir}")
11
+ end
12
+ end
13
+ desc "Remove the pkg directory"
14
+ task :clean_pkg do |t|
15
+ %w(pkg).each do |dir|
16
+ FileUtils.rm_rf("#{File.dirname(__FILE__)}/#{dir}") if ::File.exists?("#{File.dirname(__FILE__)}/#{dir}")
17
+ end
18
+ end
19
+
20
+ desc "Generate a new manifest and a new gem"
21
+ task :build_local_gem => [:clean_tmp, :clean_pkg, :"manifest:refresh", :package]
22
+
23
+ desc "Release to github"
24
+ task :github_release => [:clean_tmp, :clean_pkg, :"manifest:refresh", :package] do
25
+ res = %x[rake debug_gem]
26
+ res = res.split("\n")[1..-1].join("\n")
27
+ ::File.open("#{GEM_NAME.downcase}.gemspec", "w+") do |f|
28
+ f << res
29
+ end
30
+ `mv #{::File.expand_path(::File.dirname(__FILE__))}/pkg/*.gem #{::File.expand_path(::File.dirname(__FILE__))}/pkg/poolparty.gem`
31
+ end
32
+
33
+ desc "Generate gemspec"
34
+ task :gemspec => [:clean_tmp, :"manifest:refresh", :build_local_gem] do |t|
35
+ res = %x[rake debug_gem]
36
+ res = res.split("\n")[1..-1].join("\n")
37
+ ::File.open("#{GEM_NAME.downcase}.gemspec", "w+") do |f|
38
+ f << res
39
+ end
40
+ end
41
+
42
+ desc "Generate gemspec for github"
43
+ task :gh => [:github_release] do
44
+ filepath = ::File.join(::File.dirname(__FILE__), "poolparty.gemspec")
45
+ data = open(filepath).read
46
+ spec = eval("$SAFE = 3\n#{data}")
47
+ yml = YAML.dump spec
48
+ File.open(filepath, "w+") do |f|
49
+ f << yml
50
+ end
51
+ end
52
+
53
+ desc "Generate github gemspec and latest gem"
54
+ task :ghgem => [:gh] do
55
+ %x[sudo gem install pkg/poolparty.gem]
56
+ end
data/config/hoe.rb ADDED
@@ -0,0 +1,73 @@
1
+ require 'dslify/version'
2
+
3
+ AUTHOR = 'Ari Lerner' # can also be an array of Authors
4
+ EMAIL = "arilerner@mac.com"
5
+ DESCRIPTION = "Easily add DSL-like calls to any class"
6
+ GEM_NAME = 'dslify' # what ppl will type to install your gem
7
+ RUBYFORGE_PROJECT = 'dslify' # The unix name for your project
8
+ HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org"
9
+ DOWNLOAD_PATH = "http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}"
10
+ EXTRA_DEPENDENCIES = [
11
+ # ['activesupport', '>= 1.3.1']
12
+ ] # An array of rubygem dependencies [name, version]
13
+
14
+ @config_file = "~/.rubyforge/user-config.yml"
15
+ @config = nil
16
+ RUBYFORGE_USERNAME = "auser"
17
+ def rubyforge_username
18
+ unless @config
19
+ begin
20
+ @config = YAML.load(File.read(File.expand_path(@config_file)))
21
+ rescue
22
+ puts <<-EOS
23
+ ERROR: No rubyforge config file found: #{@config_file}
24
+ Run 'rubyforge setup' to prepare your env for access to Rubyforge
25
+ - See http://newgem.rubyforge.org/rubyforge.html for more details
26
+ EOS
27
+ exit
28
+ end
29
+ end
30
+ RUBYFORGE_USERNAME.replace @config["username"]
31
+ end
32
+
33
+
34
+ REV = nil
35
+ # UNCOMMENT IF REQUIRED:
36
+ # REV = YAML.load(`svn info`)['Revision']
37
+ VERS = Dslify::VERSION::STRING + (REV ? ".#{REV}" : "")
38
+ RDOC_OPTS = ['--quiet', '--title', 'dslify documentation',
39
+ "--opname", "index.html",
40
+ "--line-numbers",
41
+ "--main", "README",
42
+ "--inline-source"]
43
+
44
+ class Hoe
45
+ def extra_deps
46
+ @extra_deps.reject! { |x| Array(x).first == 'hoe' }
47
+ @extra_deps
48
+ end
49
+ end
50
+
51
+ # Generate all the Rake tasks
52
+ # Run 'rake -T' to see list of generated tasks (from gem root directory)
53
+ $hoe = Hoe.new(GEM_NAME, VERS) do |p|
54
+ p.developer(AUTHOR, EMAIL)
55
+ p.description = DESCRIPTION
56
+ p.summary = DESCRIPTION
57
+ p.url = HOMEPATH
58
+ p.rubyforge_name = RUBYFORGE_PROJECT if RUBYFORGE_PROJECT
59
+ p.test_globs = ["test/**/test_*.rb"]
60
+ p.clean_globs |= ['**/.*.sw?', '*.gem', '.config', '**/.DS_Store'] #An array of file patterns to delete on clean.
61
+
62
+ # == Optional
63
+ p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
64
+ #p.extra_deps = EXTRA_DEPENDENCIES
65
+
66
+ #p.spec_extras = {} # A hash of extra values to set in the gemspec.
67
+ end
68
+
69
+ CHANGES = $hoe.paragraphs_of('History.txt', 0..1).join("\\n\\n")
70
+ PATH = (RUBYFORGE_PROJECT == GEM_NAME) ? RUBYFORGE_PROJECT : "#{RUBYFORGE_PROJECT}/#{GEM_NAME}"
71
+ $hoe.remote_rdoc_dir = File.join(PATH.gsub(/^#{RUBYFORGE_PROJECT}\/?/,''), 'rdoc')
72
+ $hoe.rsync_args = '-av --delete --ignore-errors'
73
+ $hoe.spec.post_install_message = File.open(File.dirname(__FILE__) + "/../PostInstall.txt").read rescue ""
@@ -0,0 +1,15 @@
1
+ require 'fileutils'
2
+ include FileUtils
3
+
4
+ require 'rubygems'
5
+ %w[rake hoe newgem rubigen].each do |req_gem|
6
+ begin
7
+ require req_gem
8
+ rescue LoadError
9
+ puts "This Rakefile requires the '#{req_gem}' RubyGem."
10
+ puts "Installation: gem install #{req_gem} -y"
11
+ exit
12
+ end
13
+ end
14
+
15
+ $:.unshift(File.join(File.dirname(__FILE__), %w[.. lib]))
data/dslify.gemspec ADDED
@@ -0,0 +1,40 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{dslify}
5
+ s.version = "0.0.3"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Ari Lerner"]
9
+ s.date = %q{2009-02-16}
10
+ s.description = %q{Easily add DSL-like calls to any class}
11
+ s.email = ["arilerner@mac.com"]
12
+ s.extra_rdoc_files = ["History.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "website/index.txt"]
13
+ s.files = ["History.txt", "Manifest.txt", "PostInstall.txt", "README.txt", "Rakefile", "config/hoe.rb", "config/requirements.rb", "dslify.gemspec", "lib/dslify.rb", "lib/dslify/core.rb", "lib/dslify/core/object.rb", "lib/dslify/core/string.rb", "lib/dslify/modules.rb", "lib/dslify/modules/configurable.rb", "lib/dslify/modules/method_missing_sugar.rb", "lib/dslify/version.rb", "script/console", "script/destroy", "script/generate", "script/txt2html", "setup.rb", "spec/configureable_spec.rb", "spec/method_missing_spec.rb", "spec/spec_helper.rb", "tasks/deployment.rake", "tasks/environment.rake", "tasks/website.rake", "test/test_dslify.rb", "test/test_helper.rb", "website/index.html", "website/index.txt", "website/javascripts/rounded_corners_lite.inc.js", "website/stylesheets/screen.css", "website/template.html.erb"]
14
+ s.has_rdoc = true
15
+ s.homepage = %q{http://dslify.rubyforge.org}
16
+ s.post_install_message = %q{Thanks for installing dslify!
17
+
18
+ For more information on dslify, see http://dslify.rubyforge.org
19
+
20
+ Ari Lerner}
21
+ s.rdoc_options = ["--main", "README.txt"]
22
+ s.require_paths = ["lib"]
23
+ s.rubyforge_project = %q{dslify}
24
+ s.rubygems_version = %q{1.3.1}
25
+ s.summary = %q{Easily add DSL-like calls to any class}
26
+ s.test_files = ["test/test_dslify.rb", "test/test_helper.rb"]
27
+
28
+ if s.respond_to? :specification_version then
29
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
30
+ s.specification_version = 2
31
+
32
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
33
+ s.add_development_dependency(%q<hoe>, [">= 1.8.0"])
34
+ else
35
+ s.add_dependency(%q<hoe>, [">= 1.8.0"])
36
+ end
37
+ else
38
+ s.add_dependency(%q<hoe>, [">= 1.8.0"])
39
+ end
40
+ end
@@ -0,0 +1,15 @@
1
+ class Object
2
+ def vputs(m="", o=self)
3
+ puts m if o.verbose rescue ""
4
+ end
5
+ def returning(receiver)
6
+ yield receiver
7
+ receiver
8
+ end
9
+ def run_in_context(context=self, &block)
10
+ name="temp_#{self.class}_#{respond_to?(:parent) ? parent.to_s : Time.now.to_i}".to_sym
11
+ meta_def name, &block
12
+ self.send name, context
13
+ meta_undef name rescue ""
14
+ end
15
+ end
@@ -0,0 +1,12 @@
1
+ class String
2
+ def constantize
3
+ names = self.split('::')
4
+ names.shift if names.empty? || names.first.empty?
5
+
6
+ constant = Object
7
+ names.each do |name|
8
+ constant = constant.const_defined?(name) ? constant.const_get(name) : constant.const_missing(name)
9
+ end
10
+ constant
11
+ end
12
+ end
@@ -0,0 +1 @@
1
+ Dir["#{File.dirname(__FILE__)}/core/*.rb"].each {|f| require f }
@@ -0,0 +1,40 @@
1
+ module Dslify
2
+ module Configurable
3
+ module ClassMethods
4
+ def default_options(h={})
5
+ @default_options ||= h
6
+ end
7
+ end
8
+
9
+ module InstanceMethods
10
+ def __options(h={})
11
+ @__options ||= self.class.default_options.merge(h)
12
+ end
13
+
14
+ def configure(h={})
15
+ __options(h).merge!(h)
16
+ end
17
+
18
+ def reconfigure(h={})
19
+ @__options = nil
20
+ __options(h)
21
+ end
22
+
23
+ def set_vars_from_options(opts={})
24
+ opts.each {|k,v| self.send k.to_sym, v } unless opts.empty?
25
+ end
26
+
27
+ def dsl_options_keys
28
+ __options.keys
29
+ end
30
+ def dsl_options
31
+ __options
32
+ end
33
+ end
34
+
35
+ def self.included(receiver)
36
+ receiver.extend ClassMethods
37
+ receiver.send :include, InstanceMethods
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,23 @@
1
+ module Dslify
2
+ module MethodMissingSugar
3
+
4
+ def method_missing(m, *args, &block)
5
+ if block_given?
6
+ (args[0].class == self.class) ? args[0].run_in_context(&block) : super
7
+ else
8
+ get_from_options(m.to_s, *args, &block)
9
+ end
10
+ end
11
+
12
+ def get_from_options(meth, *args, &block)
13
+ key = meth.include?("=") ? meth.delete("=") : meth
14
+ sym_key = key.to_sym
15
+ if args.empty?
16
+ __options.has_key?(sym_key) ? __options[sym_key] : nil
17
+ else
18
+ __options[sym_key] = (args.is_a?(Array) && args.size > 1) ? args : args[0]
19
+ end
20
+ end
21
+
22
+ end
23
+ end
@@ -0,0 +1,4 @@
1
+ Dir["#{File.dirname(__FILE__)}/modules/*.rb"].each {|f| require f }
2
+
3
+ module Dslify
4
+ end
@@ -0,0 +1,10 @@
1
+ module Dslify
2
+ module VERSION #:nodoc:
3
+ MAJOR = 0
4
+ MINOR = 0
5
+ TINY = 3
6
+
7
+ STRING = [MAJOR, MINOR, TINY].join('.')
8
+ self
9
+ end
10
+ end
data/lib/dslify.rb ADDED
@@ -0,0 +1,12 @@
1
+ $:.unshift(File.dirname(__FILE__)) unless
2
+ $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
+
4
+ Dir["#{File.dirname(__FILE__)}/dslify/*.rb"].each {|f| require f }
5
+
6
+ module Dslify
7
+ def self.included(base)
8
+ %w(Configurable MethodMissingSugar).each do |inc|
9
+ base.send :include, "Dslify::#{inc}".constantize
10
+ end
11
+ end
12
+ end
data/script/console ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+ # File: script/console
3
+ irb = RUBY_PLATFORM =~ /(:?mswin|mingw)/ ? 'irb.bat' : 'irb'
4
+
5
+ libs = " -r irb/completion"
6
+ # Perhaps use a console_lib to store any extra methods I may want available in the cosole
7
+ # libs << " -r #{File.dirname(__FILE__) + '/../lib/console_lib/console_logger.rb'}"
8
+ libs << " -r #{File.dirname(__FILE__) + '/../lib/dslify.rb'}"
9
+ puts "Loading dslify gem"
10
+ exec "#{irb} #{libs} --simple-prompt"
data/script/destroy ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+ APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
3
+
4
+ begin
5
+ require 'rubigen'
6
+ rescue LoadError
7
+ require 'rubygems'
8
+ require 'rubigen'
9
+ end
10
+ require 'rubigen/scripts/destroy'
11
+
12
+ ARGV.shift if ['--help', '-h'].include?(ARGV[0])
13
+ RubiGen::Base.use_component_sources! [:rubygems, :newgem, :newgem_theme, :test_unit]
14
+ RubiGen::Scripts::Destroy.new.run(ARGV)
data/script/generate ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+ APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
3
+
4
+ begin
5
+ require 'rubigen'
6
+ rescue LoadError
7
+ require 'rubygems'
8
+ require 'rubigen'
9
+ end
10
+ require 'rubigen/scripts/generate'
11
+
12
+ ARGV.shift if ['--help', '-h'].include?(ARGV[0])
13
+ RubiGen::Base.use_component_sources! [:rubygems, :newgem, :newgem_theme, :test_unit]
14
+ RubiGen::Scripts::Generate.new.run(ARGV)
data/script/txt2html ADDED
@@ -0,0 +1,82 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ GEM_NAME = 'dslify' # what ppl will type to install your gem
4
+ RUBYFORGE_PROJECT = 'dslify'
5
+
6
+ require 'rubygems'
7
+ begin
8
+ require 'newgem'
9
+ require 'rubyforge'
10
+ rescue LoadError
11
+ puts "\n\nGenerating the website requires the newgem RubyGem"
12
+ puts "Install: gem install newgem\n\n"
13
+ exit(1)
14
+ end
15
+ require 'redcloth'
16
+ require 'syntax/convertors/html'
17
+ require 'erb'
18
+ require File.dirname(__FILE__) + "/../lib/#{GEM_NAME}/version.rb"
19
+
20
+ version = Dslify::VERSION::STRING
21
+ download = "http://rubyforge.org/projects/#{RUBYFORGE_PROJECT}"
22
+
23
+ def rubyforge_project_id
24
+ RubyForge.new.configure.autoconfig["group_ids"][RUBYFORGE_PROJECT]
25
+ end
26
+
27
+ class Fixnum
28
+ def ordinal
29
+ # teens
30
+ return 'th' if (10..19).include?(self % 100)
31
+ # others
32
+ case self % 10
33
+ when 1: return 'st'
34
+ when 2: return 'nd'
35
+ when 3: return 'rd'
36
+ else return 'th'
37
+ end
38
+ end
39
+ end
40
+
41
+ class Time
42
+ def pretty
43
+ return "#{mday}#{mday.ordinal} #{strftime('%B')} #{year}"
44
+ end
45
+ end
46
+
47
+ def convert_syntax(syntax, source)
48
+ return Syntax::Convertors::HTML.for_syntax(syntax).convert(source).gsub(%r!^<pre>|</pre>$!,'')
49
+ end
50
+
51
+ if ARGV.length >= 1
52
+ src, template = ARGV
53
+ template ||= File.join(File.dirname(__FILE__), '/../website/template.html.erb')
54
+ else
55
+ puts("Usage: #{File.split($0).last} source.txt [template.html.erb] > output.html")
56
+ exit!
57
+ end
58
+
59
+ template = ERB.new(File.open(template).read)
60
+
61
+ title = nil
62
+ body = nil
63
+ File.open(src) do |fsrc|
64
+ title_text = fsrc.readline
65
+ body_text_template = fsrc.read
66
+ body_text = ERB.new(body_text_template).result(binding)
67
+ syntax_items = []
68
+ body_text.gsub!(%r!<(pre|code)[^>]*?syntax=['"]([^'"]+)[^>]*>(.*?)</\1>!m){
69
+ ident = syntax_items.length
70
+ element, syntax, source = $1, $2, $3
71
+ syntax_items << "<#{element} class='syntax'>#{convert_syntax(syntax, source)}</#{element}>"
72
+ "syntax-temp-#{ident}"
73
+ }
74
+ title = RedCloth.new(title_text).to_html.gsub(%r!<.*?>!,'').strip
75
+ body = RedCloth.new(body_text).to_html
76
+ body.gsub!(%r!(?:<pre><code>)?syntax-temp-(\d+)(?:</code></pre>)?!){ syntax_items[$1.to_i] }
77
+ end
78
+ stat = File.stat(src)
79
+ created = stat.ctime
80
+ modified = stat.mtime
81
+
82
+ $stdout << template.result(binding)