dotimeout-rails 1.0.0.0.1.1 → 1.0.0.0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NTQ4OTUwNWU5MjYzYmZjZDQ2ODQxNDg2Mjk4NGNmYmJlMjUyNjcyYw==
5
+ data.tar.gz: !binary |-
6
+ YzY1OWJiMjU3NGY4YjAyM2Q4OTFkNTgyYmViNGU5N2UyNjZhYjZhYw==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ ZTMyNzFiZWY1OTMwNzAyOWFiYzc3MTMyMTRmMGRlMzc0NzA0NTM5Y2EwZDk0
10
+ N2Q0NTkzYTgxNDVkNDc2M2U0ZTAxMjg0MzlkZmY5YjY4ZmI0N2NhMzE2MWMx
11
+ ZjYwNWFhN2NmZjQ3YmMzYTdmMDdiMTIxZWQwOWIxNTZmNDhmZmM=
12
+ data.tar.gz: !binary |-
13
+ ZDkzZDM2YjY5ODE3ZWRlN2E5MWEwNGEzY2NlNmFmYTM1NmU3ODllZGVjZjM4
14
+ MjliYmNiMjA3ZDQ2OGNmOWI0ZjI5YTlhYTRjMjcyMjVkYzQyMmZmMmMyNzhk
15
+ Yjg3OThhZTY3NTE3NDM0ODBiM2MyMDRmMzY1NmNiZWZlZmMwM2E=
data/README.md CHANGED
@@ -1,23 +1,27 @@
1
- <pre>
2
- _ _____ _ _ _ _
3
- __| | __|_ _(_)_ __ ___ ___ ___ _ _| |_ _ __ __ _(_) |___
4
- / _` |/ _ \| | | | '_ ` _ \ / _ \/ _ \| | | | __| | '__/ _` | | / __|
5
- | (_| | (_) | | | | | | | | | __/ (_) | |_| | |_ | | | (_| | | \__ \
6
- \__,_|\___/|_| |_|_| |_| |_|\___|\___/ \__,_|\__|___|_| \__,_|_|_|___/
7
- |_____|
8
- </pre>
1
+ _ _____ _ _ _ _
2
+ __| | __|_ _(_)_ __ ___ ___ ___ _ _| |_ _ __ __ _(_) |___
3
+ / _` |/ _ \| | | | '_ ` _ \ / _ \/ _ \| | | | __|____| '__/ _` | | / __|
4
+ | (_| | (_) | | | | | | | | | __/ (_) | |_| | ||_____| | | (_| | | \__ \
5
+ \__,_|\___/|_| |_|_| |_| |_|\___|\___/ \__,_|\__| |_| \__,_|_|_|___/
9
6
 
10
7
  This is a gemified version of Ben Alman's jQuery doTimeout plugin. See http://benalman.com/projects/jquery-dotimeout-plugin for more details.
11
8
 
12
9
  [![Build Status](https://secure.travis-ci.org/harrigan/dotimeout-rails.png)](http://travis-ci.org/harrigan/dotimeout-rails)
10
+ [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/harrigan/dotimeout-rails)
13
11
 
14
12
  ## Instructions
15
13
 
16
14
  Add the following to your Gemfile:
17
- `gem "dotimeout-rails"`
18
15
 
19
- Then add the following to your application.js manifest:
20
- `//= require dotimeout`
16
+ ```ruby
17
+ gem "dotimeout-rails"
18
+ ```
19
+
20
+ Then add the following to your application.js:
21
+
22
+ ```javascript
23
+ //= require dotimeout
24
+ ```
21
25
 
22
26
  Don't forget to run `bundle update` after upgrading to the latest gem version to ensure it's used by your Rails app.
23
27
 
@@ -10,6 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.homepage = "http://github.com/harrigan/dotimeout-rails"
11
11
  s.summary = %q{A gemified version of Ben Alman's jQuery doTimeout plugin.}
12
12
  s.description = %q{A gemified version of Ben Alman's jQuery doTimeout plugin.}
13
+ s.licenses = ["MIT", "GPL-2"]
13
14
 
14
15
  s.rubyforge_project = "dotimeout-rails"
15
16
 
@@ -1,3 +1,3 @@
1
1
  module DoTimeoutRails
2
- VERSION = "1.0.0.0.1.1"
2
+ VERSION = "1.0.0.0.1.2"
3
3
  end
@@ -1 +1 @@
1
- require "dotimeout-rails/engine" if defined?(Rails && Rails::VERSION::MAJOR == 3 && Rails::VERSION::MINOR >=1)
1
+ require "dotimeout-rails/engine" if defined?(Rails && Rails::VERSION::MAJOR == 3 && Rails::VERSION::MINOR >= 1)
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dotimeout-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.0.1.1
5
- prerelease:
4
+ version: 1.0.0.0.1.2
6
5
  platform: ruby
7
6
  authors:
8
7
  - Martin Harrigan
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2011-12-07 00:00:00.000000000 Z
11
+ date: 2013-11-01 00:00:00.000000000 Z
13
12
  dependencies: []
14
13
  description: A gemified version of Ben Alman's jQuery doTimeout plugin.
15
14
  email:
@@ -29,33 +28,28 @@ files:
29
28
  - vendor/assets/javascripts/dotimeout.jquery.js
30
29
  - vendor/assets/javascripts/dotimeout.js
31
30
  homepage: http://github.com/harrigan/dotimeout-rails
32
- licenses: []
31
+ licenses:
32
+ - MIT
33
+ - GPL-2
34
+ metadata: {}
33
35
  post_install_message:
34
36
  rdoc_options: []
35
37
  require_paths:
36
38
  - lib
37
39
  required_ruby_version: !ruby/object:Gem::Requirement
38
- none: false
39
40
  requirements:
40
41
  - - ! '>='
41
42
  - !ruby/object:Gem::Version
42
43
  version: '0'
43
- segments:
44
- - 0
45
- hash: 3551873780401808280
46
44
  required_rubygems_version: !ruby/object:Gem::Requirement
47
- none: false
48
45
  requirements:
49
46
  - - ! '>='
50
47
  - !ruby/object:Gem::Version
51
48
  version: '0'
52
- segments:
53
- - 0
54
- hash: 3551873780401808280
55
49
  requirements: []
56
50
  rubyforge_project: dotimeout-rails
57
- rubygems_version: 1.8.11
51
+ rubygems_version: 2.0.4
58
52
  signing_key:
59
- specification_version: 3
53
+ specification_version: 4
60
54
  summary: A gemified version of Ben Alman's jQuery doTimeout plugin.
61
55
  test_files: []