rails_artifactor 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.rspec +1 -0
- data/DESIGN_NOTES.textile +33 -0
- data/Gemfile +18 -0
- data/LICENSE +20 -0
- data/README.markdown +71 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/lib/rails_artifactor/artifact/base.rb +59 -0
- data/lib/rails_artifactor/artifact/crud/create.rb +12 -0
- data/lib/rails_artifactor/artifact/crud/delete.rb +34 -0
- data/lib/rails_artifactor/artifact/crud/read.rb +47 -0
- data/lib/rails_artifactor/artifact/crud/update.rb +25 -0
- data/lib/rails_artifactor/artifact/crud.rb +32 -0
- data/lib/rails_artifactor/artifact/file_name/artifacts.rb +21 -0
- data/lib/rails_artifactor/artifact/file_name/migration.rb +54 -0
- data/lib/rails_artifactor/artifact/file_name/view.rb +172 -0
- data/lib/rails_artifactor/artifact/markers.rb +73 -0
- data/lib/rails_artifactor/artifact/migration.rb +11 -0
- data/lib/rails_artifactor/artifact/orm/active_record.rb +14 -0
- data/lib/rails_artifactor/artifact/orm/data_mapper.rb +22 -0
- data/lib/rails_artifactor/artifact/orm/mongo_mapper.rb +18 -0
- data/lib/rails_artifactor/artifact/orm/mongoid.rb +23 -0
- data/lib/rails_artifactor/artifact/orm/none.rb +16 -0
- data/lib/rails_artifactor/artifact/orm.rb +55 -0
- data/lib/rails_artifactor/artifact/view_artifact.rb +94 -0
- data/lib/rails_artifactor/artifact.rb +1 -0
- data/lib/rails_artifactor/base/crud/create.rb +62 -0
- data/lib/rails_artifactor/base/crud/delete.rb +35 -0
- data/lib/rails_artifactor/base/crud/read.rb +13 -0
- data/lib/rails_artifactor/base/crud/update.rb +66 -0
- data/lib/rails_artifactor/base/crud.rb +6 -0
- data/lib/rails_artifactor/base/file_name.rb +41 -0
- data/lib/rails_artifactor/base.rb +1 -0
- data/lib/rails_artifactor/macro.rb +2 -0
- data/lib/rails_artifactor/namespaces.rb +10 -0
- data/lib/rails_artifactor/rspec/configure.rb +7 -0
- data/lib/rails_artifactor/rspec.rb +1 -0
- data/lib/rails_artifactor/ruby_mutator.rb +11 -0
- data/lib/rails_artifactor/template_language/base.rb +14 -0
- data/lib/rails_artifactor/template_language/erb.rb +24 -0
- data/lib/rails_artifactor/template_language/haml.rb +32 -0
- data/lib/rails_artifactor/template_language/slim.rb +15 -0
- data/lib/rails_artifactor.rb +12 -0
- data/rails_artifactor.gemspec +163 -0
- data/spec/fixtures/app/views/account/edit.erb.html +3 -0
- data/spec/fixtures/app/views/account/edit.html.erb +3 -0
- data/spec/fixtures/app/views/layouts/application.erb.html +3 -0
- data/spec/fixtures/app/views/layouts/application.html.erb +16 -0
- data/spec/fixtures.rb +3 -0
- data/spec/rails_artifactor/artifact/base_spec.rb +17 -0
- data/spec/rails_artifactor/artifact/crud/controller_spec.rb +65 -0
- data/spec/rails_artifactor/artifact/crud/helper_spec.rb +64 -0
- data/spec/rails_artifactor/artifact/crud/mailer_spec.rb +62 -0
- data/spec/rails_artifactor/artifact/crud/migration_spec.rb +86 -0
- data/spec/rails_artifactor/artifact/crud/model_active_record_spec.rb +68 -0
- data/spec/rails_artifactor/artifact/crud/model_spec.rb +68 -0
- data/spec/rails_artifactor/artifact/crud/observer_spec.rb +65 -0
- data/spec/rails_artifactor/artifact/crud/permit_spec.rb +71 -0
- data/spec/rails_artifactor/artifact/crud/view_controller_action_spec.rb +92 -0
- data/spec/rails_artifactor/artifact/crud/view_file_spec.rb +31 -0
- data/spec/rails_artifactor/artifact/file_name/artifacts_spec.rb +33 -0
- data/spec/rails_artifactor/artifact/file_name/migration_spec.rb +32 -0
- data/spec/rails_artifactor/artifact/file_name/view_spec.rb +38 -0
- data/spec/rails_artifactor/artifact/markers_spec.rb +93 -0
- data/spec/rails_artifactor/artifact/migration_spec.rb +0 -0
- data/spec/rails_artifactor/artifact/orm/active_record_spec.rb +37 -0
- data/spec/rails_artifactor/artifact/orm/data_mapper_spec.rb +37 -0
- data/spec/rails_artifactor/artifact/orm/mongo_mapper_spec.rb +67 -0
- data/spec/rails_artifactor/artifact/orm/mongoid_spec.rb +67 -0
- data/spec/rails_artifactor/artifact/orm/none_spec.rb +36 -0
- data/spec/rails_artifactor/base/crud/create_spec.rb +31 -0
- data/spec/rails_artifactor/base/crud/delete_spec.rb +49 -0
- data/spec/rails_artifactor/base/crud/read_spec.rb +80 -0
- data/spec/rails_artifactor/base/crud/update_spec.rb +74 -0
- data/spec/rails_artifactor/base/file_name_spec.rb +23 -0
- data/spec/spec_helper.rb +9 -0
- metadata +234 -0
@@ -0,0 +1,36 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'model without any orm' do
|
4
|
+
use_orm :none
|
5
|
+
|
6
|
+
before do
|
7
|
+
RailsAssist::Directory.rails_root = File.dirname (__FILE__)
|
8
|
+
end
|
9
|
+
|
10
|
+
before :each do
|
11
|
+
remove_model :account
|
12
|
+
create_model :account do
|
13
|
+
%q{def index
|
14
|
+
end}
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
after :each do
|
19
|
+
# remove_model :account
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should have an account_model file that contains an index method and two inserted comments" do
|
23
|
+
insert_into_model :account, :content => '# hello'
|
24
|
+
insert_into_model :account do
|
25
|
+
'# goodbye'
|
26
|
+
end
|
27
|
+
puts read_model(:account)
|
28
|
+
read_model(:account).should have_comment 'hello'
|
29
|
+
|
30
|
+
# root_dir.should have_model :account do |model_file|
|
31
|
+
# model_file.should have_method :index
|
32
|
+
# model_file.should have_comment 'hello'
|
33
|
+
# model_file.should have_comment 'goodbye'
|
34
|
+
# end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'model without orm' do
|
4
|
+
use_orm :none
|
5
|
+
use_helper :model
|
6
|
+
|
7
|
+
before :each do
|
8
|
+
RailsAssist::Directory.rails_root = fixtures_dir
|
9
|
+
end
|
10
|
+
|
11
|
+
after :each do
|
12
|
+
# remove_model :account
|
13
|
+
end
|
14
|
+
|
15
|
+
describe '#new_artifact_content' do
|
16
|
+
it "should create artifact content" do
|
17
|
+
content = new_artifact_content :person, :content => '# Hello', :type => :model
|
18
|
+
content.should have_comment 'Hello'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
describe '#create_artifact' do
|
23
|
+
it "should create artifact" do
|
24
|
+
create_artifact :person, :type => :model do
|
25
|
+
'# Hello'
|
26
|
+
end
|
27
|
+
|
28
|
+
has_model?(:person).should be_true
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'model without orm' do
|
4
|
+
use_orm :none
|
5
|
+
use_helper :model
|
6
|
+
|
7
|
+
before :each do
|
8
|
+
RailsAssist::Directory.rails_root = fixtures_dir
|
9
|
+
end
|
10
|
+
|
11
|
+
after :each do
|
12
|
+
# remove_model :account
|
13
|
+
end
|
14
|
+
|
15
|
+
describe '#remove_artifact' do
|
16
|
+
before :each do
|
17
|
+
create_artifact :person, :type => :model do
|
18
|
+
'# Hello'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should remove artifact" do
|
23
|
+
has_model?(:person).should be_true
|
24
|
+
remove_artifact :person, :type => :model
|
25
|
+
has_model?(:person).should be_false
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe '#remove_artifacts' do
|
30
|
+
before :each do
|
31
|
+
create_artifact :person, :type => :model do
|
32
|
+
'# Hello'
|
33
|
+
end
|
34
|
+
create_artifact :user, :type => :model do
|
35
|
+
'# Hi'
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
it "should delete model artifacts :person and :user" do
|
40
|
+
|
41
|
+
has_models?(:user, :person).should be_true
|
42
|
+
|
43
|
+
remove_artifacts :person, :user, :type => :model
|
44
|
+
|
45
|
+
has_models?(:person, :user).should be_false
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
@@ -0,0 +1,80 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
CONTENT = %q{
|
4
|
+
# Hello
|
5
|
+
# Intro
|
6
|
+
# Goodbye
|
7
|
+
}
|
8
|
+
|
9
|
+
describe 'model without orm' do
|
10
|
+
use_orm :none
|
11
|
+
use_helper :model
|
12
|
+
|
13
|
+
before :each do
|
14
|
+
RailsAssist::Directory.rails_root = fixtures_dir
|
15
|
+
end
|
16
|
+
|
17
|
+
after :each do
|
18
|
+
# remove_model :account
|
19
|
+
end
|
20
|
+
|
21
|
+
describe '#read_artifact' do
|
22
|
+
before :each do
|
23
|
+
create_artifact :person, :type => :model do
|
24
|
+
CONTENT
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
after :each do
|
29
|
+
remove_model :person
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should read artifact" do
|
33
|
+
content = read_artifact :person, :type => :model
|
34
|
+
content.should have_comment 'Hello'
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
describe '#read_artifact :before' do
|
39
|
+
before :each do
|
40
|
+
create_artifact :person, :type => :model do
|
41
|
+
CONTENT
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
after :each do
|
46
|
+
remove_model :person
|
47
|
+
end
|
48
|
+
|
49
|
+
it "should read before 'Hello'" do
|
50
|
+
content = read_artifact :person, :type => :model, :before => 'Intro'
|
51
|
+
content.should have_comment 'Hello'
|
52
|
+
content.should_not have_comment 'Goodbye'
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
describe '#read_artifact :after' do
|
57
|
+
before :each do
|
58
|
+
create_artifact :person, :type => :model do
|
59
|
+
CONTENT
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
after :each do
|
64
|
+
remove_model :person
|
65
|
+
end
|
66
|
+
|
67
|
+
it "should read after 'Hello' " do
|
68
|
+
content = read_artifact :person, :type => :model, :after => 'Intro'
|
69
|
+
content.should have_comment 'Goodbye'
|
70
|
+
content.should_not have_comment 'Hello'
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
|
75
|
+
end
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
|
80
|
+
|
@@ -0,0 +1,74 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'model without orm' do
|
4
|
+
use_orm :none
|
5
|
+
use_helper :model
|
6
|
+
|
7
|
+
before :each do
|
8
|
+
RailsAssist::Directory.rails_root = fixtures_dir
|
9
|
+
end
|
10
|
+
|
11
|
+
after :each do
|
12
|
+
# remove_model :account
|
13
|
+
end
|
14
|
+
|
15
|
+
describe '#insert_into_artifact' do
|
16
|
+
it "should insert_into_artifact" do
|
17
|
+
insert_into_artifact :account, :type => :model do
|
18
|
+
'# hi there'
|
19
|
+
end
|
20
|
+
|
21
|
+
insert_into_artifact :account, :type => :model, :content => '# hi there'
|
22
|
+
|
23
|
+
content = read_artifact :account, :type => :model, :after => 'Account'
|
24
|
+
content.should have_comment 'hi there'
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe '#replace_from_artifact' do
|
29
|
+
it "should replace content from artifact" do
|
30
|
+
replace_in_artifact :account, :type => :model, :content => '# hi there', :with => '# howdy'
|
31
|
+
|
32
|
+
content = read_artifact :account, :type => :model, :after => 'Account'
|
33
|
+
content.should have_comment 'howdy'
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
describe '#update_artifacts' do
|
38
|
+
it "should remove content from artifact" do
|
39
|
+
update_artifacts :account, :type => :model, :content => 'howdy', :with => 'hi there'
|
40
|
+
|
41
|
+
content = read_artifact :account, :type => :model, :after => 'Account'
|
42
|
+
content.should have_comment 'hi there'
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
|
47
|
+
describe '#remove_from_artifact' do
|
48
|
+
it "should remove content from artifact" do
|
49
|
+
remove_from_artifact :account, :type => :model, :content => '# hi there'
|
50
|
+
|
51
|
+
content = read_artifact :account, :type => :model, :after => 'Account'
|
52
|
+
content.should_not have_comment 'hi there'
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
describe '#remove_from_artifacts' do
|
57
|
+
it "should remove content from artifact" do
|
58
|
+
insert_into_artifact :account, :type => :model do
|
59
|
+
'# hi there'
|
60
|
+
end
|
61
|
+
|
62
|
+
remove_from_artifacts :account, :type => :model, :content => '# hi there'
|
63
|
+
|
64
|
+
content = read_artifact :account, :type => :model, :after => 'Account'
|
65
|
+
content.should_not have_comment 'hi there'
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
end
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'require_all'
|
2
|
+
require 'rails_artifactor/namespaces'
|
3
|
+
require 'rails_artifactor/base/file_name'
|
4
|
+
|
5
|
+
describe RailsAssist::Artifact::FileName do
|
6
|
+
describe '#make_file_name' do
|
7
|
+
it "should ..." do
|
8
|
+
pending "todo"
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
describe '#existing_file_name' do
|
13
|
+
it "should ..." do
|
14
|
+
pending "todo"
|
15
|
+
end
|
16
|
+
|
17
|
+
RailsAssist.artifacts.each do |name|
|
18
|
+
it "should find existing file for #{name}" do
|
19
|
+
pending
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,234 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rails_artifactor
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.3
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Kristian Mandrup
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2011-03-04 00:00:00.000000000 +01:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rspec
|
17
|
+
requirement: &2158560300 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ! '>='
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.3.0
|
23
|
+
type: :development
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: *2158560300
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: bundler
|
28
|
+
requirement: &2158559380 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.0.0
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: *2158559380
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: jeweler
|
39
|
+
requirement: &2158545820 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ~>
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: 1.5.2
|
45
|
+
type: :development
|
46
|
+
prerelease: false
|
47
|
+
version_requirements: *2158545820
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: rcov
|
50
|
+
requirement: &2158538300 !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ! '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
type: :development
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: *2158538300
|
59
|
+
- !ruby/object:Gem::Dependency
|
60
|
+
name: generator-spec
|
61
|
+
requirement: &2158537240 !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ! '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 0.7.3
|
67
|
+
type: :development
|
68
|
+
prerelease: false
|
69
|
+
version_requirements: *2158537240
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: sugar-high
|
72
|
+
requirement: &2158536260 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 0.4.0
|
78
|
+
type: :runtime
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: *2158536260
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: rails_assist
|
83
|
+
requirement: &2158535520 !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
85
|
+
requirements:
|
86
|
+
- - ~>
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: 0.4.1
|
89
|
+
type: :runtime
|
90
|
+
prerelease: false
|
91
|
+
version_requirements: *2158535520
|
92
|
+
description: Helpers for handling Rails 3 artifacts in general, such as CRUD operations
|
93
|
+
etc.
|
94
|
+
email: kmandrup@gmail.com
|
95
|
+
executables: []
|
96
|
+
extensions: []
|
97
|
+
extra_rdoc_files:
|
98
|
+
- LICENSE
|
99
|
+
- README.markdown
|
100
|
+
files:
|
101
|
+
- .document
|
102
|
+
- .rspec
|
103
|
+
- DESIGN_NOTES.textile
|
104
|
+
- Gemfile
|
105
|
+
- LICENSE
|
106
|
+
- README.markdown
|
107
|
+
- Rakefile
|
108
|
+
- VERSION
|
109
|
+
- lib/rails_artifactor.rb
|
110
|
+
- lib/rails_artifactor/artifact.rb
|
111
|
+
- lib/rails_artifactor/artifact/base.rb
|
112
|
+
- lib/rails_artifactor/artifact/crud.rb
|
113
|
+
- lib/rails_artifactor/artifact/crud/create.rb
|
114
|
+
- lib/rails_artifactor/artifact/crud/delete.rb
|
115
|
+
- lib/rails_artifactor/artifact/crud/read.rb
|
116
|
+
- lib/rails_artifactor/artifact/crud/update.rb
|
117
|
+
- lib/rails_artifactor/artifact/file_name/artifacts.rb
|
118
|
+
- lib/rails_artifactor/artifact/file_name/migration.rb
|
119
|
+
- lib/rails_artifactor/artifact/file_name/view.rb
|
120
|
+
- lib/rails_artifactor/artifact/markers.rb
|
121
|
+
- lib/rails_artifactor/artifact/migration.rb
|
122
|
+
- lib/rails_artifactor/artifact/orm.rb
|
123
|
+
- lib/rails_artifactor/artifact/orm/active_record.rb
|
124
|
+
- lib/rails_artifactor/artifact/orm/data_mapper.rb
|
125
|
+
- lib/rails_artifactor/artifact/orm/mongo_mapper.rb
|
126
|
+
- lib/rails_artifactor/artifact/orm/mongoid.rb
|
127
|
+
- lib/rails_artifactor/artifact/orm/none.rb
|
128
|
+
- lib/rails_artifactor/artifact/view_artifact.rb
|
129
|
+
- lib/rails_artifactor/base.rb
|
130
|
+
- lib/rails_artifactor/base/crud.rb
|
131
|
+
- lib/rails_artifactor/base/crud/create.rb
|
132
|
+
- lib/rails_artifactor/base/crud/delete.rb
|
133
|
+
- lib/rails_artifactor/base/crud/read.rb
|
134
|
+
- lib/rails_artifactor/base/crud/update.rb
|
135
|
+
- lib/rails_artifactor/base/file_name.rb
|
136
|
+
- lib/rails_artifactor/macro.rb
|
137
|
+
- lib/rails_artifactor/namespaces.rb
|
138
|
+
- lib/rails_artifactor/rspec.rb
|
139
|
+
- lib/rails_artifactor/rspec/configure.rb
|
140
|
+
- lib/rails_artifactor/ruby_mutator.rb
|
141
|
+
- lib/rails_artifactor/template_language/base.rb
|
142
|
+
- lib/rails_artifactor/template_language/erb.rb
|
143
|
+
- lib/rails_artifactor/template_language/haml.rb
|
144
|
+
- lib/rails_artifactor/template_language/slim.rb
|
145
|
+
- rails_artifactor.gemspec
|
146
|
+
- spec/fixtures.rb
|
147
|
+
- spec/fixtures/app/views/account/edit.erb.html
|
148
|
+
- spec/fixtures/app/views/account/edit.html.erb
|
149
|
+
- spec/fixtures/app/views/layouts/application.erb.html
|
150
|
+
- spec/fixtures/app/views/layouts/application.html.erb
|
151
|
+
- spec/rails_artifactor/artifact/base_spec.rb
|
152
|
+
- spec/rails_artifactor/artifact/crud/controller_spec.rb
|
153
|
+
- spec/rails_artifactor/artifact/crud/helper_spec.rb
|
154
|
+
- spec/rails_artifactor/artifact/crud/mailer_spec.rb
|
155
|
+
- spec/rails_artifactor/artifact/crud/migration_spec.rb
|
156
|
+
- spec/rails_artifactor/artifact/crud/model_active_record_spec.rb
|
157
|
+
- spec/rails_artifactor/artifact/crud/model_spec.rb
|
158
|
+
- spec/rails_artifactor/artifact/crud/observer_spec.rb
|
159
|
+
- spec/rails_artifactor/artifact/crud/permit_spec.rb
|
160
|
+
- spec/rails_artifactor/artifact/crud/view_controller_action_spec.rb
|
161
|
+
- spec/rails_artifactor/artifact/crud/view_file_spec.rb
|
162
|
+
- spec/rails_artifactor/artifact/file_name/artifacts_spec.rb
|
163
|
+
- spec/rails_artifactor/artifact/file_name/migration_spec.rb
|
164
|
+
- spec/rails_artifactor/artifact/file_name/view_spec.rb
|
165
|
+
- spec/rails_artifactor/artifact/markers_spec.rb
|
166
|
+
- spec/rails_artifactor/artifact/migration_spec.rb
|
167
|
+
- spec/rails_artifactor/artifact/orm/active_record_spec.rb
|
168
|
+
- spec/rails_artifactor/artifact/orm/data_mapper_spec.rb
|
169
|
+
- spec/rails_artifactor/artifact/orm/mongo_mapper_spec.rb
|
170
|
+
- spec/rails_artifactor/artifact/orm/mongoid_spec.rb
|
171
|
+
- spec/rails_artifactor/artifact/orm/none_spec.rb
|
172
|
+
- spec/rails_artifactor/base/crud/create_spec.rb
|
173
|
+
- spec/rails_artifactor/base/crud/delete_spec.rb
|
174
|
+
- spec/rails_artifactor/base/crud/read_spec.rb
|
175
|
+
- spec/rails_artifactor/base/crud/update_spec.rb
|
176
|
+
- spec/rails_artifactor/base/file_name_spec.rb
|
177
|
+
- spec/spec_helper.rb
|
178
|
+
has_rdoc: true
|
179
|
+
homepage: http://github.com/kristianmandrup/rails_artifactor
|
180
|
+
licenses: []
|
181
|
+
post_install_message:
|
182
|
+
rdoc_options: []
|
183
|
+
require_paths:
|
184
|
+
- lib
|
185
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
186
|
+
none: false
|
187
|
+
requirements:
|
188
|
+
- - ! '>='
|
189
|
+
- !ruby/object:Gem::Version
|
190
|
+
version: '0'
|
191
|
+
segments:
|
192
|
+
- 0
|
193
|
+
hash: 303180800577034502
|
194
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
195
|
+
none: false
|
196
|
+
requirements:
|
197
|
+
- - ! '>='
|
198
|
+
- !ruby/object:Gem::Version
|
199
|
+
version: '0'
|
200
|
+
requirements: []
|
201
|
+
rubyforge_project:
|
202
|
+
rubygems_version: 1.6.1
|
203
|
+
signing_key:
|
204
|
+
specification_version: 3
|
205
|
+
summary: Helpers for handling Rails 3 artifacts
|
206
|
+
test_files:
|
207
|
+
- spec/fixtures.rb
|
208
|
+
- spec/rails_artifactor/artifact/base_spec.rb
|
209
|
+
- spec/rails_artifactor/artifact/crud/controller_spec.rb
|
210
|
+
- spec/rails_artifactor/artifact/crud/helper_spec.rb
|
211
|
+
- spec/rails_artifactor/artifact/crud/mailer_spec.rb
|
212
|
+
- spec/rails_artifactor/artifact/crud/migration_spec.rb
|
213
|
+
- spec/rails_artifactor/artifact/crud/model_active_record_spec.rb
|
214
|
+
- spec/rails_artifactor/artifact/crud/model_spec.rb
|
215
|
+
- spec/rails_artifactor/artifact/crud/observer_spec.rb
|
216
|
+
- spec/rails_artifactor/artifact/crud/permit_spec.rb
|
217
|
+
- spec/rails_artifactor/artifact/crud/view_controller_action_spec.rb
|
218
|
+
- spec/rails_artifactor/artifact/crud/view_file_spec.rb
|
219
|
+
- spec/rails_artifactor/artifact/file_name/artifacts_spec.rb
|
220
|
+
- spec/rails_artifactor/artifact/file_name/migration_spec.rb
|
221
|
+
- spec/rails_artifactor/artifact/file_name/view_spec.rb
|
222
|
+
- spec/rails_artifactor/artifact/markers_spec.rb
|
223
|
+
- spec/rails_artifactor/artifact/migration_spec.rb
|
224
|
+
- spec/rails_artifactor/artifact/orm/active_record_spec.rb
|
225
|
+
- spec/rails_artifactor/artifact/orm/data_mapper_spec.rb
|
226
|
+
- spec/rails_artifactor/artifact/orm/mongo_mapper_spec.rb
|
227
|
+
- spec/rails_artifactor/artifact/orm/mongoid_spec.rb
|
228
|
+
- spec/rails_artifactor/artifact/orm/none_spec.rb
|
229
|
+
- spec/rails_artifactor/base/crud/create_spec.rb
|
230
|
+
- spec/rails_artifactor/base/crud/delete_spec.rb
|
231
|
+
- spec/rails_artifactor/base/crud/read_spec.rb
|
232
|
+
- spec/rails_artifactor/base/crud/update_spec.rb
|
233
|
+
- spec/rails_artifactor/base/file_name_spec.rb
|
234
|
+
- spec/spec_helper.rb
|