kentouzu 0.0.7 → 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.
Files changed (59) hide show
  1. data/.gitignore +3 -0
  2. data/.ruby-gemset +1 -0
  3. data/.ruby-version +1 -0
  4. data/CHANGELOG.md +5 -0
  5. data/Gemfile.lock +82 -33
  6. data/kentouzu.gemspec +8 -1
  7. data/lib/kentouzu/draft.rb +1 -1
  8. data/lib/kentouzu/version.rb +1 -1
  9. data/spec/dummy/Rakefile +7 -0
  10. data/spec/dummy/app/assets/images/rails.png +0 -0
  11. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  12. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  13. data/spec/dummy/app/controllers/application_controller.rb +7 -0
  14. data/spec/dummy/app/controllers/messages_controller.rb +75 -0
  15. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  16. data/spec/dummy/app/helpers/messages_helper.rb +2 -0
  17. data/spec/dummy/app/mailers/.gitkeep +0 -0
  18. data/spec/dummy/app/models/message.rb +5 -0
  19. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  20. data/spec/dummy/app/views/messages/_form.html.erb +22 -0
  21. data/spec/dummy/app/views/messages/_message.html.erb +8 -0
  22. data/spec/dummy/app/views/messages/edit.html.erb +3 -0
  23. data/spec/dummy/app/views/messages/index.html.erb +6 -0
  24. data/spec/dummy/app/views/messages/new.html.erb +3 -0
  25. data/spec/dummy/app/views/messages/show.html.erb +4 -0
  26. data/spec/dummy/config/application.rb +70 -0
  27. data/spec/dummy/config/boot.rb +6 -0
  28. data/spec/dummy/config/database.yml +25 -0
  29. data/spec/dummy/config/environment.rb +5 -0
  30. data/spec/dummy/config/environments/development.rb +37 -0
  31. data/spec/dummy/config/environments/production.rb +67 -0
  32. data/spec/dummy/config/environments/test.rb +37 -0
  33. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/spec/dummy/config/initializers/inflections.rb +15 -0
  35. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  36. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  37. data/spec/dummy/config/initializers/session_store.rb +8 -0
  38. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/spec/dummy/config/locales/en.yml +5 -0
  40. data/spec/dummy/config/routes.rb +5 -0
  41. data/spec/dummy/config.ru +4 -0
  42. data/spec/dummy/db/migrate/2013051313101708_create_messages.rb +19 -0
  43. data/spec/dummy/db/schema.rb +31 -0
  44. data/spec/dummy/db/seeds.rb +7 -0
  45. data/spec/dummy/lib/assets/.gitkeep +0 -0
  46. data/spec/dummy/lib/tasks/.gitkeep +0 -0
  47. data/spec/dummy/log/.gitkeep +0 -0
  48. data/spec/dummy/public/404.html +26 -0
  49. data/spec/dummy/public/422.html +26 -0
  50. data/spec/dummy/public/500.html +25 -0
  51. data/spec/dummy/public/favicon.ico +0 -0
  52. data/spec/dummy/script/rails +6 -0
  53. data/spec/dummy/tmp/cache/.gitkeep +0 -0
  54. data/spec/kentouzu/controller_spec.rb +0 -0
  55. data/spec/kentouzu/model_spec.rb +6 -0
  56. data/spec/spec_helper.rb +32 -3
  57. metadata +219 -6
  58. data/.rvmrc +0 -80
  59. /data/spec/{kentouzu/kentouzu_spec.rb → kentouzu_spec.rb} +0 -0
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
37
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '22049ee90e16e6dcc10f4d855f7869c5802435f25ca2e34a5f26574d6944379870f06c6a302a938ed1fa38659406cf5094cff01414377404a9f7cf8f306720f4'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters :format => [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,5 @@
1
+ Dummy::Application.routes.draw do
2
+ resources :messages
3
+
4
+ root :to => 'messages#index'
5
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,19 @@
1
+ class CreateMessages < ActiveRecord::Migration
2
+ def change
3
+ create_table :messages do |t|
4
+ t.string :first_name, :null => false, :default => ''
5
+ t.string :last_name, :null => false, :default => ''
6
+ t.string :subject, :null => false, :default => ''
7
+ t.text :body
8
+ t.timestamps
9
+ end
10
+
11
+ change_table :messages do |t|
12
+ t.index :first_name
13
+ t.index :last_name
14
+ t.index :subject
15
+ t.index :created_at
16
+ t.index :updated_at
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,31 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 2013051313101708) do
15
+
16
+ create_table "messages", :force => true do |t|
17
+ t.string "first_name", :default => "", :null => false
18
+ t.string "last_name", :default => "", :null => false
19
+ t.string "subject", :default => "", :null => false
20
+ t.text "body"
21
+ t.datetime "created_at", :null => false
22
+ t.datetime "updated_at", :null => false
23
+ end
24
+
25
+ add_index "messages", ["created_at"], :name => "index_messages_on_created_at"
26
+ add_index "messages", ["first_name"], :name => "index_messages_on_first_name"
27
+ add_index "messages", ["last_name"], :name => "index_messages_on_last_name"
28
+ add_index "messages", ["subject"], :name => "index_messages_on_subject"
29
+ add_index "messages", ["updated_at"], :name => "index_messages_on_updated_at"
30
+
31
+ end
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
7
+ # Mayor.create(name: 'Emanuel', city: cities.first)
File without changes
File without changes
File without changes
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
File without changes
File without changes
@@ -0,0 +1,6 @@
1
+ # encoding: utf-8
2
+ require 'spec_helper.rb'
3
+
4
+ describe Kentouzu::Model do
5
+
6
+ end
data/spec/spec_helper.rb CHANGED
@@ -1,6 +1,35 @@
1
1
  # encoding: utf-8
