inline_forms 1.1.4 → 1.1.5
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/bin/inline_forms +10 -1
- data/lib/inline_forms/version.rb +1 -1
- metadata +6 -8
data/bin/inline_forms
CHANGED
|
@@ -94,7 +94,16 @@ group :development do
|
|
|
94
94
|
end
|
|
95
95
|
|
|
96
96
|
"
|
|
97
|
-
|
|
97
|
+
gemfile_production_group ="
|
|
98
|
+
# these are just for production
|
|
99
|
+
group :production do
|
|
100
|
+
gem 'therubyracer'
|
|
101
|
+
gem 'uglifier'
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
"
|
|
105
|
+
|
|
106
|
+
File.open( 'Gemfile', 'w') {|f| f.write(gemfile_sources + gemfile_gems + gemfile_development_group + gemfile_production_group ) }
|
|
98
107
|
|
|
99
108
|
system('bundle install')
|
|
100
109
|
|
data/lib/inline_forms/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: inline_forms
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 25
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 1.1.
|
|
9
|
+
- 5
|
|
10
|
+
version: 1.1.5
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Ace Suares
|
|
@@ -15,8 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-10-
|
|
19
|
-
default_executable:
|
|
18
|
+
date: 2011-10-19 00:00:00 Z
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: rspec-rails
|
|
@@ -198,7 +197,6 @@ files:
|
|
|
198
197
|
- lib/otherstuff/roles_users.sql
|
|
199
198
|
- test/helper.rb
|
|
200
199
|
- test/test_inline_forms.rb
|
|
201
|
-
has_rdoc: true
|
|
202
200
|
homepage: http://github.com/acesuares/inline_forms
|
|
203
201
|
licenses:
|
|
204
202
|
- MIT
|
|
@@ -228,7 +226,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
228
226
|
requirements: []
|
|
229
227
|
|
|
230
228
|
rubyforge_project: inline_forms
|
|
231
|
-
rubygems_version: 1.
|
|
229
|
+
rubygems_version: 1.8.11
|
|
232
230
|
signing_key:
|
|
233
231
|
specification_version: 3
|
|
234
232
|
summary: Inline editing of forms.
|