Skip to content

Commit

Permalink
clean up pom, Rakefilem gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
mkristian committed Jul 29, 2010
1 parent ef60ed6 commit eeff042
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 20 deletions.
15 changes: 7 additions & 8 deletions datamapper4rails.gemspec
@@ -1,7 +1,7 @@
# create by maven - leave it as is
Gem::Specification.new do |s|
s.name = 'datamapper4rails'
s.version = '0.5.1'
s.version = '0.5.2'

s.summary = 'collection of datamapper related extensions'
s.description = 'collection of datamapper related extensions. mostly needed to run within rails. the restful transactions is around filter for rails actions if needed to control such transaction on per action base otherwise use the rack extension from rack-datamapper. datamapper store is a session store for rails which uses datamapper as persistent layer and is just a wrapper around the datamapper session store from rack-datamapper. the generators produces datamapper models for your rails application.'
Expand All @@ -10,19 +10,18 @@ Gem::Specification.new do |s|
s.authors = ['mkristian']
s.email = ['m.kristian@web.de']

s.date = '2010-06-20'
s.rubygems_version = '1.3.5'
s.files = Dir['MIT-LICENSE']
s.licenses << 'MIT-LICENSE'
s.rubyforge_project = 'datamapper4rail'
s.files += Dir['History.txt']
s.files += Dir['README.txt']
s.extra_rdoc_files = ['History.txt','README.txt']
s.rdoc_options = ['--main','README.txt']
s.require_paths = ['lib']
s.licenses << 'MIT-LICENSE'
s.files = Dir['lib/**/*']
s.files += ["MIT-LICENSE"]
s.files += Dir['lib/**/*']
s.files += Dir['generators/**/*']
s.files += Dir['spec/**/*']
s.test_files += Dir['spec/**/*_spec.rb']
s.add_dependency 'rack-datamapper', '~> 0.3.0'
s.add_development_dependency 'rspec', '~> 1.3.0'
s.add_development_dependency 'rake', '0.8.7'
end
end
2 changes: 1 addition & 1 deletion lib/datamapper4rails/version.rb
@@ -1,3 +1,3 @@
module Datamapper4rails
VERSION = '0.5.1'.freeze
VERSION = '0.5.2'.freeze
end
18 changes: 7 additions & 11 deletions pom.xml
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>rubygems</groupId>
<artifactId>datamapper4rails</artifactId>
<version>0.5.1-SNAPSHOT</version>
<version>0.5.2-SNAPSHOT</version>
<packaging>gem</packaging>
<name><![CDATA[collection of datamapper related extensions]]></name>
<description><![CDATA[collection of datamapper related extensions. mostly needed to run within rails. the restful transactions is around filter for rails actions if needed to control such transaction on per action base otherwise use the rack extension from rack-datamapper. datamapper store is a session store for rails which uses datamapper as persistent layer and is just a wrapper around the datamapper session store from rack-datamapper. the generators produces datamapper models for your rails application.]]></description>
Expand Down Expand Up @@ -65,17 +65,13 @@
<artifactId>gem-maven-plugin</artifactId>
<version>${jruby.plugins.version}</version>
<extensions>true</extensions>
<configuration>
<extraRdocFiles>History.txt,README.txt</extraRdocFiles>
<rdocOptions>--main,README.txt</rdocOptions>
<rubyforgeProject>datamapper4rail</rubyforgeProject>
<gemspecOverwrite>true</gemspecOverwrite>
</configuration>
<executions>
<execution>
<id>gemspec</id>
<goals><goal>package</goal></goals>
<configuration>
<extraRdocFiles>History.txt,README.txt</extraRdocFiles>
<rdocOptions>--main,README.txt</rdocOptions>
<rubyforgeProject>datamapper4rail</rubyforgeProject>
<overwriteGemspec>true</overwriteGemspec>
</configuration>
</execution>
<execution>
<id>version</id>
<phase>compile</phase>
Expand Down

0 comments on commit eeff042

Please sign in to comment.