rails-embryo 0.1.0 → 0.1.1

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: b3e95ed36619f324f4d2a2687983b012c5b2e303
4
- data.tar.gz: 0068e1973549f5910562b6ae20484991a9a9adbb
3
+ metadata.gz: e320f4f9a4efed26ee96d1734d44a7487075b7ca
4
+ data.tar.gz: 1d459d50c459dbfa6b33d15b0fae53bd23e4fd8b
5
5
  SHA512:
6
- metadata.gz: e9f07b225afedc42452afe8c64a7535c944eb1585d2cf7e6f65a6f0cebaeee22146273109274192fb02c53a6f4e4d87aa540037bf9b689e6ff735b563477bb36
7
- data.tar.gz: 1959432c41fa440bbd6d59f40edca46ecabe923b03fd1448caa38d4a5e7772c4d6114f1c30cd06b23e992c9167d28f2c57ef5cb40b849c53bcdfc30c79ab4601
6
+ metadata.gz: c17ec6e686cbd30e3c0005d7ffd5b426cfe44e17d30abe6cf8afb0b84bb0296e2ac644cc371668dee1b83ec4f6dab74daaf5b92ab237511935875b3e53d169a1
7
+ data.tar.gz: 23ef35d270cf9d87197c9333fb224b7fd6b9a17fa84e3151a1ef7f803d68c27330ea6233556970adf8ad07a9567b8741d444f9efb47f7f540128ee87bb4bb964
data/History.md CHANGED
@@ -1,3 +1,8 @@
1
+ ### Version 0.1.1
2
+ 2014-6-10
3
+
4
+ * Minor bugfix for running the gem-installed binary
5
+
1
6
  ### Version 0.1.0
2
7
  2014-6-10
3
8
 
data/README.md CHANGED
@@ -1,4 +1,8 @@
1
1
  # rails-embryo
2
+ [![Gem Version](https://badge.fury.io/rb/rails-embryo.png)](http://badge.fury.io/rb/rails-embryo)
3
+ [![Build Status](https://travis-ci.org/brianauton/rails-embryo.png?branch=master)](https://travis-ci.org/brianauton/rails-embryo)
4
+ [![Code Climate](https://codeclimate.com/github/brianauton/rails-embryo.png)](https://codeclimate.com/github/brianauton/rails-embryo)
5
+ [![Dependency Status](https://gemnasium.com/brianauton/rails-embryo.png)](https://gemnasium.com/brianauton/rails-embryo)
2
6
 
3
7
  Rails-embryo is a Ruby gem that helps get a new Rails application up and
4
8
  running quickly. In just one step, it adds many of the the tweaks and
data/lib/rails-embryo.rb CHANGED
@@ -1,5 +1,6 @@
1
1
  require "rails/generators"
2
2
  require "rails/generators/app_base"
3
+ require "rails-embryo/version"
3
4
  require "embryo/filesystem"
4
5
  require "embryo/ruby_version"
5
6
  require "embryo/test_support"
@@ -1,5 +1,5 @@
1
1
  module Rails
2
2
  module Embryo
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-embryo
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
  - Brian Auton