move paranoia into a `bundle gem` format because we don't like using submodules
parents
Showing
.gitignore
0 → 100644
Gemfile
0 → 100644
Rakefile
0 → 100644
lib/paranoia.rb
0 → 100644
lib/paranoia/version.rb
0 → 100644
paranoia.gemspec
0 → 100644
# -*- encoding: utf-8 -*- | ||
require File.expand_path("../lib/paranoia/version", __FILE__) | ||
Gem::Specification.new do |s| | ||
s.name = "paranoia" | ||
s.version = Paranoia::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
s.authors = [] | ||
s.email = [] | ||
s.homepage = "http://rubygems.org/gems/paranoia" | ||
s.summary = "TODO: Write a gem summary" | ||
s.description = "TODO: Write a gem description" | ||
s.required_rubygems_version = ">= 1.3.6" | ||
s.rubyforge_project = "paranoia" | ||
s.add_dependency "activerecord", "~> 3.0.0" | ||
s.add_development_dependency "bundler", ">= 1.0.0" | ||
s.files = `git ls-files`.split("\n") | ||
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact | ||
s.require_path = 'lib' | ||
end |
Please
register
or
sign in
to comment