Skip to content

Commit

Permalink
Renamed from fancy_cucumber_steps to featured_model
Browse files Browse the repository at this point in the history
  • Loading branch information
bendycode committed Oct 6, 2009
1 parent e90a916 commit f142cd8
Show file tree
Hide file tree
Showing 10 changed files with 62 additions and 23 deletions.
8 changes: 4 additions & 4 deletions Rakefile
Expand Up @@ -4,11 +4,11 @@ require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "fancy_cucumber_steps"
gem.name = "featured_model"
gem.summary = %Q{Fancy steps for creating models}
gem.description = %Q{Additional steps that add a bunch of functionality for creating models with one line}
gem.email = "stephen@bendycode.com"
gem.homepage = "http://github.com/bendycode/fancy_cucumber_steps"
gem.email = "stephen@bendyworks.com"
gem.homepage = "http://github.com/bendyworks/featured_model"
gem.authors = ["bendycode"]
gem.add_development_dependency "rspec"
gem.add_development_dependency "cucumber"
Expand Down Expand Up @@ -54,7 +54,7 @@ Rake::RDocTask.new do |rdoc|
end

rdoc.rdoc_dir = 'rdoc'
rdoc.title = "fancy_cucumber_steps #{version}"
rdoc.title = "featured_model #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
56 changes: 56 additions & 0 deletions featured_model.gemspec
@@ -0,0 +1,56 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{featured_model}
s.version = "0.1.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["bendycode"]
s.date = %q{2009-10-06}
s.description = %q{Additional steps that add a bunch of functionality for creating models with one line}
s.email = %q{stephen@bendyworks.com}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".document",
".gitignore",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"featured_model.gemspec",
"features/support/env.rb",
"lib/featured_model.rb",
"lib/featured_model/steps.rb",
"spec/spec_helper.rb"
]
s.homepage = %q{http://github.com/bendyworks/featured_model}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{Fancy steps for creating models}
s.test_files = [
"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
s.add_development_dependency(%q<rspec>, [">= 0"])
s.add_development_dependency(%q<cucumber>, [">= 0"])
else
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<cucumber>, [">= 0"])
end
else
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<cucumber>, [">= 0"])
end
end
9 changes: 0 additions & 9 deletions features/fancy_cucumber_steps.feature

This file was deleted.

Empty file.
2 changes: 1 addition & 1 deletion features/support/env.rb
@@ -1,4 +1,4 @@
$LOAD_PATH.unshift(File.dirname(__FILE__) + '/../../lib')
require 'fancy_cucumber_steps'
require 'featured_model'

require 'spec/expectations'
1 change: 0 additions & 1 deletion lib/fancy_cucumber_steps.rb

This file was deleted.

1 change: 1 addition & 0 deletions lib/featured_model.rb
@@ -0,0 +1 @@
require File.expand_path(File.dirname(__FILE__) + '/featured_model/steps')
File renamed without changes.
7 changes: 0 additions & 7 deletions spec/fancy_cucumber_steps_spec.rb

This file was deleted.

1 change: 0 additions & 1 deletion spec/spec_helper.rb
@@ -1,6 +1,5 @@
$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'fancy_cucumber_steps'
require 'spec'
require 'spec/autorun'

Expand Down

0 comments on commit f142cd8

Please sign in to comment.