agent_orange 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/.gitignore +3 -0
- data/agent_orange.gemspec +22 -0
- data/lib/agent_orange/version.rb +1 -1
- data/lib/tasks/allagents.xml +22170 -0
- data/lib/tasks/bot_agent_test.rake +86 -0
- metadata +48 -25
data/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require 'rake'
|
3
|
+
$:.push File.expand_path("../lib", __FILE__)
|
4
|
+
require "agent_orange/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "agent_orange"
|
8
|
+
s.version = AgentOrange::VERSION
|
9
|
+
s.authors = ["Kevin Elliott"]
|
10
|
+
s.email = ["kevin@welikeinc.com"]
|
11
|
+
s.homepage = "http://github.com/kevinelliott/agent_orange"
|
12
|
+
s.summary = %q{Parse and process User Agents like a secret one}
|
13
|
+
s.description = %q{Parse and process User Agents like a secret one}
|
14
|
+
|
15
|
+
s.rubyforge_project = "agent_orange"
|
16
|
+
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
|
+
|
19
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
20
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
21
|
+
s.require_paths = ["lib"]
|
22
|
+
end
|
data/lib/agent_orange/version.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
module AgentOrange
|
2
|
-
VERSION = "0.1.
|
2
|
+
VERSION = "0.1.1" # This is for the gem and does not conflict with the rest of the functionality
|
3
3
|
|
4
4
|
class Version
|
5
5
|
attr_accessor :major, :minor, :patch_level, :build_number
|