sunil_custom_field 0.0.2 → 0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b8143cb3ef31f3821ed61cfa10013283a4b5d59b
4
- data.tar.gz: 1b8049c36993d90bc9debcbe52e1b796c73a59ba
3
+ metadata.gz: 9a898306010aa6531c5de5345122cb7052ec2c86
4
+ data.tar.gz: 55e291deb2965135f8c982b89fed0c9172688ced
5
5
  SHA512:
6
- metadata.gz: c64bc7e494937e461d30016f7974135afb9b231e6d6182cb4a70c9864b49d2560efbb36e27e007c646733599b5db02cc7e62a23b03dfebfd9baecf980b548aef
7
- data.tar.gz: 26dc4dbc1ff015ea7c411a933c9121ff7b1ed680021d01b9baf21ca641b6a7fd58a123a2483900256234abd367992c67bc9a7c455a6a95084a611281ace4b983
6
+ metadata.gz: bcca4452e3c761d707e39fb30d9fcca67c20bff91969ab568c24cdd3748b5b16ead4f1085034b591bdfe4b40a65169a6fc8604cfc79fc2e188e4116f46219637
7
+ data.tar.gz: 83f181f19c8b425bdcbac09800d32426f285f8c534bbf9c1d76ab3212c067e2c6630983b4ee3f2243a330666953ab22dd54fb26bed2763fdf3cf133c828b24a2
data/README.md CHANGED
@@ -20,9 +20,8 @@ Or install it yourself as:
20
20
 
21
21
  ## Usage
22
22
 
23
- require "sunil_custom_field"
24
-
25
- field=SunilCustomField.new("User","feb","string")
23
+ require "sunil_custom_field"
24
+ SunilCustomField.new("User","feb","string")
26
25
 
27
26
  ## Contributing
28
27
 
data/README.md~ ADDED
@@ -0,0 +1,32 @@
1
+ # SunilCustomField
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'sunil_custom_field'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install sunil_custom_field
20
+
21
+ ## Usage
22
+
23
+ require "sunil_custom_field"
24
+ SunilCustomField.new("User","feb","string")
25
+
26
+ ## Contributing
27
+
28
+ 1. Fork it ( https://github.com/[my-github-username]/sunil_custom_field/fork )
29
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
30
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
31
+ 4. Push to the branch (`git push origin my-new-feature`)
32
+ 5. Create a new Pull Request
@@ -1,4 +1,5 @@
1
1
  require 'active_support/core_ext/string'
2
+ require 'sunil_custom_field/version'
2
3
  require 'rake'
3
4
  class SunilCustomField
4
5
  def initialize(model,field_name,field_type)
@@ -1,3 +1,3 @@
1
1
  module SunilCustomField
2
- VERSION = "0.0.2"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sunil_custom_field
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - sunil kumar
@@ -50,6 +50,7 @@ files:
50
50
  - Gemfile
51
51
  - LICENSE.txt
52
52
  - README.md
53
+ - README.md~
53
54
  - Rakefile
54
55
  - lib/sunil_custom_field.rb
55
56
  - lib/sunil_custom_field/version.rb