rails-sh 1.1.1 → 1.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/Gemfile.lock +28 -0
- data/README.rdoc +1 -12
- data/VERSION +1 -1
- data/bin/rails-sh +3 -0
- metadata +5 -4
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
GEM
|
|
2
|
+
remote: http://rubygems.org/
|
|
3
|
+
specs:
|
|
4
|
+
diff-lcs (1.1.2)
|
|
5
|
+
git (1.2.5)
|
|
6
|
+
jeweler (1.5.2)
|
|
7
|
+
bundler (~> 1.0.0)
|
|
8
|
+
git (>= 1.2.5)
|
|
9
|
+
rake
|
|
10
|
+
rake (0.8.7)
|
|
11
|
+
rcov (0.9.9)
|
|
12
|
+
rspec (2.3.0)
|
|
13
|
+
rspec-core (~> 2.3.0)
|
|
14
|
+
rspec-expectations (~> 2.3.0)
|
|
15
|
+
rspec-mocks (~> 2.3.0)
|
|
16
|
+
rspec-core (2.3.1)
|
|
17
|
+
rspec-expectations (2.3.0)
|
|
18
|
+
diff-lcs (~> 1.1.2)
|
|
19
|
+
rspec-mocks (2.3.0)
|
|
20
|
+
|
|
21
|
+
PLATFORMS
|
|
22
|
+
ruby
|
|
23
|
+
|
|
24
|
+
DEPENDENCIES
|
|
25
|
+
bundler (~> 1.0.0)
|
|
26
|
+
jeweler (~> 1.5.2)
|
|
27
|
+
rcov
|
|
28
|
+
rspec (~> 2.3.0)
|
data/README.rdoc
CHANGED
|
@@ -46,18 +46,7 @@ Print routes:
|
|
|
46
46
|
|
|
47
47
|
== Commands
|
|
48
48
|
|
|
49
|
-
|
|
50
|
-
* destroy
|
|
51
|
-
* plugin
|
|
52
|
-
* benchmarker
|
|
53
|
-
* profiler
|
|
54
|
-
* console
|
|
55
|
-
* server
|
|
56
|
-
* dbconsole
|
|
57
|
-
* application
|
|
58
|
-
* runner
|
|
59
|
-
* routes
|
|
60
|
-
* exit
|
|
49
|
+
please type help
|
|
61
50
|
|
|
62
51
|
== Contributing to rails-sh
|
|
63
52
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.2
|
data/bin/rails-sh
CHANGED
|
@@ -3,8 +3,11 @@
|
|
|
3
3
|
ENV["RAILS_ENV"] ||= ARGV.shift
|
|
4
4
|
|
|
5
5
|
APP_PATH = File.expand_path('./config/application')
|
|
6
|
+
puts "\e[34m# require #{File.expand_path('./config/boot')}\e[0m"
|
|
6
7
|
require File.expand_path('./config/boot')
|
|
8
|
+
puts "\e[34m# require #{APP_PATH}\e[0m"
|
|
7
9
|
require APP_PATH
|
|
10
|
+
puts "\e[34m# Rails.application.require_environment!\e[0m"
|
|
8
11
|
Rails.application.require_environment!
|
|
9
12
|
|
|
10
13
|
$:.unshift File.expand_path('../../lib', __FILE__)
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 1.1.
|
|
8
|
+
- 2
|
|
9
|
+
version: 1.1.2
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- jugyo
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2011-01-
|
|
17
|
+
date: 2011-01-26 00:00:00 +09:00
|
|
18
18
|
default_executable: rails-sh
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -88,6 +88,7 @@ files:
|
|
|
88
88
|
- .document
|
|
89
89
|
- .rspec
|
|
90
90
|
- Gemfile
|
|
91
|
+
- Gemfile.lock
|
|
91
92
|
- LICENSE.txt
|
|
92
93
|
- README.rdoc
|
|
93
94
|
- Rakefile
|
|
@@ -113,7 +114,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
113
114
|
requirements:
|
|
114
115
|
- - ">="
|
|
115
116
|
- !ruby/object:Gem::Version
|
|
116
|
-
hash:
|
|
117
|
+
hash: 3313540991025294354
|
|
117
118
|
segments:
|
|
118
119
|
- 0
|
|
119
120
|
version: "0"
|