Skip to content

Commit

Permalink
Use bundler, update gemspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
John Firebaugh committed Jun 10, 2010
1 parent f1d2222 commit 4653498
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 21 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -5,6 +5,7 @@
*.gem
.idea
.rakeTasks
.bundle
pkg
rdoc
spec/rails_root/log
Expand Down
12 changes: 12 additions & 0 deletions Gemfile
@@ -0,0 +1,12 @@
source "http://rubygems.org"

gem "treetop"

group :development do
gem "rubyforge"
gem "rspec"
gem "rr"
gem "nokogiri"
gem "jeweler"
gem "haml"
end
62 changes: 41 additions & 21 deletions erector.gemspec
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Alex Chaffee", "Brian Takita", "Jeff Dean", "Jim Kingdon"]
s.date = %q{2009-12-01}
s.date = %q{2010-06-09}
s.default_executable = %q{erector}
s.description = %q{Html Builder library.}
s.email = %q{erector@googlegroups.com}
Expand All @@ -22,93 +22,113 @@ Gem::Specification.new do |s|
"VERSION.yml",
"bin/erector",
"lib/erector.rb",
"lib/erector/after_initialize.rb",
"lib/erector/caching.rb",
"lib/erector/convenience.rb",
"lib/erector/dependencies.rb",
"lib/erector/dependency.rb",
"lib/erector/erect.rb",
"lib/erector/erected.rb",
"lib/erector/erect/erect.rb",
"lib/erector/erect/erected.rb",
"lib/erector/erect/indenting.rb",
"lib/erector/erect/rhtml.treetop",
"lib/erector/errors.rb",
"lib/erector/extensions/hash.rb",
"lib/erector/extensions/object.rb",
"lib/erector/externals.rb",
"lib/erector/indenting.rb",
"lib/erector/html.rb",
"lib/erector/inline.rb",
"lib/erector/jquery.rb",
"lib/erector/mixin.rb",
"lib/erector/needs.rb",
"lib/erector/output.rb",
"lib/erector/rails.rb",
"lib/erector/rails/extensions/action_controller.rb",
"lib/erector/rails/extensions/rails_helpers.rb",
"lib/erector/rails/extensions/rails_widget.rb",
"lib/erector/rails/extensions/rails_widget/rails_helpers.rb",
"lib/erector/rails/rails_form_builder.rb",
"lib/erector/rails/rails_version.rb",
"lib/erector/rails/template_handlers/ert_handler.rb",
"lib/erector/rails/template_handlers/rb_handler.rb",
"lib/erector/raw_string.rb",
"lib/erector/rhtml.treetop",
"lib/erector/sass.rb",
"lib/erector/unicode.rb",
"lib/erector/unicode_builder.rb",
"lib/erector/version.rb",
"lib/erector/widget.rb",
"lib/erector/widgets.rb",
"lib/erector/widgets/environment_badge.rb",
"lib/erector/widgets/external_renderer.rb",
"lib/erector/widgets/field_table.rb",
"lib/erector/widgets/form.rb",
"lib/erector/widgets/page.rb",
"lib/erector/widgets/table.rb",
"rails/init.rb",
"spec/core_spec_suite.rb",
"spec/erect/erect_rails_spec.rb",
"spec/erect/erect_spec.rb",
"spec/erect/erected_spec.rb",
"spec/erect/rhtml_parser_spec.rb",
"spec/erector/external_spec.rb",
"spec/erector/caching_spec.rb",
"spec/erector/convenience_spec.rb",
"spec/erector/dependency_spec.rb",
"spec/erector/externals_spec.rb",
"spec/erector/html_spec.rb",
"spec/erector/indentation_spec.rb",
"spec/erector/inline_spec.rb",
"spec/erector/jquery_spec.rb",
"spec/erector/mixin_spec.rb",
"spec/erector/needs_spec.rb",
"spec/erector/output_spec.rb",
"spec/erector/sample-file.txt",
"spec/erector/sass_spec.rb",
"spec/erector/unicode_builder_spec.rb",
"spec/erector/widget_spec.rb",
"spec/erector/widgets/field_table_spec.rb",
"spec/erector/widgets/form_spec.rb",
"spec/erector/widgets/page_spec.rb",
"spec/erector/widgets/table_spec.rb",
"spec/rails_spec_suite.rb",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/spec_suite.rb"
"spec/spec_helper.rb"
]
s.homepage = %q{http://erector.rubyforge.org/}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{erector}
s.rubygems_version = %q{1.3.5}
s.rubygems_version = %q{1.3.7}
s.summary = %q{Html Builder library.}
s.test_files = [
"spec/core_spec_suite.rb",
"spec/erect",
"spec/erect",
"spec/erect/erect_rails_spec.rb",
"spec/erect/erect_spec.rb",
"spec/erect/erected_spec.rb",
"spec/erect/rhtml_parser_spec.rb",
"spec/erector",
"spec/erector/external_spec.rb",
"spec/erector/caching_spec.rb",
"spec/erector/convenience_spec.rb",
"spec/erector/dependency_spec.rb",
"spec/erector/externals_spec.rb",
"spec/erector/html_spec.rb",
"spec/erector/indentation_spec.rb",
"spec/erector/inline_spec.rb",
"spec/erector/jquery_spec.rb",
"spec/erector/mixin_spec.rb",
"spec/erector/needs_spec.rb",
"spec/erector/output_spec.rb",
"spec/erector/sample-file.txt",
"spec/erector/sass_spec.rb",
"spec/erector/unicode_builder_spec.rb",
"spec/erector/widget_spec.rb",
"spec/erector/widgets",
"spec/erector/widgets/field_table_spec.rb",
"spec/erector/widgets/form_spec.rb",
"spec/erector/widgets/page_spec.rb",
"spec/erector/widgets/table_spec.rb",
"spec/rails_spec_suite.rb",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/spec_suite.rb"
"spec/spec_helper.rb"
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<treetop>, [">= 1.2.3"])
else
s.add_dependency(%q<treetop>, [">= 1.2.3"])
Expand Down

0 comments on commit 4653498

Please sign in to comment.