dynamoid 0.7.0 → 0.7.1

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,7 @@
1
1
  language: ruby
2
+ gemfile:
3
+ - Gemfile
4
+ - Gemfile_activemodel4
2
5
  ruby:
3
6
  - 1.9.3
4
- script: bundle exec rake unattended_spec
7
+ script: bundle exec rake unattended_spec
@@ -0,0 +1,24 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem 'activemodel', '~>4.0.0'
4
+ gem 'tzinfo'
5
+ gem 'aws-sdk'
6
+
7
+ # Add dependencies required to use your gem here.
8
+ # Example:
9
+ # gem "activesupport", ">= 2.3.5"
10
+
11
+ # Add dependencies to develop your gem here.
12
+ # Include everything needed to run rake, tests, features, etc.
13
+ group :development do
14
+ gem "rake"
15
+ gem "rspec"
16
+ gem "bundler"
17
+ gem "jeweler"
18
+ gem "yard"
19
+ gem "redcarpet", '1.17.2'
20
+ gem 'github-markup'
21
+ gem 'pry'
22
+ gem 'fake_dynamo', '~>0.1.3'
23
+ gem "mocha", '0.10.0'
24
+ end
@@ -0,0 +1,88 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ activemodel (4.0.0)
5
+ activesupport (= 4.0.0)
6
+ builder (~> 3.1.0)
7
+ activesupport (4.0.0)
8
+ i18n (~> 0.6, >= 0.6.4)
9
+ minitest (~> 4.2)
10
+ multi_json (~> 1.3)
11
+ thread_safe (~> 0.1)
12
+ tzinfo (~> 0.3.37)
13
+ atomic (1.1.10)
14
+ aws-sdk (1.10.0)
15
+ json (~> 1.4)
16
+ nokogiri (>= 1.4.4)
17
+ uuidtools (~> 2.1)
18
+ builder (3.1.4)
19
+ coderay (1.0.9)
20
+ diff-lcs (1.2.4)
21
+ fake_dynamo (0.1.3)
22
+ activesupport
23
+ json
24
+ sinatra
25
+ git (1.2.5)
26
+ github-markup (0.7.5)
27
+ i18n (0.6.4)
28
+ jeweler (1.8.4)
29
+ bundler (~> 1.0)
30
+ git (>= 1.2.5)
31
+ rake
32
+ rdoc
33
+ json (1.8.0)
34
+ metaclass (0.0.1)
35
+ method_source (0.8.1)
36
+ minitest (4.7.5)
37
+ mocha (0.10.0)
38
+ metaclass (~> 0.0.1)
39
+ multi_json (1.7.7)
40
+ nokogiri (1.5.9)
41
+ pry (0.9.12.2)
42
+ coderay (~> 1.0.5)
43
+ method_source (~> 0.8)
44
+ slop (~> 3.4)
45
+ rack (1.5.2)
46
+ rack-protection (1.5.0)
47
+ rack
48
+ rake (10.0.4)
49
+ rdoc (4.0.1)
50
+ json (~> 1.4)
51
+ redcarpet (1.17.2)
52
+ rspec (2.13.0)
53
+ rspec-core (~> 2.13.0)
54
+ rspec-expectations (~> 2.13.0)
55
+ rspec-mocks (~> 2.13.0)
56
+ rspec-core (2.13.1)
57
+ rspec-expectations (2.13.0)
58
+ diff-lcs (>= 1.1.3, < 2.0)
59
+ rspec-mocks (2.13.1)
60
+ sinatra (1.4.2)
61
+ rack (~> 1.5, >= 1.5.2)
62
+ rack-protection (~> 1.4)
63
+ tilt (~> 1.3, >= 1.3.4)
64
+ slop (3.4.5)
65
+ thread_safe (0.1.0)
66
+ atomic
67
+ tilt (1.4.1)
68
+ tzinfo (0.3.37)
69
+ uuidtools (2.1.4)
70
+ yard (0.8.6.1)
71
+
72
+ PLATFORMS
73
+ ruby
74
+
75
+ DEPENDENCIES
76
+ activemodel (~> 4.0.0)
77
+ aws-sdk
78
+ bundler
79
+ fake_dynamo (~> 0.1.3)
80
+ github-markup
81
+ jeweler
82
+ mocha (= 0.10.0)
83
+ pry
84
+ rake
85
+ redcarpet (= 1.17.2)
86
+ rspec
87
+ tzinfo
88
+ yard
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.7.0
1
+ 0.7.1
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "dynamoid"
8
- s.version = "0.7.0"
8
+ s.version = "0.7.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Josh Symonds"]
12
- s.date = "2013-06-28"
12
+ s.date = "2013-08-05"
13
13
  s.description = "Dynamoid is an ORM for Amazon's DynamoDB that supports offline development, associations, querying, and everything else you'd expect from an ActiveRecord-style replacement."
