acts-as-taggable-on-dynamic 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. data/.travis.yml +2 -0
  2. data/README.md +21 -1
  3. data/lib/acts_as_taggable_on_dynamic/dynamic_tag_helpers.rb +8 -7
  4. data/lib/acts_as_taggable_on_dynamic/rails/version.rb +1 -1
  5. data/samples/demo-plain/.gitignore +15 -0
  6. data/samples/demo-plain/Gemfile +42 -0
  7. data/samples/demo-plain/README.rdoc +261 -0
  8. data/samples/demo-plain/Rakefile +7 -0
  9. data/samples/demo-plain/app/assets/images/rails.png +0 -0
  10. data/samples/demo-plain/app/assets/javascripts/application.js +18 -0
  11. data/samples/demo-plain/app/assets/javascripts/locations.js.coffee +3 -0
  12. data/samples/demo-plain/app/assets/javascripts/users.js.coffee +3 -0
  13. data/samples/demo-plain/app/assets/stylesheets/application.css +13 -0
  14. data/samples/demo-plain/app/assets/stylesheets/locations.css.scss +3 -0
  15. data/samples/demo-plain/app/assets/stylesheets/scaffolds.css.scss +69 -0
  16. data/samples/demo-plain/app/assets/stylesheets/users.css.scss +3 -0
  17. data/samples/demo-plain/app/controllers/application_controller.rb +3 -0
  18. data/samples/demo-plain/app/controllers/locations_controller.rb +83 -0
  19. data/samples/demo-plain/app/controllers/users_controller.rb +83 -0
  20. data/samples/demo-plain/app/helpers/application_helper.rb +2 -0
  21. data/samples/demo-plain/app/helpers/locations_helper.rb +2 -0
  22. data/samples/demo-plain/app/helpers/users_helper.rb +2 -0
  23. data/samples/demo-plain/app/mailers/.gitkeep +0 -0
  24. data/samples/demo-plain/app/models/.gitkeep +0 -0
  25. data/samples/demo-plain/app/models/location.rb +5 -0
  26. data/samples/demo-plain/app/models/user.rb +3 -0
  27. data/samples/demo-plain/app/views/layouts/application.html.erb +14 -0
  28. data/samples/demo-plain/app/views/locations/_form.html.erb +26 -0
  29. data/samples/demo-plain/app/views/locations/edit.html.erb +6 -0
  30. data/samples/demo-plain/app/views/locations/index.html.erb +23 -0
  31. data/samples/demo-plain/app/views/locations/new.html.erb +5 -0
  32. data/samples/demo-plain/app/views/locations/show.html.erb +10 -0
  33. data/samples/demo-plain/app/views/users/_form.html.erb +21 -0
  34. data/samples/demo-plain/app/views/users/edit.html.erb +6 -0
  35. data/samples/demo-plain/app/views/users/index.html.erb +23 -0
  36. data/samples/demo-plain/app/views/users/new.html.erb +5 -0
  37. data/samples/demo-plain/app/views/users/show.html.erb +10 -0
  38. data/samples/demo-plain/config.ru +4 -0
  39. data/samples/demo-plain/config/application.rb +62 -0
  40. data/samples/demo-plain/config/boot.rb +6 -0
  41. data/samples/demo-plain/config/database.yml +25 -0
  42. data/samples/demo-plain/config/environment.rb +5 -0
  43. data/samples/demo-plain/config/environments/development.rb +37 -0
  44. data/samples/demo-plain/config/environments/production.rb +67 -0
  45. data/samples/demo-plain/config/environments/test.rb +37 -0
  46. data/samples/demo-plain/config/initializers/backtrace_silencers.rb +7 -0
  47. data/samples/demo-plain/config/initializers/inflections.rb +15 -0
  48. data/samples/demo-plain/config/initializers/mime_types.rb +5 -0
  49. data/samples/demo-plain/config/initializers/secret_token.rb +7 -0
  50. data/samples/demo-plain/config/initializers/session_store.rb +8 -0
  51. data/samples/demo-plain/config/initializers/wrap_parameters.rb +14 -0
  52. data/samples/demo-plain/config/locales/en.yml +5 -0
  53. data/samples/demo-plain/config/routes.rb +64 -0
  54. data/samples/demo-plain/db/migrate/20130430093942_acts_as_taggable_on_migration.rb +30 -0
  55. data/samples/demo-plain/db/migrate/20130430094215_create_users.rb +9 -0
  56. data/samples/demo-plain/db/migrate/20130430094229_create_locations.rb +9 -0
  57. data/samples/demo-plain/db/schema.rb +45 -0
  58. data/samples/demo-plain/db/seeds.rb +7 -0
  59. data/samples/demo-plain/doc/README_FOR_APP +2 -0
  60. data/samples/demo-plain/lib/assets/.gitkeep +0 -0
  61. data/samples/demo-plain/lib/tasks/.gitkeep +0 -0
  62. data/samples/demo-plain/log/.gitkeep +0 -0
  63. data/samples/demo-plain/public/404.html +26 -0
  64. data/samples/demo-plain/public/422.html +26 -0
  65. data/samples/demo-plain/public/500.html +25 -0
  66. data/samples/demo-plain/public/favicon.ico +0 -0
  67. data/samples/demo-plain/public/robots.txt +5 -0
  68. data/samples/demo-plain/script/rails +6 -0
  69. data/samples/demo-plain/test/fixtures/.gitkeep +0 -0
  70. data/samples/demo-plain/test/fixtures/locations.yml +7 -0
  71. data/samples/demo-plain/test/fixtures/users.yml +7 -0
  72. data/samples/demo-plain/test/functional/.gitkeep +0 -0
  73. data/samples/demo-plain/test/functional/locations_controller_test.rb +49 -0
  74. data/samples/demo-plain/test/functional/users_controller_test.rb +49 -0
  75. data/samples/demo-plain/test/integration/.gitkeep +0 -0
  76. data/samples/demo-plain/test/performance/browsing_test.rb +12 -0
  77. data/samples/demo-plain/test/test_helper.rb +13 -0
  78. data/samples/demo-plain/test/unit/.gitkeep +0 -0
  79. data/samples/demo-plain/test/unit/helpers/locations_helper_test.rb +4 -0
  80. data/samples/demo-plain/test/unit/helpers/users_helper_test.rb +4 -0
  81. data/samples/demo-plain/test/unit/location_test.rb +7 -0
  82. data/samples/demo-plain/test/unit/user_test.rb +7 -0
  83. data/samples/demo-plain/vendor/assets/javascripts/.gitkeep +0 -0
  84. data/samples/demo-plain/vendor/assets/stylesheets/.gitkeep +0 -0
  85. data/samples/demo-plain/vendor/plugins/.gitkeep +0 -0
  86. data/spec/database.yml.sample +17 -1
  87. metadata +82 -1
