orthorings 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 CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/lib/orthorings.rb CHANGED
@@ -1,3 +1,9 @@
1
+ Dir[File.dirname(__FILE__) + '/core_ext/*.rb'].each { |e| require e }
2
+ %w(orthor/http_caching orthor/meta_data orthor/collections orthor/site orthor/object orthor/category orthor/feed orthor/page orthor/static_page).each { |r| require File.join(File.dirname(__FILE__), r) }
3
+ require File.join(File.dirname(__FILE__), 'orthorings')
4
+ require File.join(File.dirname(__FILE__), 'orthor_helper')
5
+ require 'moneta'
6
+
1
7
  class Orthorings
2
8
  require 'net/http'
3
9
 
data/orthorings.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{orthorings}
8
- s.version = "0.1.0"
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 = ["Anthony Langhorne"]
@@ -25,7 +25,6 @@ Gem::Specification.new do |s|
25
25
  "app/views/orthor/content/orthor_content.html.erb",
26
26
  "config/routes.rb",
27
27
  "lib/core_ext/dsl_accessor.rb",
28
- "lib/orthor.rb",
29
28
  "lib/orthor/category.rb",
30
29
  "lib/orthor/collections.rb",
31
30
  "lib/orthor/feed.rb",
data/spec/spec_helper.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require 'rubygems'
2
2
  require 'spec'
3
3
  require 'fake_web'
4
- require File.join(File.dirname(__FILE__), '..', 'lib', 'orthor')
4
+ require File.join(File.dirname(__FILE__), '..', 'lib', 'orthorings')
5
5
 
6
6
  SPEC_DIR = File.dirname(__FILE__) unless defined? SPEC_DIR
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orthorings
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anthony Langhorne
@@ -41,7 +41,6 @@ files:
41
41
  - app/views/orthor/content/orthor_content.html.erb
42
42
  - config/routes.rb
43
43
  - lib/core_ext/dsl_accessor.rb
44
- - lib/orthor.rb
45
44
  - lib/orthor/category.rb
46
45
  - lib/orthor/collections.rb
47
46
  - lib/orthor/feed.rb
data/lib/orthor.rb DELETED
@@ -1,5 +0,0 @@
1
- Dir[File.dirname(__FILE__) + '/core_ext/*.rb'].each { |e| require e }
2
- %w(orthor/http_caching orthor/meta_data orthor/collections orthor/site orthor/object orthor/category orthor/feed orthor/page orthor/static_page).each { |r| require File.join(File.dirname(__FILE__), r) }
3
- require File.join(File.dirname(__FILE__), 'orthorings')
4
- require File.join(File.dirname(__FILE__), 'orthor_helper')
5
- require 'moneta'