bob-builder 0.1.0

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 (60) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +32 -0
  5. data/lib/bob/builder.rb +44 -0
  6. data/lib/bob/math.rb +7 -0
  7. data/lib/bob/meta_builder.rb +82 -0
  8. data/lib/bob/version.rb +3 -0
  9. data/lib/bob.rb +5 -0
  10. data/lib/tasks/bob_tasks.rake +4 -0
  11. data/test/dummy/README.rdoc +28 -0
  12. data/test/dummy/Rakefile +6 -0
  13. data/test/dummy/app/assets/javascripts/application.js +13 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  15. data/test/dummy/app/controllers/application_controller.rb +5 -0
  16. data/test/dummy/app/helpers/application_helper.rb +2 -0
  17. data/test/dummy/app/models/comment.rb +3 -0
  18. data/test/dummy/app/models/user.rb +3 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/test/dummy/bin/bundle +3 -0
  21. data/test/dummy/bin/rails +4 -0
  22. data/test/dummy/bin/rake +4 -0
  23. data/test/dummy/config/application.rb +25 -0
  24. data/test/dummy/config/boot.rb +5 -0
  25. data/test/dummy/config/database.yml +25 -0
  26. data/test/dummy/config/environment.rb +5 -0
  27. data/test/dummy/config/environments/development.rb +37 -0
  28. data/test/dummy/config/environments/production.rb +82 -0
  29. data/test/dummy/config/environments/test.rb +39 -0
  30. data/test/dummy/config/initializers/assets.rb +8 -0
  31. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  32. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  33. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  34. data/test/dummy/config/initializers/inflections.rb +16 -0
  35. data/test/dummy/config/initializers/mime_types.rb +4 -0
  36. data/test/dummy/config/initializers/session_store.rb +3 -0
  37. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  38. data/test/dummy/config/locales/en.yml +23 -0
  39. data/test/dummy/config/routes.rb +56 -0
  40. data/test/dummy/config/secrets.yml +22 -0
  41. data/test/dummy/config.ru +4 -0
  42. data/test/dummy/db/migrate/20150616050944_create_users.rb +10 -0
  43. data/test/dummy/db/migrate/20150616062934_create_comments.rb +9 -0
  44. data/test/dummy/db/schema.rb +34 -0
  45. data/test/dummy/db/test.sqlite3 +0 -0
  46. data/test/dummy/lib/builders/user_builder.rb +27 -0
  47. data/test/dummy/log/development.log +44 -0
  48. data/test/dummy/log/test.log +2900 -0
  49. data/test/dummy/public/404.html +67 -0
  50. data/test/dummy/public/422.html +67 -0
  51. data/test/dummy/public/500.html +66 -0
  52. data/test/dummy/public/favicon.ico +0 -0
  53. data/test/dummy/test/fixtures/comments.yml +11 -0
  54. data/test/dummy/test/fixtures/users.yml +11 -0
  55. data/test/dummy/test/models/comment_test.rb +7 -0
  56. data/test/dummy/test/models/user_test.rb +7 -0
  57. data/test/for_each_test.rb +19 -0
  58. data/test/meta_build_test.rb +40 -0
  59. data/test/test_helper.rb +15 -0
  60. metadata +180 -0
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Rails.application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: f1995a71a584ad8efbcf8b62701a9bbbe0d0ab74d6c8daae5d35bcac1d785821eb378504b7b7c7ac0f2a14238eec5449d408ce8a5991f8168e9d3ce7509f7344
15
+
16
+ test:
17
+ secret_key_base: 3665e28a4a7c83244086883fc6931a3fe624c2a537f06976a1054b6590db0d4fddab60e44ce9a5e5afe7d7befe371fc00d454cd799d394e5dd47d4674f1d467c
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -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 Rails.application
@@ -0,0 +1,10 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :name, null: false
5
+ t.string :email, null: false
6
+ t.string :avatar
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,9 @@
1
+ class CreateComments < ActiveRecord::Migration
2
+ def change
3
+ create_table :comments do |t|
4
+ t.references :user
5
+ t.string :description
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,34 @@
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 that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20150616062934) do
15
+
16
+ # These are extensions that must be enabled in order to support this database
17
+ enable_extension "plpgsql"
18
+
19
+ create_table "comments", force: true do |t|
20
+ t.integer "user_id"
21
+ t.string "description"
22
+ t.datetime "created_at"
23
+ t.datetime "updated_at"
24
+ end
25
+
26
+ create_table "users", force: true do |t|
27
+ t.string "name", null: false
28
+ t.string "email", null: false
29
+ t.string "avatar"
30
+ t.datetime "created_at"
31
+ t.datetime "updated_at"
32
+ end
33
+
34
+ end
File without changes
@@ -0,0 +1,27 @@
1
+ class UserBuilder < Bob::Builder
2
+ meta_build :user do |user|
3
+ user.name = Faker::Name.first_name
4
+ user.email = Faker::Internet.email
5
+ end
6
+
7
+ meta_build :customUser, User do |user, save, params|
8
+ user.name = params[:name]
9
+ user.email = params[:email]
10
+
11
+ user.save! if save
12
+ end
13
+
14
+ meta_build :forEachUser, User do |user|
15
+ user.name = Faker::Name.first_name
16
+ user.email = Faker::Internet.email
17
+ end
18
+
19
+ for_each :forEachUser do |user|
20
+ user.avatar = Faker::Avatar.image
21
+ end
22
+
23
+ for_each :forEachUser, build: Comment, qty: 20 do |user, comment|
24
+ comment.user = user
25
+ comment.description = Faker::Lorem.paragraph
26
+ end
27
+ end
@@ -0,0 +1,44 @@
1
+  (34.4ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
2
+  (130.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
+ Migrating to CreateUsers (20150616050944)
5
+  (0.3ms) BEGIN
6
+  (308.6ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL, "email" character varying(255) NOT NULL, "avatar" character varying(255), "created_at" timestamp, "updated_at" timestamp) 
7
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150616050944"]]
8
+  (25.9ms) COMMIT
9
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
10
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
11
+  (32.0ms) DROP TABLE "users"
12
+  (332.5ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL, "email" character varying(255) NOT NULL, "avatar" character varying(255), "created_at" timestamp, "updated_at" timestamp) 
13
+  (0.4ms) SELECT version FROM "schema_migrations"
14
+ SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
15
+  (439.9ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying(255) NOT NULL, "email" character varying(255) NOT NULL, "avatar" character varying(255), "created_at" timestamp, "updated_at" timestamp)
16
+  (8.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
17
+  (131.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18
+  (0.9ms) SELECT version FROM "schema_migrations"
19
+  (9.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150616050944')
20
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
21
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
22
+ Migrating to CreateAvatars (20150616061953)
23
+  (0.2ms) BEGIN
24
+  (0.2ms) ROLLBACK
25
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
26
+ Migrating to CreateComments (20150616062934)
27
+  (0.3ms) BEGIN
28
+  (119.5ms) CREATE TABLE "comments" ("id" serial primary key, "user_id" integer, "description" character varying(255), "created_at" timestamp, "updated_at" timestamp) 
29
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150616062934"]]
30
+  (15.0ms) COMMIT
31
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
32
+ Comment Load (0.5ms) SELECT "comments".* FROM "comments"
33
+ User Load (0.5ms) SELECT "users".* FROM "users"
34
+  (0.1ms) BEGIN
35
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:08.826690"], ["email", "he"], ["name", "ho"], ["updated_at", "2015-06-16 06:36:08.826690"]]
36
+  (26.6ms) COMMIT
37
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 1]]
38
+  (0.3ms) BEGIN
39
+ SQL (0.5ms) INSERT INTO "comments" ("created_at", "description", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2015-06-16 06:36:25.822430"], ["description", "h2"], ["updated_at", "2015-06-16 06:36:25.822430"], ["user_id", 1]]
40
+  (17.9ms) COMMIT
41
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 1]]
42
+ Comment Load (0.3ms) SELECT "comments".* FROM "comments" WHERE "comments"."user_id" = $1 [["user_id", 1]]
43
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
44
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"