octopi 0.2.2 → 0.2.4

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/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # Changelog
2
+
3
+ # 0.2.3
4
+
5
+ * Ticket #39: Added sorting to _lib/octopi.rb_ in order to ensure _lib/octopi/api.rb_ and _lib/octopi/base.rb_ are loaded first [branch14]
6
+ * Ticket #38 & #40: Added mechanize as a requirement again.
7
+
8
+
9
+
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 2
4
- :patch: 2
4
+ :patch: 4
data/lib/octopi.rb CHANGED
@@ -12,7 +12,8 @@ require 'pp'
12
12
  Dir[File.join(File.dirname(__FILE__), "ext/*.rb")].each { |f| require f }
13
13
 
14
14
  # Octopi stuff
15
- Dir[File.join(File.dirname(__FILE__), "octopi/*.rb")].each { |f| require f }
15
+ # By sorting them we ensure that api and base are loaded first on all sane operating systems
16
+ Dir[File.join(File.dirname(__FILE__), "octopi/*.rb")].sort.each { |f| require f }
16
17
 
17
18
  # Include this into your app so you can access the child classes easier.
18
19
  # This is the root of all things Octopi.
data/octopi.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{octopi}
8
- s.version = "0.2.2"
8
+ s.version = "0.2.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Felipe Coury"]
12
- s.date = %q{2009-12-05}
12
+ s.date = %q{2009-12-26}
13
13
  s.email = %q{felipe.coury@gmail.com}
14
14
  s.extra_rdoc_files = [
15
15
  "LICENSE",
@@ -18,6 +18,7 @@ Gem::Specification.new do |s|
18
18
  s.files = [
19
19
  ".gitignore",
20
20
  ".yardoc",
21
+ "CHANGELOG.md",
21
22
  "LICENSE",
22
23
  "README.rdoc",
23
24
  "Rakefile",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octopi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felipe Coury
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-12-05 00:00:00 +10:00
12
+ date: 2009-12-26 00:00:00 +10:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -44,6 +44,7 @@ extra_rdoc_files:
44
44
  files:
45
45
  - .gitignore
46
46
  - .yardoc
47
+ - CHANGELOG.md
47
48
  - LICENSE
48
49
  - README.rdoc
49
50
  - Rakefile