friendly 0.3.4 → 0.3.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.
data/Rakefile CHANGED
@@ -5,10 +5,10 @@ begin
5
5
  require 'jeweler'
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "friendly"
8
- gem.summary = %Q{}
8
+ gem.summary = %Q{NoSQL with MySQL in Ruby}
9
9
  gem.description = %Q{}
10
- gem.email = "james@giraffesoft.ca"
11
- gem.homepage = "http://github.com/giraffesoft/friendly"
10
+ gem.email = "jamesgolick@gmail.com"
11
+ gem.homepage = "http://friendlyorm.com"
12
12
  gem.authors = ["James Golick"]
13
13
  gem.add_development_dependency "rspec", ">= 1.2.9"
14
14
  gem.add_development_dependency "cucumber", ">= 0"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.4
1
+ 0.3.5
@@ -5,13 +5,13 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{friendly}
8
- s.version = "0.3.4"
8
+ s.version = "0.3.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["James Golick"]
12
12
  s.date = %q{2009-12-17}
13
13
  s.description = %q{}
14
- s.email = %q{james@giraffesoft.ca}
14
+ s.email = %q{jamesgolick@gmail.com}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE",
17
17
  "README.md"
@@ -127,11 +127,11 @@ Gem::Specification.new do |s|
127
127
  "website/styles/shThemeMidnight.css",
128
128
  "website/styles/shThemeRDark.css"
129
129
  ]
130
- s.homepage = %q{http://github.com/giraffesoft/friendly}
130
+ s.homepage = %q{http://friendlyorm.com}
131
131
  s.rdoc_options = ["--charset=UTF-8"]
132
132
  s.require_paths = ["lib"]
133
133
  s.rubygems_version = %q{1.3.5}
134
- s.summary = %q{}
134
+ s.summary = %q{NoSQL with MySQL in Ruby}
135
135
  s.test_files = [
136
136
  "spec/fakes/data_store_fake.rb",
137
137
  "spec/fakes/database_fake.rb",
@@ -8,7 +8,7 @@ class DatasetFake
8
8
  end
9
9
 
10
10
  def where(conditions)
11
- @where[conditions]
11
+ @where.detect { |k,v| k == conditions }.last
12
12
  end
13
13
 
14
14
  def insert(attributes)
@@ -22,7 +22,7 @@ class DatasetFake
22
22
  end
23
23
 
24
24
  def first(conditions)
25
- @first[conditions]
25
+ @first.detect { |k,v| k == conditions }.last
26
26
  end
27
27
  end
28
28
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: friendly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Golick
@@ -83,7 +83,7 @@ dependencies:
83
83
  version: "0"
84
84
  version:
85
85
  description: ""
86
- email: james@giraffesoft.ca
86
+ email: jamesgolick@gmail.com
87
87
  executables: []
88
88
 
89
89
  extensions: []
@@ -202,7 +202,7 @@ files:
202
202
  - website/styles/shThemeMidnight.css
203
203
  - website/styles/shThemeRDark.css
204
204
  has_rdoc: true
205
- homepage: http://github.com/giraffesoft/friendly
205
+ homepage: http://friendlyorm.com
206
206
  licenses: []
207
207
 
208
208
  post_install_message:
@@ -228,7 +228,7 @@ rubyforge_project:
228
228
  rubygems_version: 1.3.5
229
229
  signing_key:
230
230
  specification_version: 3
231
- summary: ""
231
+ summary: NoSQL with MySQL in Ruby
232
232
  test_files:
233
233
  - spec/fakes/data_store_fake.rb
234
234
  - spec/fakes/database_fake.rb