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 CHANGED
@@ -3,27 +3,27 @@ require 'rake'
3
3
  require 'rake/gempackagetask'
4
4
 
5
5
  PKG_FILES = FileList[
6
- '[a-zA-Z]*',
7
- 'lib/**/*',
8
- 'app/**/*',
9
- 'rails/**/*'
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.1'
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 = "Rails plugin for making CRUD easier"
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 the gem'
26
+ desc 'Build it'
27
27
  Rake::GemPackageTask.new(spec) do |pkg|
28
28
  pkg.gem_spec = spec
29
29
  end
@@ -0,0 +1,3 @@
1
+ require 'rails-crud/base'
2
+ require 'rails-crud/crud_helper'
3
+
File without changes
@@ -1,4 +1,2 @@
1
- require 'crud'
2
- require 'crud_helper'
3
-
1
+ require 'rails-crud'
4
2
  ActionView::Base.send :include, CRUD::CrudHelper
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.1
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
- - lib/crud.rb
28
- - lib/crud_helper.rb
29
- - app/views/crud/_fields.html.haml
30
- - app/views/crud/_form.html.haml
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: Rails plugin for making CRUD easier
64
+ summary: Making CRUD based controllers easier
64
65
  test_files: []
65
66