fastaccess 0.0.3 → 0.0.4.pre

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a3e20570eefec8e62ef0adb8f4efbb42cd7d7b95
4
+ data.tar.gz: 3cd1255936c1043069e25ebe6cec9d94bdc711de
5
+ SHA512:
6
+ metadata.gz: f063f94ac919cfd92c034327fcb4ac1cb20ba0323c443ea819b819b283d64f3de1245cd3e849931d9fa3ee392870ed71312030f3270133df5c8b40b2ad1723d3
7
+ data.tar.gz: cea0303fa00536c47619e069d4eda9f38e3b3f38d81d975b1e11c6063ced7bea1bb706908f726c9a9219c06207c0d75c14de77eb16e6d05901cb69bf2780eb1d
@@ -1,4 +1,4 @@
1
1
  module Fastaccess
2
2
  # The current gem version.
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.4.pre"
4
4
  end
@@ -11,8 +11,6 @@ class SimpleString < ActiveRecord::Base
11
11
  acts_with_fastaccess_on :complex_vers_string, :auto_update => false, :versions => [[:and, 1, "foo"], [:or, 5, "bar"]]
12
12
  include Fastaccess::Mixins
13
13
 
14
- attr_accessible :some_string
15
-
16
14
  def simple_string
17
15
  "this is a simple string"
18
16
  end
@@ -43,12 +43,6 @@ module Dummy
43
43
  # like if you have constraints or database-specific column types
44
44
  # config.active_record.schema_format = :sql
45
45
 
46
- # Enforce whitelist mode for mass assignment.
47
- # This will create an empty whitelist of attributes available for mass-assignment for all models
48
- # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
49
- # parameters by using an attr_accessible or attr_protected declaration.
50
- config.active_record.whitelist_attributes = true
51
-
52
46
  # Enable the asset pipeline
53
47
  config.assets.enabled = true
54
48
 
@@ -6,8 +6,7 @@ Dummy::Application.configure do
6
6
  # since you don't have to restart the web server when you make code changes.
7
7
  config.cache_classes = false
8
8
 
9
- # Log error messages when you accidentally call methods on nil.
10
- config.whiny_nils = true
9
+ config.eager_load = false
11
10
 
12
11
  # Show full error reports and disable caching
13
12
  config.consider_all_requests_local = true
@@ -22,9 +21,6 @@ Dummy::Application.configure do
22
21
  # Only use best-standards-support built into browsers
23
22
  config.action_dispatch.best_standards_support = :builtin
24
23
 
25
- # Raise exception on mass assignment protection for Active Record models
26
- config.active_record.mass_assignment_sanitizer = :strict
27
-
28
24
  # Log the query plan for queries taking more than this (works
29
25
  # with SQLite, MySQL, and PostgreSQL)
30
26
  config.active_record.auto_explain_threshold_in_seconds = 0.5
@@ -1,6 +1,8 @@
1
1
  Dummy::Application.configure do
2
2
  # Settings specified here will take precedence over those in config/application.rb
3
3
 
4
+ config.eager_load = true
5
+
4
6
  # Code is not reloaded between requests
5
7
  config.cache_classes = true
6
8
 
@@ -11,8 +11,7 @@ Dummy::Application.configure do
11
11
  config.serve_static_assets = true
12
12
  config.static_cache_control = "public, max-age=3600"
13
13
 
14
- # Log error messages when you accidentally call methods on nil
15
- config.whiny_nils = true
14
+ config.eager_load = false
16
15
 
17
16
  # Show full error reports and disable caching
18
17
  config.consider_all_requests_local = true
@@ -29,9 +28,6 @@ Dummy::Application.configure do
29
28
  # ActionMailer::Base.deliveries array.
30
29
  config.action_mailer.delivery_method = :test
31
30
 
32
- # Raise exception on mass assignment protection for Active Record models
33
- config.active_record.mass_assignment_sanitizer = :strict
34
-
35
31
  # Print deprecation notices to the stderr