14
14
  s.email = "josh@joshsymonds.com"
15
15
  s.extra_rdoc_files = [
@@ -22,6 +22,8 @@ Gem::Specification.new do |s|
22
22
  ".travis.yml",
23
23
  "Gemfile",
24
24
  "Gemfile.lock",
25
+ "Gemfile_activemodel4",
26
+ "Gemfile_activemodel4.lock",
25
27
  "LICENSE.txt",
26
28
  "README.markdown",
27
29
  "Rakefile",
@@ -152,7 +154,7 @@ Gem::Specification.new do |s|
152
154
  s.homepage = "http://github.com/Veraticus/Dynamoid"
153
155
  s.licenses = ["MIT"]
154
156
  s.require_paths = ["lib"]
155
- s.rubygems_version = "1.8.25"
157
+ s.rubygems_version = "1.8.24"
156
158
  s.summary = "Dynamoid is an ORM for Amazon's DynamoDB"
157
159
 
158
160
  if s.respond_to? :specification_version then
@@ -19,9 +19,9 @@ module Dynamoid
19
19
 
20
20
  include ActiveModel::AttributeMethods
21
21
  include ActiveModel::Conversion
22
- include ActiveModel::MassAssignmentSecurity
22
+ include ActiveModel::MassAssignmentSecurity if defined?(ActiveModel::MassAssignmentSecurity)
23
23
  include ActiveModel::Naming
24
- include ActiveModel::Observing
24
+ include ActiveModel::Observing if defined?(ActiveModel::Observing)
25
25
  include ActiveModel::Serializers::JSON
26
26
  include ActiveModel::Serializers::Xml
27
27
  include Dynamoid::Fields
@@ -8,7 +8,7 @@ module Dynamoid
8
8
  module Config
9
9
  extend self
10
10
  extend Options
11
- include ActiveModel::Observing
11
+ include ActiveModel::Observing if defined?(ActiveModel::Observing)
12
12
 
13
13
  # All the default options.
14
14
  option :adapter, :default => 'aws-sdk'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dynamoid
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-06-28 00:00:00.000000000 Z
12
+ date: 2013-08-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activemodel
@@ -234,6 +234,8 @@ files:
234
234
  - .travis.yml
235
235
  - Gemfile
236
236
  - Gemfile.lock
237
+ - Gemfile_activemodel4
238
+ - Gemfile_activemodel4.lock
237
239
  - LICENSE.txt
238
240
  - README.markdown
239
241
  - Rakefile
@@ -375,7 +377,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
375
377
  version: '0'
376
378
  segments:
377
379
  - 0
378
- hash: 1044979566078610406
380
+ hash: 1424756410628377815
379
381
  required_rubygems_version: !ruby/object:Gem::Requirement
380
382
  none: false
381
383
  requirements:
@@ -384,7 +386,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
384
386
  version: '0'
385
387
  requirements: []
386
388
  rubyforge_project:
387
- rubygems_version: 1.8.25
389
+ rubygems_version: 1.8.24
388
390
  signing_key:
389
391
  specification_version: 3
390
392
  summary: Dynamoid is an ORM for Amazon's DynamoDB