arspy 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -0
- data/Rakefile +2 -0
- metadata +6 -4
data/.gitignore
CHANGED
data/Rakefile
CHANGED
@@ -8,6 +8,7 @@ spec = Gem::Specification.new do |s|
|
|
8
8
|
s.name = 'arspy'
|
9
9
|
s.version = GemVersions.get_version
|
10
10
|
s.platform = Gem::Platform::RUBY
|
11
|
+
s.required_ruby_version = '>= 1.8.7'
|
11
12
|
s.description = 'Active Record Spy'
|
12
13
|
s.summary = 'Rails console command line tool for browsing and inspecting the structure, associations and data of an ActiveRecord data model.'
|
13
14
|
|
@@ -90,6 +91,7 @@ task :gemspec do
|
|
90
91
|
f.write spec.to_ruby
|
91
92
|
end
|
92
93
|
GemVersions.increment_version
|
94
|
+
GemVersions.commit_and_push
|
93
95
|
end
|
94
96
|
|
95
97
|
Rake::GemPackageTask.new(spec) do |p|
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 2
|
9
|
+
version: 0.0.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Jeff Patmon
|
@@ -58,8 +58,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
58
58
|
- - ">="
|
59
59
|
- !ruby/object:Gem::Version
|
60
60
|
segments:
|
61
|
-
-
|
62
|
-
|
61
|
+
- 1
|
62
|
+
- 8
|
63
|
+
- 7
|
64
|
+
version: 1.8.7
|
63
65
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
64
66
|
requirements:
|
65
67
|
- - ">="
|