railman 0.5.0 → 0.5.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5caffdfe35dfe38edbcac46034cb4895c0e1cef9
4
- data.tar.gz: f3368960de648a387fc24f7e4018f5f9f595236e
3
+ metadata.gz: 4333dc05169689ee25d9a1bf9c0b5065204e4e7f
4
+ data.tar.gz: 82018eefa894fa7858788ae1a7f304929bb4df53
5
5
  SHA512:
6
- metadata.gz: cfaeb040e7dc4907dcd60fe52e440a5e9bdf8a041eda746c7075f14ebeec17d43b3bc075d5807f4bf4440b91b1bc4982b1f726c6139faf4160dadc5002f4c1db
7
- data.tar.gz: 24c65e5f37c71cd0fa879759e049bfdaecb881ac813de3446166793e3ad5b19567e17c21d43db6e7a2c18e11805deab1af9e089b655f8c8f31a7f72884050f39
6
+ metadata.gz: 347c2e0a0830c5892cd249194734f20b69a7ae9248c568c9d916a84fbfaff3acbe1a35d62b22374c166bce550d185536662d6171735a658eb5d403ea3e280a47
7
+ data.tar.gz: 9f843b687936921e71b5b8323dacb06d4059f435b592897928fd75bd0ae0c7f23ed769d9664e227336810bdb9b97e9b0b255dea01cfa0b34f90a3886e586e1a4
data/.envrc ADDED
@@ -0,0 +1 @@
1
+ PATH_add bin
data/.simplecov ADDED
@@ -0,0 +1,5 @@
1
+ SimpleCov.start do
2
+ coverage_dir 'test/coverage'
3
+ end
4
+
5
+
data/bin/console CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "<%= @gem_name %>"
4
+ require "railman"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
data/bin/rake ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rake' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require "pathname"
10
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require "rubygems"
14
+ require "bundler/setup"
15
+
16
+ load Gem.bin_path("rake", "rake")
data/bin/setup CHANGED
File without changes
@@ -1,3 +1,3 @@
1
1
  module Railman
2
- VERSION = '0.5.0'
2
+ VERSION = '0.5.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: railman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Jancev
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-05-02 00:00:00.000000000 Z
11
+ date: 2016-05-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -144,8 +144,10 @@ executables:
144
144
  extensions: []
145
145
  extra_rdoc_files: []
146
146
  files:
147
+ - ".envrc"
147
148
  - ".gitignore"
148
149
  - ".ruby-version"
150
+ - ".simplecov"
149
151
  - ".travis.yml"
150
152
  - CUSTOMIZATION.md
151
153
  - Gemfile
@@ -153,6 +155,7 @@ files:
153
155
  - README.md
154
156
  - Rakefile
155
157
  - bin/console
158
+ - bin/rake
156
159
  - bin/setup
157
160
  - exe/railman
158
161
  - lib/railman.rb
@@ -189,7 +192,6 @@ files:
189
192
  - templates/rails_app/app/views/layouts/application.html.erb.tt
190
193
  - templates/rails_app/bin/bundle
191
194
  - templates/rails_app/bin/cap
192
- - templates/rails_app/bin/capify
193
195
  - templates/rails_app/bin/rails
194
196
  - templates/rails_app/bin/rake
195
197
  - templates/rails_app/bin/setup
@@ -1,16 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'capify' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
12
-
13
- require 'rubygems'
14
- require 'bundler/setup'
15
-
16
- load Gem.bin_path('capistrano', 'capify')