librato-rails 0.7.1 → 0.7.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/librato/rails/version.rb +1 -1
- data/lib/librato/rails.rb +19 -15
- data/test/dummy/log/test.log +248 -0
- metadata +6 -6
data/lib/librato/rails.rb
CHANGED
@@ -54,13 +54,17 @@ module Librato
|
|
54
54
|
|
55
55
|
# detect / update configuration
|
56
56
|
def check_config
|
57
|
+
self.log_level = ENV['LIBRATO_METRICS_LOG_LEVEL'] if ENV['LIBRATO_METRICS_LOG_LEVEL']
|
57
58
|
if self.config_file && File.exists?(self.config_file)
|
58
|
-
log :debug, "
|
59
|
-
env_specific = YAML.load(ERB.new(File.read(config_file)).result)[::Rails.env]
|
60
|
-
|
61
|
-
|
59
|
+
log :debug, "configuring with librato.yml; ignoring environment variables.."
|
60
|
+
if env_specific = YAML.load(ERB.new(File.read(config_file)).result)[::Rails.env]
|
61
|
+
settable = CONFIG_SETTABLE & env_specific.keys
|
62
|
+
settable.each { |key| self.send("#{key}=", env_specific[key]) }
|
63
|
+
else
|
64
|
+
log :debug, "current environment not in config file, halting"
|
65
|
+
end
|
62
66
|
else
|
63
|
-
log :debug, "
|
67
|
+
log :debug, "using environment variables for configuration.."
|
64
68
|
%w{user token source log_level}.each do |settable|
|
65
69
|
env_var = "LIBRATO_METRICS_#{settable.upcase}"
|
66
70
|
send("#{settable}=", ENV[env_var]) if ENV[env_var]
|
@@ -92,7 +96,7 @@ module Librato
|
|
92
96
|
def flush
|
93
97
|
log :debug, "flushing pid #{@pid} (#{Time.now}).."
|
94
98
|
start = Time.now
|
95
|
-
queue = client.new_queue(:source => qualified_source,
|
99
|
+
queue = client.new_queue(:source => qualified_source,
|
96
100
|
:prefix => self.prefix, :skip_measurement_times => true)
|
97
101
|
# thread safety is handled internally for both stores
|
98
102
|
counters.flush_to(queue)
|
@@ -197,13 +201,6 @@ module Librato
|
|
197
201
|
FORKING_SERVERS.include?(app_server)
|
198
202
|
end
|
199
203
|
|
200
|
-
# there isn't anything in the environment before the
|
201
|
-
# first request to know if we're running on heroku, but
|
202
|
-
# they set all hostnames to UUIDs.
|
203
|
-
def implicit_source_on_heroku?
|
204
|
-
!explicit_source && on_heroku
|
205
|
-
end
|
206
|
-
|
207
204
|
def logger
|
208
205
|
@logger ||= if on_heroku
|
209
206
|
logger = Logger.new(STDOUT)
|
@@ -239,8 +236,15 @@ module Librato
|
|
239
236
|
end
|
240
237
|
|
241
238
|
def should_start?
|
242
|
-
|
243
|
-
|
239
|
+
if !self.user || !self.token
|
240
|
+
log :debug, 'credentials not present, halting..'
|
241
|
+
false
|
242
|
+
elsif !explicit_source && on_heroku
|
243
|
+
log :debug, 'source must be set, halting..'
|
244
|
+
false
|
245
|
+
else
|
246
|
+
true
|
247
|
+
end
|
244
248
|
end
|
245
249
|
|
246
250
|
def source_is_uuid?(source)
|
data/test/dummy/log/test.log
CHANGED
@@ -4299,3 +4299,251 @@ Completed 200 OK in 302ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
|
4299
4299
|
[1m[35mSQL (0.1ms)[0m DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
|
4300
4300
|
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4301
4301
|
[1m[35m (0.6ms)[0m rollback transaction
|
4302
|
+
Connecting to database specified by database.yml
|
4303
|
+
[1m[36m (0.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
4304
|
+
Migrating to CreateUsers (20120719231810)
|
4305
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4306
|
+
|
4307
|
+
|
4308
|
+
Started GET "/custom" for 127.0.0.1 at 2012-11-06 09:33:21 -0600
|
4309
|
+
Processing by HomeController#custom as HTML
|
4310
|
+
Rendered text template (0.0ms)
|
4311
|
+
Completed 200 OK in 38ms (Views: 10.9ms | ActiveRecord: 0.3ms)
|
4312
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4313
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4314
|
+
|
4315
|
+
|
4316
|
+
Started GET "/custom" for 127.0.0.1 at 2012-11-06 09:33:21 -0600
|
4317
|
+
Processing by HomeController#custom as HTML
|
4318
|
+
Rendered text template (0.0ms)
|
4319
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
4320
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4321
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4322
|
+
|
4323
|
+
|
4324
|
+
Started GET "/custom" for 127.0.0.1 at 2012-11-06 09:33:21 -0600
|
4325
|
+
Processing by HomeController#custom as HTML
|
4326
|
+
Rendered text template (0.0ms)
|
4327
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
4328
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4329
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4330
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4331
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4332
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4333
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4334
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4335
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4336
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4337
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4338
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4339
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4340
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4341
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4342
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4343
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4344
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4345
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4346
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4347
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4348
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4349
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4350
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4351
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4352
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4353
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4354
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4355
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4356
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4357
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4358
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4359
|
+
[1m[35mSQL (8.8ms)[0m INSERT INTO "users" ("created_at", "email", "password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 06 Nov 2012 15:33:22 UTC +00:00], ["email", "foo@foo.com"], ["password", "wow"], ["updated_at", Tue, 06 Nov 2012 15:33:22 UTC +00:00]]
|
4360
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4361
|
+
Rendered user_mailer/welcome_email.text.erb (2.5ms)
|
4362
|
+
|
4363
|
+
Sent mail to foo@foo.com (52ms)
|
4364
|
+
Date: Tue, 06 Nov 2012 09:33:23 -0600
|
4365
|
+
From: from@librato-rails.com
|
4366
|
+
To: foo@foo.com
|
4367
|
+
Message-ID: <50992dc36690_194b3fd788c34cdc773e@Arcas.local.mail>
|
4368
|
+
Subject: Why Howdy!
|
4369
|
+
Mime-Version: 1.0
|
4370
|
+
Content-Type: text/plain;
|
4371
|
+
charset=UTF-8
|
4372
|
+
Content-Transfer-Encoding: 7bit
|
4373
|
+
|
4374
|
+
This is a sample email, yay!
|
4375
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
4376
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4377
|
+
|
4378
|
+
|
4379
|
+
Started GET "/" for 127.0.0.1 at 2012-11-06 09:33:23 -0600
|
4380
|
+
Processing by HomeController#index as HTML
|
4381
|
+
Rendered home/index.html.erb within layouts/application (0.5ms)
|
4382
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
4383
|
+
|
4384
|
+
|
4385
|
+
Started GET "/status/204" for 127.0.0.1 at 2012-11-06 09:33:23 -0600
|
4386
|
+
Processing by StatusController#index as HTML
|
4387
|
+
Parameters: {"code"=>"204"}
|
4388
|
+
Rendered text template (0.0ms)
|
4389
|
+
Completed 204 No Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
4390
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4391
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4392
|
+
|
4393
|
+
|
4394
|
+
Started GET "/" for 127.0.0.1 at 2012-11-06 09:33:23 -0600
|
4395
|
+
Processing by HomeController#index as HTML
|
4396
|
+
Rendered home/index.html.erb within layouts/application (0.1ms)
|
4397
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
4398
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4399
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4400
|
+
|
4401
|
+
|
4402
|
+
Started GET "/exception" for 127.0.0.1 at 2012-11-06 09:33:23 -0600
|
4403
|
+
Processing by HomeController#boom as HTML
|
4404
|
+
Completed 500 Internal Server Error in 1ms
|
4405
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4406
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4407
|
+
|
4408
|
+
|
4409
|
+
Started GET "/slow" for 127.0.0.1 at 2012-11-06 09:33:23 -0600
|
4410
|
+
Processing by HomeController#slow as HTML
|
4411
|
+
Rendered text template (0.0ms)
|
4412
|
+
Completed 200 OK in 302ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4413
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4414
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4415
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4416
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "password", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 06 Nov 2012 15:33:23 UTC +00:00], ["email", "foo@foo.com"], ["password", "wow"], ["updated_at", Tue, 06 Nov 2012 15:33:23 UTC +00:00]]
|
4417
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4418
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'foo@foo.com' LIMIT 1[0m
|
4419
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4420
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "users" SET "password" = 'new password', "updated_at" = '2012-11-06 15:33:23.405283' WHERE "users"."id" = 1[0m
|
4421
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4422
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4423
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
|
4424
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4425
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
4426
|
+
Connecting to database specified by database.yml
|
4427
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
4428
|
+
Migrating to CreateUsers (20120719231810)
|
4429
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4430
|
+
|
4431
|
+
|
4432
|
+
Started GET "/custom" for 127.0.0.1 at 2012-11-06 10:06:37 -0600
|
4433
|
+
Processing by HomeController#custom as HTML
|
4434
|
+
Rendered text template (0.0ms)
|
4435
|
+
Completed 200 OK in 36ms (Views: 11.4ms | ActiveRecord: 0.3ms)
|
4436
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4437
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4438
|
+
|
4439
|
+
|
4440
|
+
Started GET "/custom" for 127.0.0.1 at 2012-11-06 10:06:38 -0600
|
4441
|
+
Processing by HomeController#custom as HTML
|
4442
|
+
Rendered text template (0.0ms)
|
4443
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4444
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4445
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4446
|
+
|
4447
|
+
|
4448
|
+
Started GET "/custom" for 127.0.0.1 at 2012-11-06 10:06:38 -0600
|
4449
|
+
Processing by HomeController#custom as HTML
|
4450
|
+
Rendered text template (0.0ms)
|
4451
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
4452
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4453
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4454
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4455
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4456
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4457
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4458
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4459
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4460
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4461
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4462
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4463
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4464
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4465
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4466
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4467
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4468
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4469
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4470
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4471
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4472
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4473
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4474
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4475
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4476
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4477
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4478
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4479
|
+
[1m[35m (0.0ms)[0m begin transaction
|
4480
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
4481
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4482
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4483
|
+
[1m[35mSQL (6.4ms)[0m INSERT INTO "users" ("created_at", "email", "password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 06 Nov 2012 16:06:39 UTC +00:00], ["email", "foo@foo.com"], ["password", "wow"], ["updated_at", Tue, 06 Nov 2012 16:06:39 UTC +00:00]]
|
4484
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4485
|
+
Rendered user_mailer/welcome_email.text.erb (3.5ms)
|
4486
|
+
|
4487
|
+
Sent mail to foo@foo.com (50ms)
|
4488
|
+
Date: Tue, 06 Nov 2012 10:06:39 -0600
|
4489
|
+
From: from@librato-rails.com
|
4490
|
+
To: foo@foo.com
|
4491
|
+
Message-ID: <5099358fcf239_24063ff04d434cd4135@Arcas.local.mail>
|
4492
|
+
Subject: Why Howdy!
|
4493
|
+
Mime-Version: 1.0
|
4494
|
+
Content-Type: text/plain;
|
4495
|
+
charset=UTF-8
|
4496
|
+
Content-Transfer-Encoding: 7bit
|
4497
|
+
|
4498
|
+
This is a sample email, yay!
|
4499
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
4500
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4501
|
+
|
4502
|
+
|
4503
|
+
Started GET "/" for 127.0.0.1 at 2012-11-06 10:06:39 -0600
|
4504
|
+
Processing by HomeController#index as HTML
|
4505
|
+
Rendered home/index.html.erb within layouts/application (0.3ms)
|
4506
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
4507
|
+
|
4508
|
+
|
4509
|
+
Started GET "/status/204" for 127.0.0.1 at 2012-11-06 10:06:39 -0600
|
4510
|
+
Processing by StatusController#index as HTML
|
4511
|
+
Parameters: {"code"=>"204"}
|
4512
|
+
Rendered text template (0.0ms)
|
4513
|
+
Completed 204 No Content in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
4514
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4515
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4516
|
+
|
4517
|
+
|
4518
|
+
Started GET "/" for 127.0.0.1 at 2012-11-06 10:06:39 -0600
|
4519
|
+
Processing by HomeController#index as HTML
|
4520
|
+
Rendered home/index.html.erb within layouts/application (0.1ms)
|
4521
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
4522
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4523
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4524
|
+
|
4525
|
+
|
4526
|
+
Started GET "/exception" for 127.0.0.1 at 2012-11-06 10:06:39 -0600
|
4527
|
+
Processing by HomeController#boom as HTML
|
4528
|
+
Completed 500 Internal Server Error in 1ms
|
4529
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4530
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4531
|
+
|
4532
|
+
|
4533
|
+
Started GET "/slow" for 127.0.0.1 at 2012-11-06 10:06:39 -0600
|
4534
|
+
Processing by HomeController#slow as HTML
|
4535
|
+
Rendered text template (0.0ms)
|
4536
|
+
Completed 200 OK in 302ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4537
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4538
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4539
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4540
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "users" ("created_at", "email", "password", "updated_at") VALUES (?, ?, ?, ?)[0m [["created_at", Tue, 06 Nov 2012 16:06:40 UTC +00:00], ["email", "foo@foo.com"], ["password", "wow"], ["updated_at", Tue, 06 Nov 2012 16:06:40 UTC +00:00]]
|
4541
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4542
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = 'foo@foo.com' LIMIT 1[0m
|
4543
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4544
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "users" SET "password" = 'new password', "updated_at" = '2012-11-06 16:06:40.219985' WHERE "users"."id" = 1[0m
|
4545
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
4546
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4547
|
+
[1m[35mSQL (0.2ms)[0m DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]]
|
4548
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4549
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: librato-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.2
|
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: 2012-11-
|
12
|
+
date: 2012-11-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -34,7 +34,7 @@ dependencies:
|
|
34
34
|
requirements:
|
35
35
|
- - ~>
|
36
36
|
- !ruby/object:Gem::Version
|
37
|
-
version: 0.7.
|
37
|
+
version: 0.7.4
|
38
38
|
type: :runtime
|
39
39
|
prerelease: false
|
40
40
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -42,7 +42,7 @@ dependencies:
|
|
42
42
|
requirements:
|
43
43
|
- - ~>
|
44
44
|
- !ruby/object:Gem::Version
|
45
|
-
version: 0.7.
|
45
|
+
version: 0.7.4
|
46
46
|
- !ruby/object:Gem::Dependency
|
47
47
|
name: sqlite3
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|
@@ -197,7 +197,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
197
197
|
version: '0'
|
198
198
|
segments:
|
199
199
|
- 0
|
200
|
-
hash:
|
200
|
+
hash: 3855473348708511701
|
201
201
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
202
202
|
none: false
|
203
203
|
requirements:
|
@@ -206,7 +206,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
206
206
|
version: '0'
|
207
207
|
segments:
|
208
208
|
- 0
|
209
|
-
hash:
|
209
|
+
hash: 3855473348708511701
|
210
210
|
requirements: []
|
211
211
|
rubyforge_project:
|
212
212
|
rubygems_version: 1.8.24
|