ride 0.1.1 → 0.1.2

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/Manifest.txt CHANGED
@@ -13,7 +13,6 @@ app_generators/ride/templates/.vim/syntax/eruby.vim
13
13
  app_generators/ride/templates/History.txt
14
14
  app_generators/ride/templates/License.txt
15
15
  app_generators/ride/templates/README.txt
16
- app_generators/ride/templates/Rakefile
17
16
  app_generators/ride/templates/config/.screenrc.code.erb
18
17
  app_generators/ride/templates/config/code_template.erb
19
18
  app_generators/ride/templates/script/console
data/README.txt CHANGED
@@ -33,10 +33,12 @@ $ script/editor --help
33
33
  * screen
34
34
  * vim (depends on file navigation)
35
35
  * ruby (we use some ERb to make the templates work)
36
+ * gems - rubigen, hoe.
36
37
 
37
38
  == INSTALL:
38
39
 
39
- * FIX (sudo gem install, anything else)
40
+ * sudo gem install ride
41
+ * read the postinstall for instructions (prints after install)
40
42
 
41
43
  == LICENSE:
42
44
 
@@ -33,7 +33,7 @@ class RideGenerator < RubiGen::Base
33
33
 
34
34
  m.dependency "install_rubigen_scripts", [destination_root, 'ride'],
35
35
  :shebang => options[:shebang], :collision => :force
36
- m.file_copy_each %w{Rakefile History.txt License.txt README.txt}
36
+ m.file_copy_each %w{History.txt License.txt README.txt}
37
37
  m.file_copy_each [%w{ftplugin ruby ruby.vim}, %w{plugin taglist.vim}, %w{syntax eruby.vim}, %w{ftdetect ruby.vim}].map { |vimfile| File.join(".vim", *vimfile) }
38
38
  script_options = { :chmod => 0755, :shebang => options[:shebang] == RideGenerator::DEFAULT_SHEBANG ? nil : options[:shebang] }
39
39
  m.file_copy_each %w{tasks/rspec.rake tasks/ride.rake}
@@ -33,10 +33,12 @@ $ script/editor --help
33
33
  * screen
34
34
  * vim (depends on file navigation)
35
35
  * ruby (we use some ERb to make the templates work)
36
+ * gems - rubigen, hoe.
36
37
 
37
38
  == INSTALL:
38
39
 
39
- * FIX (sudo gem install, anything else)
40
+ * sudo gem install ride
41
+ * read the postinstall for instructions (prints after install)
40
42
 
41
43
  == LICENSE:
42
44
 
data/lib/ride/version.rb CHANGED
@@ -2,7 +2,7 @@ module Ride
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -31,7 +31,7 @@ describe "Ride Generator", "when application is generated" do
31
31
  end
32
32
  end
33
33
 
34
- %w{Rakefile History.txt License.txt README.txt}.each do |file|
34
+ %w{History.txt License.txt README.txt}.each do |file|
35
35
  it "should create #{file}" do
36
36
  File.exists?(full_path(file)).should == true
37
37
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ride
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Vanderpoel
@@ -75,7 +75,6 @@ files:
75
75
  - app_generators/ride/templates/History.txt
76
76
  - app_generators/ride/templates/License.txt
77
77
  - app_generators/ride/templates/README.txt
78
- - app_generators/ride/templates/Rakefile
79
78
  - app_generators/ride/templates/config/.screenrc.code.erb
80
79
  - app_generators/ride/templates/config/code_template.erb
81
80
  - app_generators/ride/templates/script/console
@@ -1,4 +0,0 @@
1
- require 'config/requirements'
2
- require 'config/hoe' # setup Hoe + all gem configuration
3
-
4
- Dir['tasks/**/*.rake'].each { |rake| load rake }