rails-crud 0.0.1 → 0.0.2
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 +7 -7
- data/lib/rails-crud.rb +3 -0
- data/lib/{crud.rb → rails-crud/base.rb} +0 -0
- data/lib/{crud_helper.rb → rails-crud/crud_helper.rb} +0 -0
- data/rails/init.rb +1 -3
- metadata +10 -9
    
        data/Rakefile
    CHANGED
    
    | @@ -3,27 +3,27 @@ require 'rake' | |
| 3 3 | 
             
            require 'rake/gempackagetask'
         | 
| 4 4 |  | 
| 5 5 | 
             
            PKG_FILES = FileList[
         | 
| 6 | 
            -
             | 
| 7 | 
            -
             | 
| 8 | 
            -
             | 
| 9 | 
            -
             | 
| 6 | 
            +
              '[a-zA-Z]*',
         | 
| 7 | 
            +
              'lib/**/*',
         | 
| 8 | 
            +
              'app/**/*',
         | 
| 9 | 
            +
              'rails/**/*'
         | 
| 10 10 | 
             
            ]
         | 
| 11 11 |  | 
| 12 12 | 
             
            spec = Gem::Specification.new do |s|
         | 
| 13 13 | 
             
              s.name = 'rails-crud'
         | 
| 14 | 
            -
              s.version = '0.0. | 
| 14 | 
            +
              s.version = '0.0.2'
         | 
| 15 15 | 
             
              s.author = 'Jon Moses'
         | 
| 16 16 | 
             
              s.email = 'jon@burningbush.us'
         | 
| 17 17 | 
             
              s.homepage = 'http://github.com/jmoses/rails-crud'
         | 
| 18 18 | 
             
              s.platform = Gem::Platform::RUBY
         | 
| 19 | 
            -
              s.summary =  | 
| 19 | 
            +
              s.summary = 'Making CRUD based controllers easier'
         | 
| 20 20 | 
             
              s.files = PKG_FILES.to_a
         | 
| 21 21 | 
             
              s.require_path = 'lib'
         | 
| 22 22 | 
             
              s.has_rdoc = false
         | 
| 23 23 | 
             
              s.extra_rdoc_files = ["README"]
         | 
| 24 24 | 
             
            end
         | 
| 25 25 |  | 
| 26 | 
            -
            desc 'Build  | 
| 26 | 
            +
            desc 'Build it'
         | 
| 27 27 | 
             
            Rake::GemPackageTask.new(spec) do |pkg|
         | 
| 28 28 | 
             
              pkg.gem_spec = spec
         | 
| 29 29 | 
             
            end
         | 
    
        data/lib/rails-crud.rb
    ADDED
    
    
| 
            File without changes
         | 
| 
            File without changes
         | 
    
        data/rails/init.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification 
         | 
| 2 2 | 
             
            name: rails-crud
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version 
         | 
| 4 | 
            -
              version: 0.0. | 
| 4 | 
            +
              version: 0.0.2
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors: 
         | 
| 7 7 | 
             
            - Jon Moses
         | 
| @@ -22,16 +22,17 @@ extensions: [] | |
| 22 22 | 
             
            extra_rdoc_files: 
         | 
| 23 23 | 
             
            - README
         | 
| 24 24 | 
             
            files: 
         | 
| 25 | 
            -
            - Rakefile
         | 
| 26 25 | 
             
            - README
         | 
| 27 | 
            -
            -  | 
| 28 | 
            -
            - lib/ | 
| 29 | 
            -
            -  | 
| 30 | 
            -
            -  | 
| 31 | 
            -
            - app/views/crud/_other_actions.html.haml
         | 
| 32 | 
            -
            - app/views/crud/edit.html.haml
         | 
| 26 | 
            +
            - Rakefile
         | 
| 27 | 
            +
            - lib/rails-crud.rb
         | 
| 28 | 
            +
            - lib/rails-crud/crud_helper.rb
         | 
| 29 | 
            +
            - lib/rails-crud/base.rb
         | 
| 33 30 | 
             
            - app/views/crud/index.html.haml
         | 
| 31 | 
            +
            - app/views/crud/edit.html.haml
         | 
| 32 | 
            +
            - app/views/crud/_form.html.haml
         | 
| 34 33 | 
             
            - app/views/crud/new.html.haml
         | 
| 34 | 
            +
            - app/views/crud/_fields.html.haml
         | 
| 35 | 
            +
            - app/views/crud/_other_actions.html.haml
         | 
| 35 36 | 
             
            - rails/init.rb
         | 
| 36 37 | 
             
            has_rdoc: true
         | 
| 37 38 | 
             
            homepage: http://github.com/jmoses/rails-crud
         | 
| @@ -60,6 +61,6 @@ rubyforge_project: | |
| 60 61 | 
             
            rubygems_version: 1.3.5
         | 
| 61 62 | 
             
            signing_key: 
         | 
| 62 63 | 
             
            specification_version: 3
         | 
| 63 | 
            -
            summary:  | 
| 64 | 
            +
            summary: Making CRUD based controllers easier
         | 
| 64 65 | 
             
            test_files: []
         | 
| 65 66 |  |