@@ -0,0 +1,9 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :name
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class CreateLocations < ActiveRecord::Migration
2
+ def change
3
+ create_table :locations do |t|
4
+ t.string :name
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,45 @@
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 => 20130430094229) do
15
+
16
+ create_table "locations", :force => true do |t|
17
+ t.string "name"
18
+ t.datetime "created_at", :null => false
19
+ t.datetime "updated_at", :null => false
20
+ end
21
+
22
+ create_table "taggings", :force => true do |t|
23
+ t.integer "tag_id"
24
+ t.integer "taggable_id"
25
+ t.string "taggable_type"
26
+ t.integer "tagger_id"
27
+ t.string "tagger_type"
28
+ t.string "context", :limit => 128
29
+ t.datetime "created_at"
30
+ end
31
+
32
+ add_index "taggings", ["tag_id"], :name => "index_taggings_on_tag_id"
33
+ add_index "taggings", ["taggable_id", "taggable_type", "context"], :name => "index_taggings_on_taggable_id_and_taggable_type_and_context"
34
+
35
+ create_table "tags", :force => true do |t|
36
+ t.string "name"
37
+ end
38
+
39
+ create_table "users", :force => true do |t|
40
+ t.string "name"
41
+ t.datetime "created_at", :null => false
42
+ t.datetime "updated_at", :null => false
43
+ end
44
+
45
+ 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)
@@ -0,0 +1,2 @@
1
+ Use this README file to introduce your application and point to useful places in the API for learning more.
2
+ Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
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,5 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-Agent: *
5
+ # Disallow: /
@@ -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
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ name: MyString
5
+
6
+ two:
7
+ name: MyString
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ name: MyString
5
+
6
+ two:
7
+ name: MyString
File without changes
@@ -0,0 +1,49 @@
1
+ require 'test_helper'
2
+
3
+ class LocationsControllerTest < ActionController::TestCase
4
+ setup do
5
+ @location = locations(:one)
6
+ end
7
+
8
+ test "should get index" do
9
+ get :index
10
+ assert_response :success
11
+ assert_not_nil assigns(:locations)
12
+ end
13
+
14
+ test "should get new" do
15
+ get :new
16
+ assert_response :success
17
+ end
18
+
19
+ test "should create location" do
20
+ assert_difference('Location.count') do
21
+ post :create, location: { name: @location.name }
22
+ end
23
+
24
+ assert_redirected_to location_path(assigns(:location))
25
+ end
26
+
27
+ test "should show location" do
28
+ get :show, id: @location
29
+ assert_response :success
30
+ end
31
+
32
+ test "should get edit" do
33
+ get :edit, id: @location
34
+ assert_response :success
35
+ end
36
+
37
+ test "should update location" do
38
+ put :update, id: @location, location: { name: @location.name }
39
+ assert_redirected_to location_path(assigns(:location))
40
+ end
41
+
42
+ test "should destroy location" do
43
+ assert_difference('Location.count', -1) do
44
+ delete :destroy, id: @location
45
+ end
46
+
47
+ assert_redirected_to locations_path
48
+ end
49
+ end
@@ -0,0 +1,49 @@
1
+ require 'test_helper'
2
+
3
+ class UsersControllerTest < ActionController::TestCase
4
+ setup do
5
+ @user = users(:one)
6
+ end
7
+
8
+ test "should get index" do
9
+ get :index
10
+ assert_response :success
11
+ assert_not_nil assigns(:users)
12
+ end
13
+
14
+ test "should get new" do
15
+ get :new
16
+ assert_response :success
17
+ end
18
+
19
+ test "should create user" do
20
+ assert_difference('User.count') do
21
+ post :create, user: { name: @user.name }
22
+ end
23
+
24
+ assert_redirected_to user_path(assigns(:user))
25
+ end
26
+
27
+ test "should show user" do
28
+ get :show, id: @user
29
+ assert_response :success
30
+ end
31
+
32
+ test "should get edit" do
33
+ get :edit, id: @user
34
+ assert_response :success
35
+ end
36
+
37
+ test "should update user" do
38
+ put :update, id: @user, user: { name: @user.name }
39
+ assert_redirected_to user_path(assigns(:user))
40
+ end
41
+
42
+ test "should destroy user" do
43
+ assert_difference('User.count', -1) do
44
+ delete :destroy, id: @user
45
+ end
46
+
47
+ assert_redirected_to users_path
48
+ end
49
+ end
File without changes
@@ -0,0 +1,12 @@
1
+ require 'test_helper'
2
+ require 'rails/performance_test_help'
3
+
4
+ class BrowsingTest < ActionDispatch::PerformanceTest
5
+ # Refer to the documentation for all available options
6
+ # self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory]
7
+ # :output => 'tmp/performance', :formats => [:flat] }
8
+
9
+ def test_homepage
10
+ get '/'
11
+ end
12
+ end
@@ -0,0 +1,13 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+ require File.expand_path('../../config/environment', __FILE__)
3
+ require 'rails/test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
7
+ #
8
+ # Note: You'll currently still have to declare fixtures explicitly in integration tests
9
+ # -- they do not yet inherit this setting
10
+ fixtures :all
11
+
12
+ # Add more helper methods to be used by all tests here...
13
+ end
File without changes
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class LocationsHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class UsersHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class LocationTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class UserTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
File without changes
@@ -1,3 +1,19 @@
1
1
  sqlite3:
