Skip to content

Commit 54558f0

Browse files
committed
moves all dependencies to the gemspec
1 parent 22203f4 commit 54558f0

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

Gemfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
source :rubygems
22

3-
gem 'rails', '3.2.0.rc1'
4-
gem 'mocha'
3+
gemspec

Gemfile.lock

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
PATH
2+
remote: .
3+
specs:
4+
prototype-rails (3.2.0.rc1)
5+
rails (~> 3.2.0.rc)
6+
17
GEM
28
remote: http://rubygems.org/
39
specs:
@@ -88,4 +94,4 @@ PLATFORMS
8894

8995
DEPENDENCIES
9096
mocha
91-
rails (= 3.2.0.rc1)
97+
prototype-rails!

prototype-rails.gemspec

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
Gem::Specification.new do |spec|
22
spec.name = 'prototype-rails'
3-
spec.version = '3.2.0'
3+
spec.version = '3.2.0.rc1'
44
spec.summary = 'Prototype, Scriptaculous, and RJS for Ruby on Rails'
55
spec.homepage = 'http://github.com/rails/prototype-rails'
66
spec.author = 'Xavier Noria'
77
spec.email = '[email protected]'
88

99
spec.files = %w(README Rakefile Gemfile) + Dir['lib/**/*', 'vendor/**/*', 'test/**/*']
1010

11-
spec.add_dependency('rails', '~> 3.2')
11+
spec.add_dependency('rails', '~> 3.2.0.rc')
12+
spec.add_development_dependency('mocha')
1213
end

0 commit comments

Comments
 (0)