agent_orange 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ .bundle
2
+ Gemfile.lock
3
+ pkg/*
@@ -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
@@ -1,5 +1,5 @@
1
1
  module AgentOrange
2
- VERSION = "0.1.0" # This is for the gem and does not conflict with the rest of the functionality
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