2
2
 
3
- require 'rails/railtie'
4
- require 'active_record'
3
+ ENV['RAILS_ENV'] = 'test'
5
4
 
6
- require 'kentouzu'
5
+ require File.expand_path('../dummy/config/environment.rb', __FILE__)
6
+ require 'rspec/rails'
7
+ require 'shoulda/matchers/integrations/rspec'
8
+ require 'capybara/rspec'
9
+ require 'database_cleaner'
10
+
11
+ Rails.backtrace_cleaner.remove_silencers!
12
+
13
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
14
+
15
+ RSpec.configure do |config|
16
+ config.mock_with :rspec
17
+
18
+ config.before :suite do
19
+ DatabaseCleaner.strategy = :transaction
20
+ DatabaseCleaner.clean_with :truncation
21
+ end
22
+
23
+ config.before :each do
24
+ DatabaseCleaner.start
25
+ end
26
+
27
+ config.after :each do
28
+ DatabaseCleaner.clean
29
+ end
30
+ end
31
+
32
+ #require 'rails/railtie'
33
+ #require 'active_record'
34
+ #
35
+ #require 'kentouzu'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kentouzu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-26 00:00:00.000000000 Z
12
+ date: 2013-05-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railties
@@ -44,7 +44,119 @@ dependencies:
44
44
  - !ruby/object:Gem::Version
45
45
  version: '3.0'
46
46
  - !ruby/object:Gem::Dependency
47
- name: rspec
47
+ name: capybara
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: database_cleaner
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: jquery-rails
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: rake
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: rails
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '3.2'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '3.2'
126
+ - !ruby/object:Gem::Dependency
127
+ name: rspec-rails
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ! '>='
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ - !ruby/object:Gem::Dependency
143
+ name: shoulda-matchers
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ! '>='
148
+ - !ruby/object:Gem::Version
149
+ version: '0'
150
+ type: :development
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ! '>='
156
+ - !ruby/object:Gem::Version
157
+ version: '0'
158
+ - !ruby/object:Gem::Dependency
159
+ name: sqlite3
48
160
  requirement: !ruby/object:Gem::Requirement
49
161
  none: false
50
162
  requirements:
@@ -68,7 +180,8 @@ extra_rdoc_files: []
68
180
  files:
69
181
  - .gitignore
70
182
  - .rspec
71
- - .rvmrc
183
+ - .ruby-gemset
184
+ - .ruby-version
72
185
  - CHANGELOG.md
73
186
  - Gemfile
74
187
  - Gemfile.lock
@@ -83,7 +196,54 @@ files:
83
196
  - lib/kentouzu/draft.rb
84
197
  - lib/kentouzu/has_drafts.rb
85
198
  - lib/kentouzu/version.rb
86
- - spec/kentouzu/kentouzu_spec.rb
199
+ - spec/dummy/Rakefile
200
+ - spec/dummy/app/assets/images/rails.png
201
+ - spec/dummy/app/assets/javascripts/application.js
202
+ - spec/dummy/app/assets/stylesheets/application.css
203
+ - spec/dummy/app/controllers/application_controller.rb
204
+ - spec/dummy/app/controllers/messages_controller.rb
205
+ - spec/dummy/app/helpers/application_helper.rb
206
+ - spec/dummy/app/helpers/messages_helper.rb
207
+ - spec/dummy/app/mailers/.gitkeep
208
+ - spec/dummy/app/models/message.rb
209
+ - spec/dummy/app/views/layouts/application.html.erb
210
+ - spec/dummy/app/views/messages/_form.html.erb
211
+ - spec/dummy/app/views/messages/_message.html.erb
212
+ - spec/dummy/app/views/messages/edit.html.erb
213
+ - spec/dummy/app/views/messages/index.html.erb
214
+ - spec/dummy/app/views/messages/new.html.erb
215
+ - spec/dummy/app/views/messages/show.html.erb
216
+ - spec/dummy/config.ru
217
+ - spec/dummy/config/application.rb
218
+ - spec/dummy/config/boot.rb
219
+ - spec/dummy/config/database.yml
220
+ - spec/dummy/config/environment.rb
221
+ - spec/dummy/config/environments/development.rb
222
+ - spec/dummy/config/environments/production.rb
223
+ - spec/dummy/config/environments/test.rb
224
+ - spec/dummy/config/initializers/backtrace_silencers.rb
225
+ - spec/dummy/config/initializers/inflections.rb
226
+ - spec/dummy/config/initializers/mime_types.rb
227
+ - spec/dummy/config/initializers/secret_token.rb
228
+ - spec/dummy/config/initializers/session_store.rb
229
+ - spec/dummy/config/initializers/wrap_parameters.rb
230
+ - spec/dummy/config/locales/en.yml
231
+ - spec/dummy/config/routes.rb
232
+ - spec/dummy/db/migrate/2013051313101708_create_messages.rb
233
+ - spec/dummy/db/schema.rb
234
+ - spec/dummy/db/seeds.rb
235
+ - spec/dummy/lib/assets/.gitkeep
236
+ - spec/dummy/lib/tasks/.gitkeep
237
+ - spec/dummy/log/.gitkeep
238
+ - spec/dummy/public/404.html
239
+ - spec/dummy/public/422.html
240
+ - spec/dummy/public/500.html
241
+ - spec/dummy/public/favicon.ico
242
+ - spec/dummy/script/rails
243
+ - spec/dummy/tmp/cache/.gitkeep
244
+ - spec/kentouzu/controller_spec.rb
245
+ - spec/kentouzu/model_spec.rb
246
+ - spec/kentouzu_spec.rb
87
247
  - spec/spec_helper.rb
