caishu_model 0.0.5 → 0.0.8
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 +4 -5
- data/lib/caishu_model/category.rb +2 -0
- data/lib/caishu_model/english.rb +2 -0
- data/lib/caishu_model/goodfriend.rb +4 -0
- data/lib/caishu_model/joke.rb +2 -0
- data/lib/caishu_model/mood.rb +2 -0
- data/lib/caishu_model/note.rb +2 -0
- data/lib/caishu_model/note_category.rb +2 -0
- data/lib/caishu_model/philosophy.rb +2 -0
- data/lib/caishu_model/photo.rb +3 -0
- data/lib/caishu_model/photo_category.rb +2 -0
- data/lib/caishu_model/photo_detail.rb +3 -0
- data/lib/caishu_model/picture.rb +2 -0
- data/lib/caishu_model/settings.rb +5 -0
- data/lib/caishu_model/touch.rb +2 -0
- data/lib/caishu_model/user.rb +2 -0
- data/lib/caishu_model/version.rb +1 -1
- data/lib/caishu_model/weixin.rb +2 -0
- data/lib/caishu_model/weixin_message.rb +2 -0
- data/lib/caishu_model.rb +2 -5
- metadata +20 -3
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 3dac9f6465869e8f5a0119c7d418b1b4ce4a3551
         | 
| 4 | 
            +
              data.tar.gz: 7926e656b5569c39946e45bc85a45d3aa8743529
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 32d7ba7c999ddf86c733012d8e6be058df61fc075a897d091eac09b76ff21e00e16013043e9d764e3f6db2e861c147745b5e187b0ff757a07950e8817e2a2ad3
         | 
| 7 | 
            +
              data.tar.gz: 6e4ecfbd38c8aa1bba44277344d81e9c51e0160de69ceeab16ae82a34876e1bf26f6c97768992c46822fa9f6eb5fc86e35e02ec7a57a6a2ad4928818f5a2fd42
         | 
    
        data/caishu_model.gemspec
    CHANGED
    
    | @@ -1,20 +1,19 @@ | |
| 1 1 | 
             
            # coding: utf-8
         | 
| 2 2 | 
             
            lib = File.expand_path('../lib', __FILE__)
         | 
| 3 3 | 
             
            $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
         | 
| 4 | 
            -
            require 'caishu_model/version'
         | 
| 4 | 
            +
            # require 'caishu_model/version'
         | 
| 5 5 |  | 
| 6 6 | 
             
            Gem::Specification.new do |spec|
         | 
| 7 7 | 
             
              spec.name          = "caishu_model"
         | 
| 8 | 
            -
              spec.version       =  | 
| 8 | 
            +
              spec.version       = '0.0.8'
         | 
| 9 9 | 
             
              spec.authors       = ["menghuanwd"]
         | 
| 10 10 | 
             
              spec.email         = ["651019063@qq.com"]
         | 
| 11 | 
            -
              spec.summary       = %q{ | 
| 12 | 
            -
              spec.description   = %q{ | 
| 11 | 
            +
              spec.summary       = %q{asd}
         | 
| 12 | 
            +
              spec.description   = %q{wqw}
         | 
| 13 13 | 
             
              spec.homepage      = ""
         | 
| 14 14 | 
             
              spec.license       = "MIT"
         | 
| 15 15 |  | 
| 16 16 | 
             
              spec.files         = `git ls-files -z`.split("\x0")
         | 
| 17 | 
            -
              # spec.files         = %w[lib/user lib/version gc]
         | 
| 18 17 | 
             
              spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
         | 
| 19 18 | 
             
              spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
         | 
| 20 19 | 
             
              spec.require_paths = ["lib"]
         | 
    
        data/lib/caishu_model/version.rb
    CHANGED
    
    
    
        data/lib/caishu_model.rb
    CHANGED
    
    | @@ -1,8 +1,5 @@ | |
| 1 | 
            +
            # require "caishu_model/version"
         | 
| 2 | 
            +
            Dir[ File.expand_path('../caishu_model/*.rb', __FILE__) ].each{|file| require file }
         | 
| 1 3 | 
             
            module CaishuModel
         | 
| 2 4 | 
             
              # Your code goes here...
         | 
| 3 5 | 
             
            end
         | 
| 4 | 
            -
             | 
| 5 | 
            -
            # require "caishu_model/version"
         | 
| 6 | 
            -
            # require "caishu_model/bag"
         | 
| 7 | 
            -
             | 
| 8 | 
            -
            Dir[ File.expand_path('../caishu_model/*.rb', __FILE__) ].each{|file| require file }
         | 
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: caishu_model
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.0. | 
| 4 | 
            +
              version: 0.0.8
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - menghuanwd
         | 
| @@ -38,7 +38,7 @@ dependencies: | |
| 38 38 | 
             
                - - '>='
         | 
| 39 39 | 
             
                  - !ruby/object:Gem::Version
         | 
| 40 40 | 
             
                    version: '0'
         | 
| 41 | 
            -
            description:  | 
| 41 | 
            +
            description: wqw
         | 
| 42 42 | 
             
            email:
         | 
| 43 43 | 
             
            - 651019063@qq.com
         | 
| 44 44 | 
             
            executables: []
         | 
| @@ -52,7 +52,24 @@ files: | |
| 52 52 | 
             
            - Rakefile
         | 
| 53 53 | 
             
            - caishu_model.gemspec
         | 
| 54 54 | 
             
            - lib/caishu_model.rb
         | 
| 55 | 
            +
            - lib/caishu_model/category.rb
         | 
| 56 | 
            +
            - lib/caishu_model/english.rb
         | 
| 57 | 
            +
            - lib/caishu_model/goodfriend.rb
         | 
| 58 | 
            +
            - lib/caishu_model/joke.rb
         | 
| 59 | 
            +
            - lib/caishu_model/mood.rb
         | 
| 60 | 
            +
            - lib/caishu_model/note.rb
         | 
| 61 | 
            +
            - lib/caishu_model/note_category.rb
         | 
| 62 | 
            +
            - lib/caishu_model/philosophy.rb
         | 
| 63 | 
            +
            - lib/caishu_model/photo.rb
         | 
| 64 | 
            +
            - lib/caishu_model/photo_category.rb
         | 
| 65 | 
            +
            - lib/caishu_model/photo_detail.rb
         | 
| 66 | 
            +
            - lib/caishu_model/picture.rb
         | 
| 67 | 
            +
            - lib/caishu_model/settings.rb
         | 
| 68 | 
            +
            - lib/caishu_model/touch.rb
         | 
| 69 | 
            +
            - lib/caishu_model/user.rb
         | 
| 55 70 | 
             
            - lib/caishu_model/version.rb
         | 
| 71 | 
            +
            - lib/caishu_model/weixin.rb
         | 
| 72 | 
            +
            - lib/caishu_model/weixin_message.rb
         | 
| 56 73 | 
             
            homepage: ''
         | 
| 57 74 | 
             
            licenses:
         | 
| 58 75 | 
             
            - MIT
         | 
| @@ -76,5 +93,5 @@ rubyforge_project: | |
| 76 93 | 
             
            rubygems_version: 2.1.11
         | 
| 77 94 | 
             
            signing_key: 
         | 
| 78 95 | 
             
            specification_version: 4
         | 
| 79 | 
            -
            summary:  | 
| 96 | 
            +
            summary: asd
         | 
| 80 97 | 
             
            test_files: []
         |