jquery-timeago-rails 1.3.0.1 → 1.4.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 256a5d48b7a2cf4b8578fee4311735f34d8f44ea
4
- data.tar.gz: 58846197b7575df30ed5e598b2be72afd353e7ba
3
+ metadata.gz: a7454751d6dbb9c49a8bb3c1f3d3921a58a33287
4
+ data.tar.gz: 76935e229269afb0011faf61188fce54f1e642e0
5
5
  SHA512:
6
- metadata.gz: 83b1070ae88dd6e46c2f39686a9f9965cc729bcf2c5b700813efb06d30c69d52ed4470e8aadcec938d189dbd59f9b839a1b28c039f21fe4da8cc5371966d4566
7
- data.tar.gz: 1f493682e9c9cc6d8549d168f8cf7e5f4bb5bdc5702ed476caf3c6e4b7372fa6a7b8dcd5945d7e3c67c5190fb7b733e1ab2fe4a68a8a085ccb677bdf3a60fce8
6
+ metadata.gz: 988ec6d4050ba6d01573eb5571fdfb420ce79a860a2b41caa6a4cce2d5cb0c51509b09c1ab00d16fa29623da16556aa4c551d920a55a4bb3e119c3885bf580e4
7
+ data.tar.gz: 3451fb3479e8fbe35fd43afac78142d192c8de919d95367979b658b4cec5aecf521a4a480f811fc76abdd0219f4bef198632d14cdff70ca5fe1d3967f82ab1b1
@@ -1,4 +1,4 @@
1
- Copyright 2013 SugarCRM Inc.
1
+ Copyright 2015 SugarCRM Inc.
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # jquery-timeago-rails
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/jquery-timeago-rails.svg)](http://badge.fury.io/rb/jquery-timeago-rails)
4
+ [![License](http://img.shields.io/badge/license-MIT-green.svg?style=flat)](MIT-LICENSE)
5
+
3
6
  [Timeago JQuery plugin](http://timeago.yarp.com/) for Rails.
4
7
 
5
8
  ## Installation
@@ -20,7 +23,7 @@ Then add it to app/assets/javascripts/application.js with:
20
23
 
21
24
  ## Versioning
22
25
 
23
- jquery-timeago-rails 1.3.0 == jquery.timeago.js 1.3.0
26
+ jquery-timeago-rails 1.4.1 == jquery.timeago.js 1.4.1
24
27
 
25
28
  The major, minor, and patch will always match the library. If a gem fix is needed in between library versions then a 4th version numbers will be added.
26
29
 
@@ -30,4 +33,4 @@ The major, minor, and patch will always match the library. If a gem fix is neede
30
33
  Thanks to [Yarp](http://yarp.com/) and [Ryan McGeary](http://ryan.mcgeary.org/)
31
34
  for releasing and maintaining the [timeago library](http://timeago.yarp.com/).
32
35
 
33
- Copyright [SugarCRM Inc.](http://sugarcrm.com), released under the MIT License.
36
+ Copyright 2015 [SugarCRM Inc.](http://sugarcrm.com), released under the MIT License.
data/Rakefile CHANGED
@@ -31,5 +31,4 @@ Rake::TestTask.new(:test) do |t|
31
31
  t.verbose = false
32
32
  end
33
33
 
34
-
35
34
  task :default => :test
@@ -1,4 +1,4 @@
1
- require "jquery-timeago-rails/version"
1
+ require 'jquery-timeago-rails/version'
2
2
 
3
3
  module JqueryTimeagoRails
4
4
  class Engine < ::Rails::Engine
@@ -1,3 +1,3 @@
1
1
  module JqueryTimeagoRails
2
- VERSION = '1.3.0.1'
2
+ VERSION = '1.4.1'
3
3
  end
@@ -10,3 +10,16 @@ Served asset /jquery.timeago.js - 200 OK (50ms)
10
10
  Started GET "/assets/jquery.timeago.js" for 127.0.0.1 at 2015-06-01 10:12:19 -0400
11
11
  Connecting to database specified by database.yml
12
12
  Served asset /jquery.timeago.js - 200 OK (22ms)
13
+ Started GET "/assets/jquery.timeago.js" for 127.0.0.1 at 2015-06-01 10:35:52 -0400
14
+ Connecting to database specified by database.yml
15
+ Served asset /jquery.timeago.js - 200 OK (7ms)
16
+ Started GET "/assets/jquery.timeago.js" for 127.0.0.1 at 2015-06-01 14:51:01 -0400
17
+ Connecting to database specified by database.yml
18
+ Compiled jquery.timeago.js (0ms) (pid 83340)
19
+ Served asset /jquery.timeago.js - 200 OK (25ms)
20
+ Started GET "/assets/jquery.timeago.js" for 127.0.0.1 at 2015-06-01 14:51:56 -0400
21
+ Connecting to database specified by database.yml
22
+ Served asset /jquery.timeago.js - 200 OK (4ms)
23
+ Started GET "/assets/jquery.timeago.js" for 127.0.0.1 at 2015-06-01 14:57:08 -0400
24
+ Connecting to database specified by database.yml
25
+ Served asset /jquery.timeago.js - 200 OK (3ms)
@@ -1,9 +1,8 @@
1
1
  require 'test_helper'
2
2
 
3
- describe "jquery.timeago assets integration" do
3
+ describe 'jquery.timeago assets integration' do
4
4
  it 'provides jquery.timeago.js on the asset pipeline' do
5
- visit '/assets/jquery.timeago.js'
6
- page.text.must_include 'Timeago'
5
+ visit('/assets/jquery.timeago.js')
6
+ page.text.must_include('Timeago')
7
7
  end
8
8
  end
9
-
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jquery-timeago-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0.1
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Sullivan Cant
@@ -66,7 +66,7 @@ dependencies:
66
66
  - - '>='
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
- description: This gem provides the JQuery Timeago plug for your Rails application.
69
+ description: This gem provides the JQuery Timeago plugin for your Rails application.
70
70
  email:
71
71
  - acant@sugarcrm.com
72
72
  executables: []
@@ -137,7 +137,7 @@ rubyforge_project:
137
137
  rubygems_version: 2.0.14
138
138
  signing_key:
139
139
  specification_version: 4
140
- summary: Use Timeago JQuery plugin with Rails.
140
+ summary: Use Timeago JQuery plugin with Rails
141
141
  test_files:
142
142
  - test/dummy/app/assets/javascripts/application.js
143
143
  - test/dummy/app/assets/stylesheets/application.css