Skip to content
This repository has been archived by the owner on Oct 18, 2019. It is now read-only.

Commit

Permalink
Release enginex 0.7.2 with dependency on Rails 3.0.3 (as Rails master…
Browse files Browse the repository at this point in the history
… has its own port of enginex).
  • Loading branch information
josevalim committed Nov 28, 2010
1 parent f6aa791 commit 74920ab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
5 changes: 2 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require File.join(File.dirname(__FILE__), 'lib', 'enginex')

Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
Expand All @@ -23,7 +22,7 @@ begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "enginex"
s.version = Enginex::VERSION.dup
s.version = "0.7.2"
s.summary = "Creates a Rails 3 engine with Rakefile, Gemfile and running tests"
s.email = "jose.valim@plataformatec.com.br"
s.homepage = "http://github.com/josevalim/enginex"
Expand All @@ -33,7 +32,7 @@ begin
s.bindir = "bin"
s.executables = %w(enginex)
s.add_dependency("thor", "~> 0.14.0")
s.add_dependency("rails", "~> 3.0")
s.add_dependency("rails", "~> 3.0.3")
s.add_dependency("rake", "~> 0.8")
end

Expand Down
10 changes: 5 additions & 5 deletions enginex.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{enginex}
s.version = "0.7.1"
s.version = "0.7.2"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jos\303\251 Valim"]
s.date = %q{2010-11-11}
s.date = %q{2010-11-28}
s.default_executable = %q{enginex}
s.description = %q{Creates a Rails 3 engine with Rakefile, Gemfile and running tests}
s.email = %q{jose.valim@plataformatec.com.br}
Expand Down Expand Up @@ -55,16 +55,16 @@ Gem::Specification.new do |s|

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<thor>, ["~> 0.14.0"])
s.add_runtime_dependency(%q<rails>, ["~> 3.0"])
s.add_runtime_dependency(%q<rails>, ["~> 3.0.3"])
s.add_runtime_dependency(%q<rake>, ["~> 0.8"])
else
s.add_dependency(%q<thor>, ["~> 0.14.0"])
s.add_dependency(%q<rails>, ["~> 3.0"])
s.add_dependency(%q<rails>, ["~> 3.0.3"])
s.add_dependency(%q<rake>, ["~> 0.8"])
end
else
s.add_dependency(%q<thor>, ["~> 0.14.0"])
s.add_dependency(%q<rails>, ["~> 3.0"])
s.add_dependency(%q<rails>, ["~> 3.0.3"])
s.add_dependency(%q<rake>, ["~> 0.8"])
end
end
Expand Down
2 changes: 0 additions & 2 deletions lib/enginex.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
require "rails/generators/rails/app/app_generator"

class Enginex < Thor::Group
VERSION = "0.7.1".freeze

include Thor::Actions
check_unknown_options!

Expand Down

0 comments on commit 74920ab

Please sign in to comment.