Skip to content

Commit 0696eb1

Browse files
author
Priit Haamer
committed
Initial commit.
1 parent beec3b9 commit 0696eb1

File tree

5 files changed

+81
-0
lines changed

5 files changed

+81
-0
lines changed

README.markdown

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
See also:
2+
3+
[[ipizza|https://github.com/priithaamer/ipizza]]

Rakefile

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
require 'rubygems'
2+
require 'rake'
3+
4+
require 'rspec'
5+
require 'rspec/core/rake_task'
6+
7+
RSpec::Core::RakeTask.new(:spec)
8+
9+
begin
10+
require 'jeweler'
11+
Jeweler::Tasks.new do |gemspec|
12+
gemspec.name = 'ipizza-rails'
13+
14+
gemspec.summary = 'Adds ipizza support to Rails 3 applications'
15+
gemspec.description = <<-DESC
16+
Helpers to use ipizza inside Rails 3 applications
17+
DESC
18+
19+
gemspec.email = '[email protected]'
20+
gemspec.homepage = 'https://github.com/priithaamer/ipizza-rails'
21+
gemspec.authors = ['Priit Haamer']
22+
end
23+
rescue LoadError
24+
puts 'Jeweler not available. Install it with: gem install jeweler'
25+
end
26+
27+
task :default => :spec

ipizza-rails.gemspec

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Generated by jeweler
2+
# DO NOT EDIT THIS FILE DIRECTLY
3+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4+
# -*- encoding: utf-8 -*-
5+
6+
Gem::Specification.new do |s|
7+
s.name = %q{ipizza-rails}
8+
s.version = "0.1.0"
9+
10+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11+
s.authors = ["Priit Haamer"]
12+
s.date = %q{2010-10-23}
13+
s.description = %q{ Helpers to use ipizza inside Rails 3 applications
14+
}
15+
s.email = %q{[email protected]}
16+
s.extra_rdoc_files = [
17+
"README.markdown"
18+
]
19+
s.files = [
20+
"VERSION"
21+
]
22+
s.homepage = %q{https://github.com/priithaamer/ipizza-rails}
23+
s.rdoc_options = ["--charset=UTF-8"]
24+
s.require_paths = ["lib"]
25+
s.rubygems_version = %q{1.3.7}
26+
s.summary = %q{Adds ipizza support to Rails 3 applications}
27+
s.test_files = [
28+
"spec/spec_helper.rb"
29+
]
30+
31+
if s.respond_to? :specification_version then
32+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
33+
s.specification_version = 3
34+
35+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
36+
else
37+
end
38+
else
39+
end
40+
end
41+

lib/ipizza/ipizza.rb

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Stub for ipizza

spec/spec_helper.rb

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
require 'rspec'
2+
3+
# Requires supporting files with custom matchers and macros, etc,
4+
# in ./support/ and its subdirectories.
5+
Dir[File.expand_path(File.join(File.dirname(__FILE__),'support','**','*.rb'))].each {|f| require f}
6+
7+
Rspec.configure do |c|
8+
c.mock_with :rspec
9+
end

0 commit comments

Comments
 (0)