Skip to content
This repository has been archived by the owner on Feb 11, 2020. It is now read-only.

Commit

Permalink
Fixing problem with gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
johngrimes committed Feb 6, 2011
1 parent 3955247 commit 3f6d398
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions t-minus.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 't-minus'
s.version = '0.3.0'
s.version = '0.3.1'
s.description = 'Rails engine and generators that make it easier to create a prelaunch page for your application that can collect email addresses of interested visitors.'
s.summary = s.description
s.authors = ['John Grimes']
Expand All @@ -11,8 +11,8 @@ Gem::Specification.new do |s|
'LICENSE',
'README.markdown'
]
s.files = `git ls-files -- {app,config,lib,spec}/*`.split("\n")
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.files = Dir['{app,config,lib,spec}/**/*']
s.test_files = Dir['{spec}/**/*']
s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if s.respond_to? :required_rubygems_version=

s.add_dependency 'createsend', '~> 0.2'
Expand Down

0 comments on commit 3f6d398

Please sign in to comment.