88
248
  homepage: https://github.com/seaneshbaugh/kentouzu
89
249
  licenses: []
@@ -97,12 +257,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
97
257
  - - ! '>='
98
258
  - !ruby/object:Gem::Version
99
259
  version: '0'
260
+ segments:
261
+ - 0
262
+ hash: 3721753059103140299
100
263
  required_rubygems_version: !ruby/object:Gem::Requirement
101
264
  none: false
102
265
  requirements:
103
266
  - - ! '>='
104
267
  - !ruby/object:Gem::Version
105
268
  version: '0'
269
+ segments:
270
+ - 0
271
+ hash: 3721753059103140299
106
272
  requirements: []
107
273
  rubyforge_project: kentouzu
108
274
  rubygems_version: 1.8.25
@@ -110,5 +276,52 @@ signing_key:
110
276
  specification_version: 3
111
277
  summary: Add drafts to ActiveRecord models.
112
278
  test_files:
113
- - spec/kentouzu/kentouzu_spec.rb
279
+ - spec/dummy/Rakefile
280
+ - spec/dummy/app/assets/images/rails.png
281
+ - spec/dummy/app/assets/javascripts/application.js
282
+ - spec/dummy/app/assets/stylesheets/application.css
283
+ - spec/dummy/app/controllers/application_controller.rb
284
+ - spec/dummy/app/controllers/messages_controller.rb
285
+ - spec/dummy/app/helpers/application_helper.rb
286
+ - spec/dummy/app/helpers/messages_helper.rb
287
+ - spec/dummy/app/mailers/.gitkeep
288
+ - spec/dummy/app/models/message.rb
289
+ - spec/dummy/app/views/layouts/application.html.erb
290
+ - spec/dummy/app/views/messages/_form.html.erb
291
+ - spec/dummy/app/views/messages/_message.html.erb
292
+ - spec/dummy/app/views/messages/edit.html.erb
293
+ - spec/dummy/app/views/messages/index.html.erb
294
+ - spec/dummy/app/views/messages/new.html.erb
295
+ - spec/dummy/app/views/messages/show.html.erb
296
+ - spec/dummy/config.ru
297
+ - spec/dummy/config/application.rb
298
+ - spec/dummy/config/boot.rb
299
+ - spec/dummy/config/database.yml
300
+ - spec/dummy/config/environment.rb
301
+ - spec/dummy/config/environments/development.rb
302
+ - spec/dummy/config/environments/production.rb
303
+ - spec/dummy/config/environments/test.rb
304
+ - spec/dummy/config/initializers/backtrace_silencers.rb
305
+ - spec/dummy/config/initializers/inflections.rb
306
+ - spec/dummy/config/initializers/mime_types.rb
307
+ - spec/dummy/config/initializers/secret_token.rb
308
+ - spec/dummy/config/initializers/session_store.rb
309
+ - spec/dummy/config/initializers/wrap_parameters.rb
310
+ - spec/dummy/config/locales/en.yml
311
+ - spec/dummy/config/routes.rb
312
+ - spec/dummy/db/migrate/2013051313101708_create_messages.rb
313
+ - spec/dummy/db/schema.rb
314
+ - spec/dummy/db/seeds.rb
315
+ - spec/dummy/lib/assets/.gitkeep
316
+ - spec/dummy/lib/tasks/.gitkeep
317
+ - spec/dummy/log/.gitkeep
318
+ - spec/dummy/public/404.html
319
+ - spec/dummy/public/422.html
320
+ - spec/dummy/public/500.html
321
+ - spec/dummy/public/favicon.ico
322
+ - spec/dummy/script/rails
323
+ - spec/dummy/tmp/cache/.gitkeep
324
+ - spec/kentouzu/controller_spec.rb
325
+ - spec/kentouzu/model_spec.rb
326
+ - spec/kentouzu_spec.rb
114
327
  - spec/spec_helper.rb