clear_eyes 0.1.6 → 0.1.7

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: e6c6e5e348243dfea90af8193a5437093f56bdd0
4
+ data.tar.gz: 60f9787e08451255c641dcb2f2c8c17f85b0effd
5
+ SHA512:
6
+ metadata.gz: 256e5ebc487d13929708a39da1d8ff2c2c087177e3bbef5080fb3264840416d5e6be1b08a6e4eaf3c33b6fe5d2392fe0c51776ef9a6fc8481c2a6d5bd4e8ff2f
7
+ data.tar.gz: 687ec743a21344b660a2fc437647700fd7dcd42fc380580082453d91e860ba5c0295ca0c3972812965588007f78f116fca39eebe3f527527bdd021b7c7cc1dc0
@@ -14,6 +14,6 @@ Gem::Specification.new do |gem|
14
14
  gem.name = "clear_eyes"
15
15
  gem.require_paths = ["lib", "vendor"]
16
16
  gem.version = ClearEyes::VERSION
17
- gem.add_dependency "railties", "~> 3.1"
17
+ gem.add_dependency "railties", ">= 4.0"
18
18
  gem.add_dependency "rmagick", "~> 2.13.1"
19
19
  end
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in clear_eyes.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Brian Dear
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # ClearEyes
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'clear_eyes'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install clear_eyes
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
@@ -0,0 +1,17 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/clear_eyes/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Brian Dear"]
6
+ gem.email = ["superacidjax@me.com"]
7
+ gem.description = %q{TODO: Write a gem description}
8
+ gem.summary = %q{TODO: Write a gem summary}
9
+ gem.homepage = ""
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = "clear_eyes"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = ClearEyes::VERSION
17
+ end
@@ -0,0 +1,5 @@
1
+ require "clear_eyes/version"
2
+
3
+ module ClearEyes
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module ClearEyes
2
+ VERSION = "0.0.1"
3
+ end
@@ -1,3 +1,3 @@
1
1
  module ClearEyes
2
- VERSION = "0.1.6"
2
+ VERSION = "0.1.7"
3
3
  end
metadata CHANGED
@@ -1,46 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clear_eyes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
5
- prerelease:
4
+ version: 0.1.7
6
5
  platform: ruby
7
6
  authors:
8
7
  - Brian Dear
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-02-07 00:00:00.000000000 Z
11
+ date: 2014-11-30 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: railties
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
- version: '3.1'
19
+ version: '4.0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ~>
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
- version: '3.1'
26
+ version: '4.0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: rmagick
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ~>
31
+ - - "~>"
36
32
  - !ruby/object:Gem::Version
37
33
  version: 2.13.1
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ~>
38
+ - - "~>"
44
39
  - !ruby/object:Gem::Version
45
40
  version: 2.13.1
46
41
  description: Automatic Retina Image Handling
@@ -50,13 +45,21 @@ executables: []
50
45
  extensions: []
51
46
  extra_rdoc_files: []
52
47
  files:
53
- - .gitignore
54
- - .rvmrc
48
+ - ".gitignore"
49
+ - ".rvmrc"
55
50
  - Gemfile
56
51
  - LICENSE
57
52
  - README.md
58
53
  - Rakefile
59
54
  - clear_eyes.gemspec
55
+ - clear_eyes/.gitignore
56
+ - clear_eyes/Gemfile
57
+ - clear_eyes/LICENSE
58
+ - clear_eyes/README.md
59
+ - clear_eyes/Rakefile
60
+ - clear_eyes/clear_eyes.gemspec
61
+ - clear_eyes/lib/clear_eyes.rb
62
+ - clear_eyes/lib/clear_eyes/version.rb
60
63
  - lib/clear_eyes.rb
61
64
  - lib/clear_eyes/railtie.rb
62
65
  - lib/clear_eyes/tasks/clear_eyes.rake
@@ -65,28 +68,27 @@ files:
65
68
  - vendor/assets/javascripts/clear_eyes.js
66
69
  homepage: https://github.com/superacidjax/clear_eyes
67
70
  licenses: []
71
+ metadata: {}
68
72
  post_install_message:
69
73
  rdoc_options: []
70
74
  require_paths:
71
75
  - lib
72
76
  - vendor
73
77
  required_ruby_version: !ruby/object:Gem::Requirement
74
- none: false
75
78
  requirements:
76
- - - ! '>='
79
+ - - ">="
77
80
  - !ruby/object:Gem::Version
78
81
  version: '0'
79
82
  required_rubygems_version: !ruby/object:Gem::Requirement
80
- none: false
81
83
  requirements:
82
- - - ! '>='
84
+ - - ">="
83
85
  - !ruby/object:Gem::Version
84
86
  version: '0'
85
87
  requirements: []
86
88
  rubyforge_project:
87
- rubygems_version: 1.8.24
89
+ rubygems_version: 2.2.2
88
90
  signing_key:
89
- specification_version: 3
91
+ specification_version: 4
90
92
  summary: This ensures that high resolution images are served for Retina devices and
91
93
  standard resolution images are served for everyone else.
92
94
  test_files: []