induction_cannon_01 0.0.3 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +1 -1
- data/Gemfile.lock +2 -2
- data/README.rdoc +2 -14
- data/VERSION +1 -1
- data/induction_cannon_01.gemspec +7 -6
- data/spec/helpers/application_helper_spec.rb +10 -0
- metadata +9 -8
- data/public/javascripts/application.js +0 -2
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -55,7 +55,7 @@ GEM
|
|
55
55
|
culerity (0.2.12)
|
56
56
|
database_cleaner (0.6.0)
|
57
57
|
diff-lcs (1.1.2)
|
58
|
-
dragoon_system (0.1.
|
58
|
+
dragoon_system (0.1.7)
|
59
59
|
mysql2
|
60
60
|
rails (~> 3.0.5)
|
61
61
|
erubis (2.6.6)
|
@@ -158,7 +158,7 @@ DEPENDENCIES
|
|
158
158
|
capybara (~> 0.4.0)
|
159
159
|
cucumber-rails
|
160
160
|
database_cleaner (~> 0.6.0)
|
161
|
-
dragoon_system (= 0.1.
|
161
|
+
dragoon_system (= 0.1.7)
|
162
162
|
factory_girl_rails
|
163
163
|
ffaker
|
164
164
|
inherited_resources
|
data/README.rdoc
CHANGED
@@ -1,18 +1,6 @@
|
|
1
|
-
|
1
|
+
== induction_cannon_01
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
Description goes here.
|
6
|
-
|
7
|
-
== Contributing to induction_cannon_01
|
8
|
-
|
9
|
-
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
|
10
|
-
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
|
11
|
-
* Fork the project
|
12
|
-
* Start a feature/bugfix branch
|
13
|
-
* Commit and push until you are happy with your contribution
|
14
|
-
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
15
|
-
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
3
|
+
rails generate dragoon_system:install, something will happen
|
16
4
|
|
17
5
|
== Copyright
|
18
6
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.5
|
data/induction_cannon_01.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{induction_cannon_01}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["zhanyinan"]
|
12
|
-
s.date = %q{2011-03-
|
12
|
+
s.date = %q{2011-03-07}
|
13
13
|
s.description = %q{personal suit, base on dragoon_system}
|
14
14
|
s.email = %q{toward7seas@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -77,7 +77,6 @@ Gem::Specification.new do |s|
|
|
77
77
|
"public/favicon.ico",
|
78
78
|
"public/images/rails.png",
|
79
79
|
"public/index.html",
|
80
|
-
"public/javascripts/application.js",
|
81
80
|
"public/javascripts/jquery.js",
|
82
81
|
"public/javascripts/jquery.min.js",
|
83
82
|
"public/javascripts/rails.js",
|
@@ -87,6 +86,7 @@ Gem::Specification.new do |s|
|
|
87
86
|
"script/rails",
|
88
87
|
"spec/controllers/users_controller_spec.rb",
|
89
88
|
"spec/factories/user.rb",
|
89
|
+
"spec/helpers/application_helper_spec.rb",
|
90
90
|
"spec/models/base/search_spec.rb",
|
91
91
|
"spec/models/base/transaction_spec.rb",
|
92
92
|
"spec/models/extra_spec.rb",
|
@@ -102,6 +102,7 @@ Gem::Specification.new do |s|
|
|
102
102
|
s.test_files = [
|
103
103
|
"spec/controllers/users_controller_spec.rb",
|
104
104
|
"spec/factories/user.rb",
|
105
|
+
"spec/helpers/application_helper_spec.rb",
|
105
106
|
"spec/models/base/search_spec.rb",
|
106
107
|
"spec/models/base/transaction_spec.rb",
|
107
108
|
"spec/models/extra_spec.rb",
|
@@ -117,7 +118,7 @@ Gem::Specification.new do |s|
|
|
117
118
|
s.add_runtime_dependency(%q<mysql2>, [">= 0"])
|
118
119
|
s.add_runtime_dependency(%q<jquery-rails>, [">= 0.2.7"])
|
119
120
|
s.add_runtime_dependency(%q<inherited_resources>, [">= 0"])
|
120
|
-
s.add_runtime_dependency(%q<dragoon_system>, ["= 0.1.
|
121
|
+
s.add_runtime_dependency(%q<dragoon_system>, ["= 0.1.7"])
|
121
122
|
s.add_development_dependency(%q<bundler>, ["~> 1.0.10"])
|
122
123
|
s.add_development_dependency(%q<jeweler>, ["~> 1.5.1"])
|
123
124
|
s.add_development_dependency(%q<rspec-rails>, ["~> 2.5.0"])
|
@@ -127,7 +128,7 @@ Gem::Specification.new do |s|
|
|
127
128
|
s.add_dependency(%q<mysql2>, [">= 0"])
|
128
129
|
s.add_dependency(%q<jquery-rails>, [">= 0.2.7"])
|
129
130
|
s.add_dependency(%q<inherited_resources>, [">= 0"])
|
130
|
-
s.add_dependency(%q<dragoon_system>, ["= 0.1.
|
131
|
+
s.add_dependency(%q<dragoon_system>, ["= 0.1.7"])
|
131
132
|
s.add_dependency(%q<bundler>, ["~> 1.0.10"])
|
132
133
|
s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
|
133
134
|
s.add_dependency(%q<rspec-rails>, ["~> 2.5.0"])
|
@@ -138,7 +139,7 @@ Gem::Specification.new do |s|
|
|
138
139
|
s.add_dependency(%q<mysql2>, [">= 0"])
|
139
140
|
s.add_dependency(%q<jquery-rails>, [">= 0.2.7"])
|
140
141
|
s.add_dependency(%q<inherited_resources>, [">= 0"])
|
141
|
-
s.add_dependency(%q<dragoon_system>, ["= 0.1.
|
142
|
+
s.add_dependency(%q<dragoon_system>, ["= 0.1.7"])
|
142
143
|
s.add_dependency(%q<bundler>, ["~> 1.0.10"])
|
143
144
|
s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
|
144
145
|
s.add_dependency(%q<rspec-rails>, ["~> 2.5.0"])
|
@@ -0,0 +1,10 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe ApplicationHelper do
|
4
|
+
it '01' do
|
5
|
+
helper.for_select(:name, ah(:yes, :my_lord)).should ==
|
6
|
+
"<select id=\"name\" name=\"name\"><option value=\"my_lord\">yes</option>
|
7
|
+
<option value=\"\" selected=\"selected\"></option></select>"
|
8
|
+
end
|
9
|
+
|
10
|
+
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: induction_cannon_01
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 5
|
10
|
+
version: 0.0.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- zhanyinan
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-03-
|
18
|
+
date: 2011-03-07 00:00:00 +08:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -85,12 +85,12 @@ dependencies:
|
|
85
85
|
requirements:
|
86
86
|
- - "="
|
87
87
|
- !ruby/object:Gem::Version
|
88
|
-
hash:
|
88
|
+
hash: 21
|
89
89
|
segments:
|
90
90
|
- 0
|
91
91
|
- 1
|
92
|
-
-
|
93
|
-
version: 0.1.
|
92
|
+
- 7
|
93
|
+
version: 0.1.7
|
94
94
|
prerelease: false
|
95
95
|
type: :runtime
|
96
96
|
requirement: *id005
|
@@ -226,7 +226,6 @@ files:
|
|
226
226
|
- public/favicon.ico
|
227
227
|
- public/images/rails.png
|
228
228
|
- public/index.html
|
229
|
-
- public/javascripts/application.js
|
230
229
|
- public/javascripts/jquery.js
|
231
230
|
- public/javascripts/jquery.min.js
|
232
231
|
- public/javascripts/rails.js
|
@@ -236,6 +235,7 @@ files:
|
|
236
235
|
- script/rails
|
237
236
|
- spec/controllers/users_controller_spec.rb
|
238
237
|
- spec/factories/user.rb
|
238
|
+
- spec/helpers/application_helper_spec.rb
|
239
239
|
- spec/models/base/search_spec.rb
|
240
240
|
- spec/models/base/transaction_spec.rb
|
241
241
|
- spec/models/extra_spec.rb
|
@@ -279,6 +279,7 @@ summary: personal suit, base on dragoon_system
|
|
279
279
|
test_files:
|
280
280
|
- spec/controllers/users_controller_spec.rb
|
281
281
|
- spec/factories/user.rb
|
282
|
+
- spec/helpers/application_helper_spec.rb
|
282
283
|
- spec/models/base/search_spec.rb
|
283
284
|
- spec/models/base/transaction_spec.rb
|
284
285
|
- spec/models/extra_spec.rb
|