hit_counter 0.1.0 → 0.1.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.
- data/VERSION +1 -1
- data/config/initializers/mime_types.rb +1 -0
- data/hit_counter.gemspec +2 -1
- data/lib/hit_counter.rb +1 -0
- metadata +4 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Mime::Type.register_alias 'image/png', :png
|
data/hit_counter.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "hit_counter"
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Roderick Monje"]
|
|
@@ -23,6 +23,7 @@ Gem::Specification.new do |s|
|
|
|
23
23
|
"README.rdoc",
|
|
24
24
|
"Rakefile",
|
|
25
25
|
"VERSION",
|
|
26
|
+
"config/initializers/mime_types.rb",
|
|
26
27
|
"hit_counter.gemspec",
|
|
27
28
|
"lib/hit_counter.rb",
|
|
28
29
|
"public/images/digits/celtic/0.gif",
|
data/lib/hit_counter.rb
CHANGED
|
@@ -129,6 +129,7 @@ if defined? Rails
|
|
|
129
129
|
desc 'Install HitCounter into your app.'
|
|
130
130
|
task :install do
|
|
131
131
|
puts 'Installing required image files...'
|
|
132
|
+
system "rsync -ruv #{Gem.searcher.find('hit_counter').full_gem_path}/config ."
|
|
132
133
|
system "rsync -ruv #{Gem.searcher.find('hit_counter').full_gem_path}/public ."
|
|
133
134
|
end
|
|
134
135
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hit_counter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Roderick Monje
|
|
@@ -106,6 +106,7 @@ files:
|
|
|
106
106
|
- README.rdoc
|
|
107
107
|
- Rakefile
|
|
108
108
|
- VERSION
|
|
109
|
+
- config/initializers/mime_types.rb
|
|
109
110
|
- hit_counter.gemspec
|
|
110
111
|
- lib/hit_counter.rb
|
|
111
112
|
- public/images/digits/celtic/0.gif
|