spicon 0.0.2 → 0.0.3
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 +5 -13
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/README.md +66 -0
- data/Rakefile +1 -0
- data/app/assets/stylesheets/spicon.css +2090 -0
- data/images/browsers.jpg +0 -0
- data/images/compatible_ie.gif +0 -0
- data/lib/spicon.rb +8 -2
- data/lib/spicon/version.rb +3 -0
- data/spicon.gemspec +20 -0
- metadata +38 -8
data/images/browsers.jpg
ADDED
Binary file
|
Binary file
|
data/lib/spicon.rb
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
require "spicon/version"
|
2
2
|
|
3
3
|
module Spicon
|
4
|
-
|
4
|
+
module Rails
|
5
|
+
class Engine < ::Rails::Engine
|
6
|
+
|
7
|
+
initializer "precompile", :group => :all do |app|
|
8
|
+
app.config.assets.precompile << Proc.new{|path| path == "spicon.css" }
|
9
|
+
end
|
10
|
+
end
|
5
11
|
end
|
6
|
-
end
|
12
|
+
end
|
data/spicon.gemspec
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
lib = File.expand_path('../lib', __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require 'spicon/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "spicon"
|
7
|
+
spec.version = Spicon::VERSION
|
8
|
+
spec.authors = ["Nikhil Nanjappa", "Ashish Upadhyay", "Ankur Gera", "Gourav Tiwari", "Hrishita Vaish"]
|
9
|
+
spec.email = ["kainikhil@gmail.com", "ashish.upadhyaye@gmail.com", "ankurgera@gmail.com", "gouravtiwari21@gmail.com", "vaish.hrishita@tcs.com"]
|
10
|
+
spec.homepage = "https://github.com/gemathon-warriors/spicon"
|
11
|
+
spec.summary = "Cool feature that makes any element on your Rails application spin on mouseover."
|
12
|
+
spec.description = "Cool feature that makes any element on your Rails application spin on mouseover."
|
13
|
+
spec.license = "MIT"
|
14
|
+
spec.files = `git ls-files`.split($/)
|
15
|
+
spec.require_paths = ["lib"]
|
16
|
+
|
17
|
+
spec.add_dependency "rails", "> 2.3", "< 5"
|
18
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
19
|
+
spec.add_development_dependency "rake"
|
20
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spicon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nikhil Nanjappa
|
@@ -12,8 +12,28 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2014-02-
|
15
|
+
date: 2014-02-18 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
|
+
- !ruby/object:Gem::Dependency
|
18
|
+
name: rails
|
19
|
+
requirement: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - '>'
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: '2.3'
|
24
|
+
- - <
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '5'
|
27
|
+
type: :runtime
|
28
|
+
prerelease: false
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>'
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.3'
|
34
|
+
- - <
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: '5'
|
17
37
|
- !ruby/object:Gem::Dependency
|
18
38
|
name: bundler
|
19
39
|
requirement: !ruby/object:Gem::Requirement
|
@@ -32,14 +52,14 @@ dependencies:
|
|
32
52
|
name: rake
|
33
53
|
requirement: !ruby/object:Gem::Requirement
|
34
54
|
requirements:
|
35
|
-
- -
|
55
|
+
- - '>='
|
36
56
|
- !ruby/object:Gem::Version
|
37
57
|
version: '0'
|
38
58
|
type: :development
|
39
59
|
prerelease: false
|
40
60
|
version_requirements: !ruby/object:Gem::Requirement
|
41
61
|
requirements:
|
42
|
-
- -
|
62
|
+
- - '>='
|
43
63
|
- !ruby/object:Gem::Version
|
44
64
|
version: '0'
|
45
65
|
description: Cool feature that makes any element on your Rails application spin on
|
@@ -54,9 +74,19 @@ executables: []
|
|
54
74
|
extensions: []
|
55
75
|
extra_rdoc_files: []
|
56
76
|
files:
|
77
|
+
- .gitignore
|
78
|
+
- Gemfile
|
79
|
+
- README.md
|
80
|
+
- Rakefile
|
81
|
+
- app/assets/stylesheets/spicon.css
|
82
|
+
- images/browsers.jpg
|
83
|
+
- images/compatible_ie.gif
|
57
84
|
- lib/spicon.rb
|
85
|
+
- lib/spicon/version.rb
|
86
|
+
- spicon.gemspec
|
58
87
|
homepage: https://github.com/gemathon-warriors/spicon
|
59
|
-
licenses:
|
88
|
+
licenses:
|
89
|
+
- MIT
|
60
90
|
metadata: {}
|
61
91
|
post_install_message:
|
62
92
|
rdoc_options: []
|
@@ -64,17 +94,17 @@ require_paths:
|
|
64
94
|
- lib
|
65
95
|
required_ruby_version: !ruby/object:Gem::Requirement
|
66
96
|
requirements:
|
67
|
-
- -
|
97
|
+
- - '>='
|
68
98
|
- !ruby/object:Gem::Version
|
69
99
|
version: '0'
|
70
100
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
101
|
requirements:
|
72
|
-
- -
|
102
|
+
- - '>='
|
73
103
|
- !ruby/object:Gem::Version
|
74
104
|
version: '0'
|
75
105
|
requirements: []
|
76
106
|
rubyforge_project:
|
77
|
-
rubygems_version: 2.
|
107
|
+
rubygems_version: 2.0.6
|
78
108
|
signing_key:
|
79
109
|
specification_version: 4
|
80
110
|
summary: Cool feature that makes any element on your Rails application spin on mouseover.
|