Skip to content

Commit

Permalink
added gemspec description
Browse files Browse the repository at this point in the history
  • Loading branch information
njackson committed Sep 15, 2011
1 parent 72cbe03 commit 27ebf26
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Jeweler::Tasks.new do |gem|
gem.name = "dci-rails" gem.name = "dci-rails"
gem.homepage = "http://github.com/njackson/dci-rails" gem.homepage = "http://github.com/njackson/dci-rails"
gem.license = "MIT" gem.license = "MIT"
gem.summary = %Q{TODO: one-line summary of your gem} gem.summary = "DCI helpers for Rails"
gem.description = %Q{TODO: longer description of your gem} gem.description = "helpers for rails to implement DCI pattern (http://andrzejonsoftware.blogspot.com/2011/02/dci-and-rails.html)"
gem.email = "nate.d.jackson@gmail.com" gem.email = "nate.d.jackson@gmail.com"
gem.authors = ["Nate Jackson"] gem.authors = ["Nate Jackson"]
# dependencies defined in Gemfile # dependencies defined in Gemfile
Expand Down
11 changes: 9 additions & 2 deletions dci-rails.gemspec
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |s|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Nate Jackson"] s.authors = ["Nate Jackson"]
s.date = %q{2011-09-15} s.date = %q{2011-09-15}
s.description = %q{TODO: longer description of your gem} s.description = %q{helpers for rails to implement DCI pattern (http://andrzejonsoftware.blogspot.com/2011/02/dci-and-rails.html)}
s.email = %q{nate.d.jackson@gmail.com} s.email = %q{nate.d.jackson@gmail.com}
s.extra_rdoc_files = [ s.extra_rdoc_files = [
"LICENSE.txt", "LICENSE.txt",
Expand All @@ -19,19 +19,26 @@ Gem::Specification.new do |s|
s.files = [ s.files = [
".document", ".document",
".rspec", ".rspec",
".rvmrc",
"Gemfile", "Gemfile",
"Gemfile.lock",
"LICENSE.txt", "LICENSE.txt",
"README.rdoc", "README.rdoc",
"Rakefile", "Rakefile",
"VERSION", "VERSION",
"dci-rails.gemspec",
"lib/controller/dsl.rb",
"lib/dci-rails.rb", "lib/dci-rails.rb",
"lib/role.rb",
"spec/controller/dsl_spec.rb",
"spec/role_spec.rb",
"spec/spec_helper.rb" "spec/spec_helper.rb"
] ]
s.homepage = %q{http://github.com/njackson/dci-rails} s.homepage = %q{http://github.com/njackson/dci-rails}
s.licenses = ["MIT"] s.licenses = ["MIT"]
s.require_paths = ["lib"] s.require_paths = ["lib"]
s.rubygems_version = %q{1.6.2} s.rubygems_version = %q{1.6.2}
s.summary = %q{TODO: one-line summary of your gem} s.summary = %q{DCI helpers for Rails}


if s.respond_to? :specification_version then if s.respond_to? :specification_version then
s.specification_version = 3 s.specification_version = 3
Expand Down

0 comments on commit 27ebf26

Please sign in to comment.