Skip to content

Commit

Permalink
ignoring pkg, gems, doc
Browse files Browse the repository at this point in the history
adding VERSION.yml
updating gemspec
adding CHANGELOG
  • Loading branch information
Jeffrey Chupp committed Mar 28, 2009
1 parent 11d3b88 commit 54a1597
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -1 +1,4 @@
is_paranoid.db
pkg
*.gem
doc/
14 changes: 14 additions & 0 deletions CHANGELOG
@@ -0,0 +1,14 @@
This will only document major changes. Please see the commit log for minor changes.

-2009-03-28
* removing syntax for calculation require (all find and ActiveRecord calculations are done on-the-fly now via method_missing)
* adding ability to specify alternate fields and values for destroyed objects
* adding in support for _destroyed_only methods (with inspiration from David Krmpotic)
* adding init.rb via David Krmpotic
* adding jewler tasks via Scott Woods

-2009-03-24
* requiring specific syntax to include calculations

-2009-03-21
* initial release
4 changes: 4 additions & 0 deletions VERSION.yml
@@ -0,0 +1,4 @@
---
:minor: 3
:patch: 0
:major: 0
12 changes: 4 additions & 8 deletions is_paranoid.gemspec
Expand Up @@ -2,15 +2,14 @@

Gem::Specification.new do |s|
s.name = %q{is_paranoid}
s.version = "0.0.2"
s.version = "0.3.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jeffrey Chupp"]
s.date = %q{2009-03-26}
s.date = %q{2009-03-28}
s.description = %q{}
s.email = %q{jeff@semanticart.com}
s.extra_rdoc_files = ["README.textile"]
s.files = ["README.textile", "VERSION.yml", "lib/is_paranoid.rb", "spec/android_spec.rb", "spec/database.yml", "spec/schema.rb", "spec/spec.opts", "spec/spec_helper.rb"]
s.files = ["README.textile", "VERSION.yml", "lib/is_paranoid.rb", "spec/database.yml", "spec/is_paranoid_spec.rb", "spec/schema.rb", "spec/spec.opts", "spec/spec_helper.rb"]
s.has_rdoc = true
s.homepage = %q{http://github.com/jchupp/is_paranoid/}
s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
Expand All @@ -23,11 +22,8 @@ Gem::Specification.new do |s|
s.specification_version = 2

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activerecord>, [">=2.3.0"])
else
s.add_dependency(%q<activerecord>, [">=2.3.0"])
end
else
s.add_dependency(%q<activerecord>, [">=2.3.0"])
end
end
end

0 comments on commit 54a1597

Please sign in to comment.