caishu_model 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/caishu_model.gemspec +1 -1
- data/lib/caishu_model/category.rb +2 -2
- data/lib/caishu_model/english.rb +2 -2
- data/lib/caishu_model/goodfriend.rb +4 -4
- data/lib/caishu_model/joke.rb +2 -2
- data/lib/caishu_model/mood.rb +2 -2
- data/lib/caishu_model/note.rb +2 -2
- data/lib/caishu_model/note_category.rb +2 -2
- data/lib/caishu_model/philosophy.rb +2 -2
- data/lib/caishu_model/photo.rb +3 -3
- data/lib/caishu_model/photo_category.rb +2 -2
- data/lib/caishu_model/photo_detail.rb +3 -3
- data/lib/caishu_model/picture.rb +2 -2
- data/lib/caishu_model/touch.rb +2 -2
- data/lib/caishu_model/user.rb +2 -2
- data/lib/caishu_model/weixin.rb +2 -2
- data/lib/caishu_model/weixin_message.rb +2 -2
- metadata +3 -5
- data/lib/caishu_model/settings.rb +0 -5
- data/lib/caishu_model/version.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 24f1625fd7cffdf480445360f9f1f2e93d8c65ce
|
4
|
+
data.tar.gz: a9694ec5f92495f2420c0423a73d58d4ad6407db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f1bcda2b5e6f19e5534c818131ee8c49675de064706152d99a42f0772d72536dad0c505986f575aba4cb164e44de56734a7e5d3eede9e247378d26d5281f52f
|
7
|
+
data.tar.gz: e380dfe44a41eba698448f2762b946de8b153e41fb7d4e45910f53365c5972e837a0bb4a05d6ae3d67454dee51b7686e0150100e740517faa4b0080eb024e9e9
|
data/caishu_model.gemspec
CHANGED
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "caishu_model"
|
8
|
-
spec.version = '0.1.
|
8
|
+
spec.version = '0.1.1'
|
9
9
|
spec.authors = ["menghuanwd"]
|
10
10
|
spec.email = ["651019063@qq.com"]
|
11
11
|
spec.summary = %q{caishu项目的models}
|
@@ -1,2 +1,2 @@
|
|
1
|
-
class Category < ActiveRecord::Base
|
2
|
-
end
|
1
|
+
class Category < ActiveRecord::Base
|
2
|
+
end
|
data/lib/caishu_model/english.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
class English < ActiveRecord::Base
|
2
|
-
end
|
1
|
+
class English < ActiveRecord::Base
|
2
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
class Goodfriend < ActiveRecord::Base
|
2
|
-
# attr_protected :qq, :weixin, :age, :gender, :name, :photos, :telephone, :file_key, :file_name, :file_size, :file_type
|
3
|
-
end
|
4
|
-
|
1
|
+
class Goodfriend < ActiveRecord::Base
|
2
|
+
# attr_protected :qq, :weixin, :age, :gender, :name, :photos, :telephone, :file_key, :file_name, :file_size, :file_type
|
3
|
+
end
|
4
|
+
|
data/lib/caishu_model/joke.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
class Joke < ActiveRecord::Base
|
2
|
-
end
|
1
|
+
class Joke < ActiveRecord::Base
|
2
|
+
end
|
data/lib/caishu_model/mood.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
class Mood < ActiveRecord::Base
|
2
|
-
end
|
1
|
+
class Mood < ActiveRecord::Base
|
2
|
+
end
|
data/lib/caishu_model/note.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
class Note < ActiveRecord::Base
|
2
|
-
end
|
1
|
+
class Note < ActiveRecord::Base
|
2
|
+
end
|
@@ -1,2 +1,2 @@
|
|
1
|
-
class NoteCategory < ActiveRecord::Base
|
2
|
-
end
|
1
|
+
class NoteCategory < ActiveRecord::Base
|
2
|
+
end
|
@@ -1,2 +1,2 @@
|
|
1
|
-
class Philosophy < ActiveRecord::Base
|
2
|
-
end
|
1
|
+
class Philosophy < ActiveRecord::Base
|
2
|
+
end
|
data/lib/caishu_model/photo.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
class Photo < ActiveRecord::Base
|
2
|
-
has_one :photo_detail
|
3
|
-
end
|
1
|
+
class Photo < ActiveRecord::Base
|
2
|
+
has_one :photo_detail
|
3
|
+
end
|
@@ -1,2 +1,2 @@
|
|
1
|
-
class PhotoCategory < ActiveRecord::Base
|
2
|
-
end
|
1
|
+
class PhotoCategory < ActiveRecord::Base
|
2
|
+
end
|
@@ -1,3 +1,3 @@
|
|
1
|
-
class PhotoDetail < ActiveRecord::Base
|
2
|
-
belongs_to :photo
|
3
|
-
end
|
1
|
+
class PhotoDetail < ActiveRecord::Base
|
2
|
+
belongs_to :photo
|
3
|
+
end
|
data/lib/caishu_model/picture.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
class Picture < ActiveRecord::Base
|
2
|
-
end
|
1
|
+
class Picture < ActiveRecord::Base
|
2
|
+
end
|
data/lib/caishu_model/touch.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
class Touch < ActiveRecord::Base
|
2
|
-
end
|
1
|
+
class Touch < ActiveRecord::Base
|
2
|
+
end
|
data/lib/caishu_model/user.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
class User < ActiveRecord::Base
|
2
|
-
end
|
1
|
+
class User < ActiveRecord::Base
|
2
|
+
end
|
data/lib/caishu_model/weixin.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
class Weixin < ActiveRecord::Base
|
2
|
-
end
|
1
|
+
class Weixin < ActiveRecord::Base
|
2
|
+
end
|
@@ -1,2 +1,2 @@
|
|
1
|
-
class WeixinMessage < ActiveRecord::Base
|
2
|
-
end
|
1
|
+
class WeixinMessage < ActiveRecord::Base
|
2
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: caishu_model
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- menghuanwd
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-07-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -78,10 +78,8 @@ files:
|
|
78
78
|
- lib/caishu_model/photo_category.rb
|
79
79
|
- lib/caishu_model/photo_detail.rb
|
80
80
|
- lib/caishu_model/picture.rb
|
81
|
-
- lib/caishu_model/settings.rb
|
82
81
|
- lib/caishu_model/touch.rb
|
83
82
|
- lib/caishu_model/user.rb
|
84
|
-
- lib/caishu_model/version.rb
|
85
83
|
- lib/caishu_model/weixin.rb
|
86
84
|
- lib/caishu_model/weixin_message.rb
|
87
85
|
homepage: https://github.com/menghuanwd/caishu_model
|
@@ -104,7 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
102
|
version: '0'
|
105
103
|
requirements: []
|
106
104
|
rubyforge_project:
|
107
|
-
rubygems_version: 2.
|
105
|
+
rubygems_version: 2.0.3
|
108
106
|
signing_key:
|
109
107
|
specification_version: 4
|
110
108
|
summary: caishu项目的models
|
data/lib/caishu_model/version.rb
DELETED