homesteading_post 0.0.1 → 0.0.2

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: ce8499006b2a579b0c6fb801e2611fc77ba61d53
4
- data.tar.gz: 3dc76d506c01ea6edfaf45116baf92d93128a634
3
+ metadata.gz: 671011f93d831e93bba0945f5230e631b3964dfb
4
+ data.tar.gz: 90ecf1d7bcfbe23ba6f815f3e12084ee5d8068fc
5
5
  SHA512:
6
- metadata.gz: 9fd915709e684acbd229b7f4515299ed39370bfddd2e2cbc185ea76d2e85070a67df598fa1b4d31e2494abb5fbcbe7be7af4bfa7a6a447d7d4e86a2e8ffa1cd3
7
- data.tar.gz: 645ba744299655e4515fe2d43b20d24086265a98b42171a58bf9269786def7c891a74c7dc4b78d239ebb1d16c94c2d92dd4e8caf9e1d3b8fa25d23ebe5ba7a6d
6
+ metadata.gz: 0bb4271fc90281e1b8ff4585d631639d2c3d54b1f20bf777a9ee459c7026394aebb41fa79eb5d20022504dfb6213dcd2d926ae3048defd3c52283ab0230b5378
7
+ data.tar.gz: 2aacde348cf5d52cc1f88df5c3b1476f03965df7762f3092e0e1cf23e6cfde4aae93c4859e787294f5aafe32910311b66c6a0263b0f9758059178bfad6b3faab
@@ -0,0 +1,8 @@
1
+ class HomesteadingPost < ActiveRecord::Base
2
+ self.abstract_class = true
3
+
4
+ def test
5
+ puts "works"
6
+ "works"
7
+ end
8
+ end
@@ -1,3 +1,3 @@
1
1
  module HomesteadingPost
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
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.1
4
+ version: 0.0.2
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/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
data/app/models/post.rb DELETED
@@ -1,5 +0,0 @@
1
- class Post < ActiveRecord::Base
2
- def testing
3
- puts "IT WORKS"
4
- end
5
- end