gumby 0.0.3 → 0.0.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/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in gumby-framework.gemspec
4
+ gemspec
data/gumby.gemspec CHANGED
@@ -5,7 +5,7 @@ require "gumby/version"
5
5
 
6
6
  Gem::Specification.new do |gem|
7
7
  gem.name = "gumby"
8
- gem.version = Gumby::Rails::VERSION
8
+ gem.version = Gumby::Framework::VERSION
9
9
  gem.authors = ["Francesco Serra"]
10
10
  gem.email = ["afnecors@gmail.com"]
11
11
  gem.description = %q{Gumby Framework for Rails}
data/lib/gumby.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require "gumby/version"
2
2
 
3
3
  module Gumby
4
- module Rails
4
+ module Framework
5
5
  class Engine < ::Rails::Engine
6
6
  end
7
7
  end
data/lib/gumby/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Gumby
2
- module Rails
3
- VERSION = "0.0.3"
2
+ module Framework
3
+ VERSION = "0.0.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gumby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -51,6 +51,7 @@ extensions: []
51
51
  extra_rdoc_files: []
52
52
  files:
53
53
  - .gitignore
54
+ - Gemfile
54
55
  - LICENSE.txt
55
56
  - README.md
56
57
  - Rakefile