2
2
  adapter: sqlite3
3
- database: acts_as_taggable_on.sqlite3
3
+ database: acts_as_taggable_on_dynamic.sqlite3
4
+
5
+ mysql:
6
+ adapter: mysql2
7
+ hostname: localhost
8
+ username: root
9
+ password:
10
+ database: acts_as_taggable_on_dynamic
11
+ charset: utf8
12
+
13
+ postgresql:
14
+ adapter: postgresql
15
+ hostname: localhost
16
+ username: postgres
17
+ password:
18
+ database: acts_as_taggable_on_dynamic
19
+ encoding: utf8
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts-as-taggable-on-dynamic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -184,6 +184,87 @@ files:
184
184
  - lib/acts_as_taggable_on_dynamic/taggable.rb
185
185
  - lib/acts_as_taggable_on_dynamic/utils.rb
186
186
  - lib/assets/javascripts/taggable.dynamic.js
187
+ - samples/demo-plain/.gitignore
188
+ - samples/demo-plain/Gemfile
189
+ - samples/demo-plain/README.rdoc
190
+ - samples/demo-plain/Rakefile
191
+ - samples/demo-plain/app/assets/images/rails.png
192
+ - samples/demo-plain/app/assets/javascripts/application.js
193
+ - samples/demo-plain/app/assets/javascripts/locations.js.coffee
194
+ - samples/demo-plain/app/assets/javascripts/users.js.coffee
195
+ - samples/demo-plain/app/assets/stylesheets/application.css
196
+ - samples/demo-plain/app/assets/stylesheets/locations.css.scss
197
+ - samples/demo-plain/app/assets/stylesheets/scaffolds.css.scss
198
+ - samples/demo-plain/app/assets/stylesheets/users.css.scss
199
+ - samples/demo-plain/app/controllers/application_controller.rb
200
+ - samples/demo-plain/app/controllers/locations_controller.rb
201
+ - samples/demo-plain/app/controllers/users_controller.rb
202
+ - samples/demo-plain/app/helpers/application_helper.rb
203
+ - samples/demo-plain/app/helpers/locations_helper.rb
204
+ - samples/demo-plain/app/helpers/users_helper.rb
205
+ - samples/demo-plain/app/mailers/.gitkeep
206
+ - samples/demo-plain/app/models/.gitkeep
207
+ - samples/demo-plain/app/models/location.rb
208
+ - samples/demo-plain/app/models/user.rb
209
+ - samples/demo-plain/app/views/layouts/application.html.erb
210
+ - samples/demo-plain/app/views/locations/_form.html.erb
211
+ - samples/demo-plain/app/views/locations/edit.html.erb
212
+ - samples/demo-plain/app/views/locations/index.html.erb
213
+ - samples/demo-plain/app/views/locations/new.html.erb
214
+ - samples/demo-plain/app/views/locations/show.html.erb
215
+ - samples/demo-plain/app/views/users/_form.html.erb
216
+ - samples/demo-plain/app/views/users/edit.html.erb
217
+ - samples/demo-plain/app/views/users/index.html.erb
218
+ - samples/demo-plain/app/views/users/new.html.erb
219
+ - samples/demo-plain/app/views/users/show.html.erb
220
+ - samples/demo-plain/config.ru
221
+ - samples/demo-plain/config/application.rb
222
+ - samples/demo-plain/config/boot.rb
223
+ - samples/demo-plain/config/database.yml
224
+ - samples/demo-plain/config/environment.rb
225
+ - samples/demo-plain/config/environments/development.rb
226
+ - samples/demo-plain/config/environments/production.rb
227
+ - samples/demo-plain/config/environments/test.rb
228
+ - samples/demo-plain/config/initializers/backtrace_silencers.rb
229
+ - samples/demo-plain/config/initializers/inflections.rb
230
+ - samples/demo-plain/config/initializers/mime_types.rb
231
+ - samples/demo-plain/config/initializers/secret_token.rb
232
+ - samples/demo-plain/config/initializers/session_store.rb
233
+ - samples/demo-plain/config/initializers/wrap_parameters.rb
234
+ - samples/demo-plain/config/locales/en.yml
235
+ - samples/demo-plain/config/routes.rb
236
+ - samples/demo-plain/db/migrate/20130430093942_acts_as_taggable_on_migration.rb
237
+ - samples/demo-plain/db/migrate/20130430094215_create_users.rb
238
+ - samples/demo-plain/db/migrate/20130430094229_create_locations.rb
239
+ - samples/demo-plain/db/schema.rb
240
+ - samples/demo-plain/db/seeds.rb
241
+ - samples/demo-plain/doc/README_FOR_APP
242
+ - samples/demo-plain/lib/assets/.gitkeep
243
+ - samples/demo-plain/lib/tasks/.gitkeep
244
+ - samples/demo-plain/log/.gitkeep
245
+ - samples/demo-plain/public/404.html
246
+ - samples/demo-plain/public/422.html
247
+ - samples/demo-plain/public/500.html
248
+ - samples/demo-plain/public/favicon.ico
249
+ - samples/demo-plain/public/robots.txt
250
+ - samples/demo-plain/script/rails
251
+ - samples/demo-plain/test/fixtures/.gitkeep
252
+ - samples/demo-plain/test/fixtures/locations.yml
253
+ - samples/demo-plain/test/fixtures/users.yml
254
+ - samples/demo-plain/test/functional/.gitkeep
255
+ - samples/demo-plain/test/functional/locations_controller_test.rb
256
+ - samples/demo-plain/test/functional/users_controller_test.rb
257
+ - samples/demo-plain/test/integration/.gitkeep
258
+ - samples/demo-plain/test/performance/browsing_test.rb
259
+ - samples/demo-plain/test/test_helper.rb
260
+ - samples/demo-plain/test/unit/.gitkeep
261
+ - samples/demo-plain/test/unit/helpers/locations_helper_test.rb
262
+ - samples/demo-plain/test/unit/helpers/users_helper_test.rb
263
+ - samples/demo-plain/test/unit/location_test.rb
264
+ - samples/demo-plain/test/unit/user_test.rb
265
+ - samples/demo-plain/vendor/assets/javascripts/.gitkeep
266
+ - samples/demo-plain/vendor/assets/stylesheets/.gitkeep
267
+ - samples/demo-plain/vendor/plugins/.gitkeep
187
268
  - spec/acts_as_taggable_on_dynamic_spec.rb
188
269
  - spec/database.yml.sample
189
270
  - spec/models.rb