homesteading_post 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 671011f93d831e93bba0945f5230e631b3964dfb
4
- data.tar.gz: 90ecf1d7bcfbe23ba6f815f3e12084ee5d8068fc
3
+ metadata.gz: fd25f8f80439c52e82ce84691adceec88c7bf1e9
4
+ data.tar.gz: 5f2fdd8da3a6de1ad2f75f7f485437c7b1e02283
5
5
  SHA512:
6
- metadata.gz: 0bb4271fc90281e1b8ff4585d631639d2c3d54b1f20bf777a9ee459c7026394aebb41fa79eb5d20022504dfb6213dcd2d926ae3048defd3c52283ab0230b5378
7
- data.tar.gz: 2aacde348cf5d52cc1f88df5c3b1476f03965df7762f3092e0e1cf23e6cfde4aae93c4859e787294f5aafe32910311b66c6a0263b0f9758059178bfad6b3faab
6
+ metadata.gz: f97d7de51160c4e8d67783120cfc4553176095d3d39e3f819341c3cad211a7954cec8c4781daa5c26e18b5b45780dafe900f44ca5090ab021f578e978757f4e6
7
+ data.tar.gz: ef10a8089da5cba08de9a073cfe4c87f83b274e5c6f1da933ec5f9470add121f47b0a247631befd504b3cc7c8febe7c66332d489be173507de955159372f55e4
@@ -0,0 +1,12 @@
1
+ module Homesteading
2
+ class Post < ActiveRecord::Base
3
+
4
+ self.abstract_class = true
5
+
6
+ def test
7
+ puts "works"
8
+ "works"
9
+ end
10
+
11
+ end
12
+ end
@@ -1,3 +1,3 @@
1
1
  module HomesteadingPost
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: homesteading_post
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shane Becker
@@ -54,7 +54,7 @@ files:
54
54
  - app/assets/stylesheets/homesteading_post/application.css
55
55
  - app/controllers/homesteading_post/application_controller.rb
56
56
  - app/helpers/homesteading_post/application_helper.rb
57
- - app/models/homesteading_post.rb
57
+ - app/models/homesteading/post.rb
58
58
  - app/views/layouts/homesteading_post/application.html.erb
59
59
  - config/routes.rb
60
60
  - lib/homesteading_post.rb
@@ -1,8 +0,0 @@
1
- class HomesteadingPost < ActiveRecord::Base
2
- self.abstract_class = true
3
-
4
- def test
5
- puts "works"
6
- "works"
7
- end
8
- end