hit_counter 0.0.5 → 0.0.6
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/Gemfile +3 -3
- data/VERSION +1 -1
- data/hit_counter.gemspec +1 -1
- data/lib/hit_counter.rb +1 -4
- metadata +3 -3
data/Gemfile
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
source 'http://rubygems.org'
|
|
2
2
|
|
|
3
|
-
gem 'addressable'
|
|
3
|
+
gem 'addressable', :require => 'addressable/uri'
|
|
4
4
|
gem 'bson_ext'
|
|
5
|
-
gem 'mongoid'
|
|
6
|
-
gem 'rmagick', '2.12.2' # version compatible with heroku
|
|
5
|
+
gem 'mongoid', :require => 'mongoid'
|
|
6
|
+
gem 'rmagick', '2.12.2', :require => 'RMagick'# version compatible with heroku
|
|
7
7
|
|
|
8
8
|
group :development do
|
|
9
9
|
gem 'jeweler'
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.6
|
data/hit_counter.gemspec
CHANGED
data/lib/hit_counter.rb
CHANGED
|
@@ -14,10 +14,7 @@
|
|
|
14
14
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
15
15
|
require 'rubygems'
|
|
16
16
|
require 'bundler/setup'
|
|
17
|
-
Bundler.
|
|
18
|
-
require 'addressable/uri'
|
|
19
|
-
require 'mongoid'
|
|
20
|
-
require 'RMagick'
|
|
17
|
+
Bundler.require :default
|
|
21
18
|
|
|
22
19
|
class HitCounter
|
|
23
20
|
include Mongoid::Document
|
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: 19
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 6
|
|
10
|
+
version: 0.0.6
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Roderick Monje
|