soup 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,5 @@
1
1
  require 'rubygems'
2
+ gem 'activerecord', '>=2.0.2'
2
3
  require 'activerecord'
3
4
 
4
5
  class ActiveRecordTuple < ActiveRecord::Base
@@ -1,5 +1,5 @@
1
1
  require 'rubygems'
2
- require 'data_mapper'
2
+ gem 'data_mapper'
3
3
 
4
4
  # This tuple implementation is broken - there's a weird interaction
5
5
  # where values are not set within the web application.
data/lib/sequel_tuple.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'rubygems'
2
- require 'sequel'
2
+ gem 'sequel'
3
3
 
4
4
  DB = Sequel.sqlite 'soup_development.db'
5
5
 
data/lib/soup.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'snip'
2
2
 
3
3
  module Soup
4
- VERSION = "0.1.4"
4
+ VERSION = "0.1.5"
5
5
 
6
6
  DEFAULT_CONFIG = {
7
7
  :adapter => 'sqlite3',
data/soup.gemspec CHANGED
@@ -1,16 +1,16 @@
1
1
 
2
- # Gem::Specification for Soup-0.1.4
2
+ # Gem::Specification for Soup-0.1.5
3
3
  # Originally generated by Echoe
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = %q{soup}
7
- s.version = "0.1.4"
7
+ s.version = "0.1.5"
8
8
 
9
9
  s.specification_version = 2 if s.respond_to? :specification_version=
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.authors = ["James Adam"]
13
- s.date = %q{2008-03-11}
13
+ s.date = %q{2008-03-17}
14
14
  s.description = %q{Soup is a bit of everything, summoned from nothing. Soup is like an imaginary friend - comforting,}
15
15
  s.email = ["james@lazyatom.com"]
16
16
  s.files = ["lib/active_record_tuple.rb", "lib/data_mapper_tuple.rb", "lib/sequel_tuple.rb", "lib/snip.rb", "lib/soup.rb", "README", "spec/snip_spec.rb", "spec/soup_test.rb", "spec/spec_runner.rb", "Manifest", "soup.gemspec"]
@@ -20,13 +20,14 @@ Gem::Specification.new do |s|
20
20
  s.rubyforge_project = %q{soup}
21
21
  s.rubygems_version = %q{0.9.5}
22
22
  s.summary = %q{Soup is a bit of everything, summoned from nothing. Soup is like an imaginary friend - comforting,}
23
+
24
+ s.add_dependency(%q<activerecord>, [">= 2.0.2"])
23
25
  end
24
26
 
25
27
 
26
28
  # # Original Rakefile source (requires the Echoe gem):
27
29
  #
28
30
  # require 'rubygems'
29
- # #require 'rake/gempackagetask'
30
31
  #
31
32
  # require 'lib/soup'
32
33
  #
@@ -37,6 +38,7 @@ end
37
38
  # soup.author = ["James Adam"]
38
39
  # soup.email = ["james@lazyatom.com"]
39
40
  # soup.description = File.readlines("README").first
41
+ # soup.dependencies = ["activerecord >=2.0.2"]
40
42
  # end
41
43
  #
42
44
  # rescue LoadError
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: soup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Adam
@@ -9,10 +9,18 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-03-11 00:00:00 +00:00
12
+ date: 2008-03-17 00:00:00 +00:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: activerecord
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 2.0.2
23
+ version:
16
24
  description: Soup is a bit of everything, summoned from nothing. Soup is like an imaginary friend - comforting,
17
25
  email:
18
26
  - james@lazyatom.com