36
32
  config.active_support.deprecation = :stderr
37
33
  end
@@ -2354,3 +2354,201 @@ Connecting to database specified by database.yml
2354
2354
   (0.3ms) rollback transaction
2355
2355
   (0.0ms) begin transaction
2356
2356
   (0.0ms) rollback transaction
2357
+  (0.3ms) begin transaction
2358
+ ---------------------------------------------
2359
+ FastaccessTest: test_autoupdate_on_fastaccess
2360
+ ---------------------------------------------
2361
+  (0.7ms) SAVEPOINT active_record_1
2362
+ SQL (3.9ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00]]
2363
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2364
+  (0.1ms) SAVEPOINT active_record_1
2365
+ SQL (0.5ms) UPDATE "simple_strings" SET "some_string" = ?, "updated_at" = ? WHERE "simple_strings"."id" = 1 [["some_string", "foobar"], ["updated_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00]]
2366
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2367
+  (0.4ms) rollback transaction
2368
+  (0.1ms) begin transaction
2369
+ ---------------------------------------------------
2370
+ FastaccessTest: test_basic_versioning_functionality
2371
+ ---------------------------------------------------
2372
+  (0.1ms) SAVEPOINT active_record_1
2373
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00]]
2374
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2375
+  (0.3ms) rollback transaction
2376
+  (0.1ms) begin transaction
2377
+ -----------------------------------------------------
2378
+ FastaccessTest: test_complex_versioning_functionality
2379
+ -----------------------------------------------------
2380
+  (0.1ms) SAVEPOINT active_record_1
2381
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00]]
2382
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2383
+  (0.5ms) rollback transaction
2384
+  (0.1ms) begin transaction
2385
+ --------------------------------------------------------------
2386
+ FastaccessTest: test_deactivation_of_auto_update_functionality
2387
+ --------------------------------------------------------------
2388
+  (0.1ms) SAVEPOINT active_record_1
2389
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00]]
2390
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2391
+  (0.1ms) SAVEPOINT active_record_1
2392
+ SQL (0.4ms) UPDATE "simple_strings" SET "some_string" = ?, "updated_at" = ? WHERE "simple_strings"."id" = 1 [["some_string", "foobar"], ["updated_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00]]
2393
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2394
+  (0.4ms) rollback transaction
2395
+  (0.1ms) begin transaction
2396
+ --------------------------------------------------------------
2397
+ FastaccessTest: test_fastaccess_type_guessing_feature_on_array
2398
+ --------------------------------------------------------------
2399
+  (0.1ms) SAVEPOINT active_record_1
2400
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00]]
2401
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2402
+  (0.5ms) rollback transaction
2403
+  (0.1ms) begin transaction
2404
+ -------------------------------------------------------------
2405
+ FastaccessTest: test_fastaccess_type_guessing_feature_on_hash
2406
+ -------------------------------------------------------------
2407
+  (0.1ms) SAVEPOINT active_record_1
2408
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00]]
2409
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2410
+  (0.4ms) rollback transaction
2411
+  (0.1ms) begin transaction
2412
+ ---------------------------------------------------------------
2413
+ FastaccessTest: test_fastaccess_type_guessing_feature_on_string
2414
+ ---------------------------------------------------------------
2415
+  (0.1ms) SAVEPOINT active_record_1
2416
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00]]
2417
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2418
+  (0.4ms) rollback transaction
2419
+  (0.1ms) begin transaction
2420
+ ------------------------------------------------
2421
+ FastaccessTest: test_manual_update_on_fastaccess
2422
+ ------------------------------------------------
2423
+  (0.1ms) SAVEPOINT active_record_1
2424
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00]]
2425
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2426
+  (0.4ms) rollback transaction
2427
+  (0.1ms) begin transaction
2428
+ -----------------------------------------------------------
2429
+ FastaccessTest: test_manual_update_on_fastaccess_with_mixin
2430
+ -----------------------------------------------------------
2431
+  (0.1ms) SAVEPOINT active_record_1
2432
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00]]
2433
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2434
+  (0.5ms) rollback transaction
2435
+  (0.1ms) begin transaction
2436
+ -------------------------------------------------------------
2437
+ FastaccessTest: test_redis_write_and_read_on_parallel_methods
2438
+ -------------------------------------------------------------
2439
+  (0.1ms) SAVEPOINT active_record_1
2440
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00]]
2441
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2442
+  (0.3ms) rollback transaction
2443
+  (0.1ms) begin transaction
2444
+ ------------------------------------------------
2445
+ FastaccessTest: test_simple_redis_write_and_read
2446
+ ------------------------------------------------
2447
+  (0.0ms) SAVEPOINT active_record_1
2448
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:03:19 UTC +00:00]]
2449
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2450
+  (0.3ms) rollback transaction
2451
+  (0.1ms) begin transaction
2452
+ --------------------------
2453
+ FastaccessTest: test_truth
2454
+ --------------------------
2455
+  (0.1ms) rollback transaction
2456
+  (0.3ms) begin transaction
2457
+ ---------------------------------------------
2458
+ FastaccessTest: test_autoupdate_on_fastaccess
2459
+ ---------------------------------------------
2460
+  (0.0ms) SAVEPOINT active_record_1
2461
+ SQL (4.8ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00]]
2462
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2463
+  (0.1ms) SAVEPOINT active_record_1
2464
+ SQL (0.6ms) UPDATE "simple_strings" SET "some_string" = ?, "updated_at" = ? WHERE "simple_strings"."id" = 1 [["some_string", "foobar"], ["updated_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00]]
2465
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2466
+  (0.5ms) rollback transaction
2467
+  (0.1ms) begin transaction
2468
+ ---------------------------------------------------
2469
+ FastaccessTest: test_basic_versioning_functionality
2470
+ ---------------------------------------------------
2471
+  (0.1ms) SAVEPOINT active_record_1
2472
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00]]
2473
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2474
+  (0.7ms) rollback transaction
2475
+  (0.1ms) begin transaction
2476
+ -----------------------------------------------------
2477
+ FastaccessTest: test_complex_versioning_functionality
2478
+ -----------------------------------------------------
2479
+  (0.1ms) SAVEPOINT active_record_1
2480
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00]]
2481
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2482
+  (0.4ms) rollback transaction
2483
+  (0.1ms) begin transaction
2484
+ --------------------------------------------------------------
2485
+ FastaccessTest: test_deactivation_of_auto_update_functionality
2486
+ --------------------------------------------------------------
2487
+  (0.1ms) SAVEPOINT active_record_1
2488
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00]]
2489
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2490
+  (0.1ms) SAVEPOINT active_record_1
2491
+ SQL (0.5ms) UPDATE "simple_strings" SET "some_string" = ?, "updated_at" = ? WHERE "simple_strings"."id" = 1 [["some_string", "foobar"], ["updated_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00]]
2492
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2493
+  (0.4ms) rollback transaction
2494
+  (0.1ms) begin transaction
2495
+ --------------------------------------------------------------
2496
+ FastaccessTest: test_fastaccess_type_guessing_feature_on_array
2497
+ --------------------------------------------------------------
2498
+  (0.1ms) SAVEPOINT active_record_1
2499
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00]]
2500
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2501
+  (0.3ms) rollback transaction
2502
+  (0.1ms) begin transaction
2503
+ -------------------------------------------------------------
2504
+ FastaccessTest: test_fastaccess_type_guessing_feature_on_hash
2505
+ -------------------------------------------------------------
2506
+  (0.1ms) SAVEPOINT active_record_1
2507
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00]]
2508
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2509
+  (0.5ms) rollback transaction
2510
+  (0.1ms) begin transaction
2511
+ ---------------------------------------------------------------
2512
+ FastaccessTest: test_fastaccess_type_guessing_feature_on_string
2513
+ ---------------------------------------------------------------
2514
+  (0.1ms) SAVEPOINT active_record_1
2515
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00]]
2516
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2517
+  (0.4ms) rollback transaction
2518
+  (0.1ms) begin transaction
2519
+ ------------------------------------------------
2520
+ FastaccessTest: test_manual_update_on_fastaccess
2521
+ ------------------------------------------------
2522
+  (0.1ms) SAVEPOINT active_record_1
2523
+ SQL (0.5ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00]]
2524
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2525
+  (0.5ms) rollback transaction
2526
+  (0.1ms) begin transaction
2527
+ -----------------------------------------------------------
2528
+ FastaccessTest: test_manual_update_on_fastaccess_with_mixin
2529
+ -----------------------------------------------------------
2530
+  (0.1ms) SAVEPOINT active_record_1
2531
+ SQL (0.6ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00]]
2532
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2533
+  (0.7ms) rollback transaction
2534
+  (0.1ms) begin transaction
2535
+ -------------------------------------------------------------
2536
+ FastaccessTest: test_redis_write_and_read_on_parallel_methods
2537
+ -------------------------------------------------------------
2538
+  (0.1ms) SAVEPOINT active_record_1
2539
+ SQL (0.4ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00]]
2540
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2541
+  (0.6ms) rollback transaction
2542
+  (0.1ms) begin transaction
2543
+ ------------------------------------------------
2544
+ FastaccessTest: test_simple_redis_write_and_read
2545
+ ------------------------------------------------
2546
+  (0.0ms) SAVEPOINT active_record_1
2547
+ SQL (0.3ms) INSERT INTO "simple_strings" ("created_at", "updated_at") VALUES (?, ?) [["created_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00], ["updated_at", Tue, 04 Feb 2014 12:08:22 UTC +00:00]]
2548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2549
+  (0.3ms) rollback transaction
2550
+  (0.1ms) begin transaction
2551
+ --------------------------
2552
+ FastaccessTest: test_truth
2553
+ --------------------------
2554
+  (0.0ms) rollback transaction
metadata CHANGED
@@ -1,49 +1,63 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastaccess
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
5
- prerelease:
4
+ version: 0.0.4.pre
6
5
  platform: ruby
7
6
  authors:
8
7
  - Tim Reddehase
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-02-16 00:00:00.000000000 Z
11
+ date: 2014-02-04 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rails
16
- requirement: &70219308571800 !ruby/object:Gem::Requirement
17
- none: false
15
+ requirement: !ruby/object:Gem::Requirement
18
16
  requirements:
19
- - - ~>
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: '3.2'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '4.1'
22
23
  type: :runtime
23
24
  prerelease: false
24
- version_requirements: *70219308571800
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '3.2'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '4.1'
25
33
  - !ruby/object:Gem::Dependency
26
34
  name: redis
27
- requirement: &70219308571300 !ruby/object:Gem::Requirement
28
- none: false
35
+ requirement: !ruby/object:Gem::Requirement
29
36
  requirements:
30
- - - ~>
37
+ - - "~>"
31
38
  - !ruby/object:Gem::Version
32
39
  version: '3.0'
33
40
  type: :runtime
34
41
  prerelease: false
35
- version_requirements: *70219308571300
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '3.0'
36
47
  - !ruby/object:Gem::Dependency
37
48
  name: sqlite3
38
- requirement: &70219308570920 !ruby/object:Gem::Requirement
39
- none: false
49
+ requirement: !ruby/object:Gem::Requirement
40
50
  requirements:
41
- - - ! '>='
51
+ - - "~>"
42
52
  - !ruby/object:Gem::Version
43
- version: '0'
53
+ version: '1.3'
44
54
  type: :development
45
55
  prerelease: false
46
- version_requirements: *70219308570920
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '1.3'
47
61
  description: rails model-helper to store generated content in redis, for fastaccess
48
62
  email:
49
63
  - robustus@rightsrestricted.com
@@ -51,23 +65,26 @@ executables: []
51
65
  extensions: []
52
66
  extra_rdoc_files: []
53
67
  files:
68
+ - MIT-LICENSE
69
+ - README.md
70
+ - Rakefile
71
+ - lib/fastaccess.rb
54
72
  - lib/fastaccess/acts_with_fastaccess_on.rb
55
73
  - lib/fastaccess/fastaccess.rb
56
74
  - lib/fastaccess/mixins.rb
57
75
  - lib/fastaccess/version.rb
58
- - lib/fastaccess.rb
59
76
  - lib/generators/fastaccess/initialize_generator.rb
60
77
  - lib/generators/fastaccess/templates/initializer.rb
61
78
  - lib/tasks/fastaccess_tasks.rake
62
- - MIT-LICENSE
63
- - Rakefile
64
- - README.md
79
+ - test/dummy/README.rdoc
80
+ - test/dummy/Rakefile
65
81
  - test/dummy/app/assets/javascripts/application.js
66
82
  - test/dummy/app/assets/stylesheets/application.css
67
83
  - test/dummy/app/controllers/application_controller.rb
68
84
  - test/dummy/app/helpers/application_helper.rb
69
85
  - test/dummy/app/models/simple_string.rb
70
86
  - test/dummy/app/views/layouts/application.html.erb
87
+ - test/dummy/config.ru
71
88
  - test/dummy/config/application.rb
72
89
  - test/dummy/config/boot.rb
73
90
  - test/dummy/config/database.yml
@@ -85,7 +102,6 @@ files:
85
102
  - test/dummy/config/initializers/wrap_parameters.rb
86
103
  - test/dummy/config/locales/en.yml
87
104
  - test/dummy/config/routes.rb
88
- - test/dummy/config.ru
89
105
  - test/dummy/db/development.sqlite3
90
106
  - test/dummy/db/migrate/20130123183844_create_simple_strings.rb
91
107
  - test/dummy/db/migrate/20130124180635_add_some_string_to_simple_string.rb
@@ -97,36 +113,34 @@ files:
97
113
  - test/dummy/public/422.html
98
114
  - test/dummy/public/500.html
99
115
  - test/dummy/public/favicon.ico
100
- - test/dummy/Rakefile
101
- - test/dummy/README.rdoc
102
116
  - test/dummy/script/rails
103
117
  - test/dummy/test/fixtures/simple_strings.yml
104
118
  - test/dummy/test/unit/simple_string_test.rb
105
119
  - test/fastaccess_test.rb
106
120
  - test/test_helper.rb
107
121
  homepage: https://github.com/0robustus1/fastaccess
108
- licenses: []
122
+ licenses:
123
+ - MIT
124
+ metadata: {}
109
125
  post_install_message:
110
126
  rdoc_options: []
111
127
  require_paths:
112
128
  - lib
113
129
  required_ruby_version: !ruby/object:Gem::Requirement
114
- none: false
115
130
  requirements:
116
- - - ! '>='
131
+ - - ">="
117
132
  - !ruby/object:Gem::Version
118
133
  version: '0'
119
134
  required_rubygems_version: !ruby/object:Gem::Requirement
120
- none: false
121
135
  requirements:
122
- - - ! '>='
136
+ - - ">"
123
137
  - !ruby/object:Gem::Version
124
- version: '0'
138
+ version: 1.3.1
125
139
  requirements: []
126
140
  rubyforge_project:
127
- rubygems_version: 1.8.17
141
+ rubygems_version: 2.2.0
128
142
  signing_key:
129
- specification_version: 3
143
+ specification_version: 4
130
144
  summary: allows storing of generated content via redis
131
145
  test_files:
132
146
  - test/dummy/app/assets/javascripts/application.js
@@ -171,4 +185,3 @@ test_files:
171
185
  - test/dummy/test/unit/simple_string_test.rb
172
186
  - test/fastaccess_test.rb
173
187
  - test/test_helper.rb
174
- has_rdoc: